Search your topic

Generic selectors
Exact matches only
Search in title
Search in content
Post Type Selectors

Subject Names

Featured

Latest Feed

Python Program to find the square root of a number by Newton’s Method

To write a Python Program to find the square root of a number by Newton’s Method.  num=int(input(“Enter a number:”))newtonSquareroot= 0.5*((0.5*num)+num/(0.5*num)) print (newtonSquareroot)  OUTPUT: Enter a number:2 ...

Read more

Python program to find GCD of two numbers

To write a Python program to find GCD of two numbers.  # Python Program to find GCD of Two Numbersa = float(input(” Please Enter the ...

Read more

How to run a Python Program

Step 01: Open a textpad or notedpad. Step 02:Type your program in text editor. Step 03:Save the text file with “.py” extension as “professor.py”. py extetion ...

Read more

Download Python

PYTHON DOWNLOAD AND INSTALLATION Go to https://www.python.org/ See the image Now click on Download Python. Version may change with time. On donwlaod Python setup will look ...

Read more

DAVV MBA: Business Communication

UNIT I Define communication and its objectives in a business set up Definition: Business communication is the process of sharing information between people within and ...

Read more

Find all employees who live in the city where the company for which they work is located

Q. Consider the following employee database- Employee (Emp_name, Street, City) Works (Emp_name, Company_name, Salary) Company (Company_name, City) Manages (Emp_name, manager_name) Write expressions in SQL for ...

Read more

Specification & Recognition of Tokens

First know about Lexical Analysis: The lexical analyzer breaks syntaxes into a series of tokens, by removing any whitespace or comments in the source code. If the ...

Read more

COA#10 | Bus Structure in Hindi Video | Address bus | Data bus | Control bus | System Bus

COA#09 | Describe the Von Neumann Model and explain the functioning of its components | COA previous years…

COA#08 | Software in Hindi Video | System | Application | Programming | Computer Organization Architecture