Ask questions which are clear, concise and easy to understand.
Ask QuestionPosted by Shruti Kumari 5 years, 1 month ago
- 1 answers
Posted by Anil Kumar 5 years, 1 month ago
- 1 answers
Posted by Neha Kumari Paswan 5 years, 1 month ago
- 1 answers
Yogita Ingle 5 years, 1 month ago
The software that is necessary for the computer to function is called System Software. This controls the internal computer operations.
This software can be classified Into two types :
1. Operating System (OS)
⇒ It is mainly a program which acts as an interface between a user and the hardware.(Computer resources)
2. Language Processor
⇒ This is a special type of a computer software that can translate the source code ( high-level programming language) into a machine code (binary).
Posted by Kajal Singh 5 years, 1 month ago
- 1 answers
Yogita Ingle 5 years, 1 month ago
A computer is an electronic device that can be programmed to accept data (input), process it and generate result (output). A computer along with additional hardware and software together is called a computer system.
Computer = Commonly Operated Machine Particularly Used in Technical and Educational Research
CPU = Central Processing Unit
RAM = Random Access Memory
ROM = Read Only Memory
PROM = Programmable Read Only Memory
EPROM = Erasable PROM
EEPROM = Electrically EPROM
HDD = Hard Disk Drive
FDD = Floppy Disk Drive
Posted by Bhumika Chaudhary 5 years, 1 month ago
- 1 answers
Posted by Kumar Aman 5 years, 1 month ago
- 1 answers
Posted by Diya Vijay 5 years, 1 month ago
- 2 answers
Tec Om 5 years, 1 month ago
a = [2,5,"science"]
this is a list where "a" is an identifier and 2 and 5 are integers and 'science ' is a string
if you print it then
print(a)
then it will give the output
[2, 5, 'science']
Posted by Agam Singh 5 years, 1 month ago
- 0 answers
Posted by Sanjay Kumar.K 5 years, 1 month ago
- 1 answers
Tec Om 5 years, 1 month ago
for example print("hello world"). print is a statement in earlier versions but now this is a function
Posted by Sanjay Kumar.K 5 years, 1 month ago
- 1 answers
Posted by Irfan Shafi 5 years, 1 month ago
- 2 answers
Posted by Tanish Jain 5 years, 1 month ago
- 3 answers
Tec Om 5 years, 1 month ago
if a>500:
b=a/10
c=12.5/100*a
d=a-b+c
print(d)
else:
c=12.5/100*a
print(a+c)
Tec Om 5 years, 1 month ago
Posted by Mridul Bhardwaj 5 years, 1 month ago
- 1 answers
Posted by Neha Kumari Paswan 5 years, 1 month ago
- 3 answers
Posted by Shobhit Sharma 5 years, 1 month ago
- 3 answers
Tec Om 5 years, 1 month ago
a=10
a=20
Gaurav Seth 5 years, 1 month ago
Dynamic Typing feature of Python:
- Dynamic typing is characteristic of many of the scripting languages: Perl, PHP, Python, etc
- Dynamic typing in Python means the interpreter itself infers the type of data that a variable receives, without the need of user.
- Here, the types are automatically determined at run time, so it doesn’t require a declaration of variables at the time of code.
Posted by Ankit Sharma 5 years, 1 month ago
- 1 answers
Posted by Khushi Suman 5 years, 1 month ago
- 3 answers
Tec Om 5 years, 1 month ago
Meghna Thapar 5 years, 1 month ago
Compiler, Computer software that translates (compiles) source code written in a high-level language (e.g., C++) into a set of machine-language instructions that can be understood by a digital computer's CPU. ... Compilers are very large programs, with error-checking and other abilities. In computing, a compiler is a computer program that translates computer code written in one programming language (the source language) into another language (the target language).
Posted by Jagriti Rohitas 5 years, 1 month ago
- 2 answers
Posted by Angomjanbam Anju 5 years, 1 month ago
- 2 answers
Gaurav Seth 5 years, 1 month ago
Similarities between compiled and interpreted languages are given below:
Yogita Ingle 5 years, 1 month ago
- Compiler transforms code written in a high-level programming language into the machine code, at once, before program runs, whereas an Interpreter coverts each high-level program statement, one by one, into the machine code, during program run.
- Compiled code runs faster while interpreted code runs slower.
- Compiler displays all errors after compilation, on the other hand, the Interpreter displays errors of each line one by one.
- Compiler is based on translation linking-loading model, whereas Interpreter is based on Interpretation Method.
- Compiler takes an entire program whereas the Interpreter takes a single line of code.
Posted by Prateek Sharma 5 years, 1 month ago
- 0 answers
Posted by Prateek Sharma 5 years, 1 month ago
- 1 answers
Posted by Jagadeeswari Jagadeeswari 5 years, 1 month ago
- 2 answers
Sampann Singh 5 years, 1 month ago
Tec Om 5 years, 1 month ago
Posted by 4117Deepak Chaudhary 5 years, 2 months ago
- 1 answers
Posted by Manav Mattu 5 years, 2 months ago
- 1 answers
Meghna Thapar 5 years, 2 months ago
Although both computers are sharing the same public IP address and accessing the Internet at the same time, the router knows exactly which computer to send specific packets to because each computer has a unique internal address. In that case 2 or more computers can get same IP. Two computers can safely have the same IP address in certain cases. In most cases, if those two computers are on the same local network, it breaks connectivity for one or both of them. Internet protocols work by sending small, individually addressed messages. Each message can be routed differently.
Posted by Deepanshu Kumar 5 years, 2 months ago
- 0 answers
Posted by Ayush Maan 5 years, 2 months ago
- 0 answers

myCBSEguide
Trusted by 1 Crore+ Students

Test Generator
Create papers online. It's FREE.

CUET Mock Tests
75,000+ questions to practice only on myCBSEguide app
myCBSEguide
Tec Om 5 years, 1 month ago
1Thank You