Posts

Online Tender Management System Using Python

Image
Online Tender Management System Using Python Aim of Tender Management System: The activity will happen through the software which will be a web-based system. The user can get the available tender by accessing through the system.  At the time of registration, they will provide with a user Id and password after that customer can know the details of the tenders.  This system also provide the security like it will not allow any other members to access the same details. Software Requirement for Tender Management System: Operating System Windows 8 or above Tools used Microsoft visual code or Sublime or IDLE or Pycharm Programming languages Python Front end design HTML,CSS,JS Back-end design Python Contact me if you have any questions or need a project Email aryadrj@gmail.com FB messenger aryadrj Whatsapp +917892657546 Phone Number +917892657546 Or you can fill the form (To get instant help) Click here to fill the form Want to know about me? Click here to open

Digital Marketing Assignment Question Bank 2021

Image
  Digital Marketing Assignment Question Bank 2021 What is Digital Marketing?  What are the tools used for Instagram marketing tools? What is 7Ms in Digital Marketing? What is ManyChat tool? Explain Hootsuit. Which are the best tool for Email Marketing? Which website is used to get update from the keywords directly to your email id? Explain the different types digital marketer job description. Is it really important to learn coding for digital marketing? Post one Instagram post on Instagram with relevant hashtags. What is RSS in Digital Marketing? Which is best CMS website and why? What is FFA page? What is micro blogging ? Give one example. What is creative marketing in digital marketing? What is A/B testing in digital marketing? What is LBS in mobile Marketing? Contact me if you want more questions or you need a digital marketer. Email aryadrj@gmail.com FB messenger aryadrj WhatsApp +91 7892657546 Telegram aryadrj Or you can fill the form (To get instant help) Click here to fill the f

Libre Office School by Aryadrj

Image
Libre Office School by Aryadrj  1. What is Libre Office? LibreOffice is a powerful and free office suite, a successor to OpenOffice(.org), used by millions of people around the world. OpenOffice Evolution Performance, compatibility, usability Fun Project LibreOffice is one of the friendliest and fastest-growing projects in the free and open source software world. 1. How to Download Libre Office? Click here to download. 2. How to Freeze Column in Libre Office? Select the column . Click on view. Click on Freeze cell. Then Click on Freeze First Column.  3. How to Freeze Row in Libre Office? Select the row . Click on view. Click on Freeze cell . Then Click on Freeze First Row . 4. Can we use Libre Office in Mac? Yes you can use.

Node Js by Aryadrj

Image
 Node Js by Aryadrj 1. How to check whether Node Js is installed in your system or not ? Start your command prompt and type "node -v". 2. How to run Node Js program? node yourfilename.js 3. First  Program in Node JS? var http = require("http"); http.createServer(function (request, response) {    response.writeHead(200, {'Content-Type': 'text/plain'});    response.end('Welcome to Aryadrj Website.\n'); }).listen(8082); console.log('Our Server running at http://127.0.0.1:8082/'); 3. Note Node.js allows you to run JavaScript on the server and Node.js has a a lots of set of built-in modules. 4. What require() function will do? require() function is used to add module. Example: require('http'); Remember : We can create our own module. 5. How to take input in Node js? const readline = require('readline').createInterface({   input: process.stdin,   output: process.stdout });   readline.question('What is your name? ?',

Anaconda Tutorial by Aryadrj

Image
 Anaconda Tutorial by Aryadrj 1. How to create new virtual environment in Anaconda? conda create --name venv Enter y Create a Python 2 environment named py2, install Python 2.7: conda create --name py2 python=2.7 Create a new environment named py3, install Python 3.5: conda create --name py3 python=3.5 2. How to activate and deactivate virtual environment in anaconda ? To activate anconda conda activate venv To deactivate anaconda conda deactivate 3. How to install panda in Anaconda? conda install pandas and wait for sometimes and enter y. To install a specific pandas version: conda install pandas=0.13.1 4. How to install Flask in Anaconda? conda install -c anaconda flask Flask is a microframework for Python based on Werkzeug and Jinja2. It's intended for getting started very quickly and it was also developed with best intentions in mind. 5. ModuleNotFoundError: No module named 'sklearn.externals.six' Downgrade your scikit-learn version: In jupyter notebook, type !pip insta

Cyber Security Capsule

Image
 Cyber Security Capsule Do you know India ranks 3rd among nations facing most cyber threats: Symantec. 1. What is virus? A Virus is a “program that is loaded onto your computer without your knowledge and runs against your wishes. 2. What is solution to prevent laptop from virus? Install a security suite that protects the computer against threats such as viruses and worms.you can use Avg,Quick heal etc. 3. What is malware? The word "malware" comes from the term "MALicious softWARE." Malware is any software that infects and damages a computer system without the owner's knowledge or permission. MALicious softWARE 4. How to stop malware ? Basic steps: Turn on automatic updates of your phone. Don’t ‘root’ or ‘jailbreak’ your device. Only install software from reputable publishers. Only download mobile apps from official online app stores (iOS App Store, Windows Phone Store or Google Play Store). Install security software and keep it up to date Advance steps: To Stop

File Structure Capsule by Aryadrj

Image
  File Structure Capsule by AryaDrj 1. Can we do file structure project in Python? Yes you can do, even you can use java,php etc 2. Which software is best for C++? Dev c++. (It is very lite) 3. What is file structure? File Structures is the Organization of Data in Secondary Storage devices in such a way that minimize the access time and the storage space. A File structure is a combination of representations for data in files and of operations for accessing the data. A File structure allows applications to read, write and modify data. It might also support finding the data that matches some search criteria or reading through the data in some particular order. 4. What is Fixed length record.? Fixed length record A record which is predetermined to be the same length as the other records in the file. The file is divided into records of equal size. All records within a file have the same size. Programs which access the file must know the record length. There may be internal fragmentation (u