Ask questions which are clear, concise and easy to understand.
Ask QuestionPosted by Macsimus Gamer 5 years, 3 months ago
- 2 answers
Khushi Tanwar 5 years, 3 months ago
Posted by Vijay Kumar 5 years, 3 months ago
- 1 answers
Aditya Vishwakarma 5 years, 3 months ago
Posted by Ashika Ashika 5 years, 3 months ago
- 1 answers
Posted by Deeksha Baranwal 5 years, 3 months ago
- 0 answers
Posted by Jesna Sakeer 5 years, 3 months ago
- 0 answers
Posted by Rahul Kumar 5 years, 4 months ago
- 1 answers
Sia ? 5 years, 4 months ago
Python is an interpreted, high-level, general-purpose programming language. Created by Guido van Rossum and first released in 1991, Python's design philosophy emphasizes code readability with its notable use of significant whitespace.
Posted by Jyoti Prasad 5 years, 4 months ago
- 1 answers
Sia ? 5 years, 4 months ago
The CPU processes instructions it receives in the process of decoding data. In processing this data, the CPU performs four basic steps:
- Fetch
- Decode
- Execute
- Store
Posted by Nidhi Harsharaj 5 years, 4 months ago
- 2 answers
Posted by Nidhi Harsharaj 5 years, 4 months ago
- 2 answers
Aditya Vishwakarma 5 years, 3 months ago
Posted by Ravi Kumar Ram 5 years, 4 months ago
- 0 answers
Posted by Harpreet Singh 5 years, 4 months ago
- 0 answers
Posted by Geeta Kumari 5 years, 4 months ago
- 0 answers
Posted by Anjali Tiwari 5 years, 4 months ago
- 3 answers
Posted by Aditya Kishore 5 years, 4 months ago
- 0 answers
Posted by Yasir Zafar 5 years, 4 months ago
- 2 answers
Posted by Palak Singh 5 years, 4 months ago
- 1 answers
Sia ? 5 years, 4 months ago
- num = int(input("Enter a number: "))
- if num > 1:
- for i in range(2,num):
- if (num % i) == 0:
- print(num,"is not a prime number")
- print(i,"times",num//i,"is",num)
- break
- else:
- print(num,"is a prime number")
- else:
- print(num,"is not a prime number")
Posted by Pal Patel 5 years, 4 months ago
- 0 answers
Posted by Pal Patel 5 years, 4 months ago
- 0 answers
Posted by Yuvraj Singh 5 years, 4 months ago
- 1 answers
Sia ? 5 years, 4 months ago
- Input Unit.
- Output Unit.
- Storage Unit.
- Central Processing Unit (CPU):
- Arithmetic and Logic Unit (ALU)
- Control Unit.
Posted by Vivek Yadav 5 years, 4 months ago
- 1 answers
Posted by Ashis Kar 5 years, 4 months ago
- 1 answers
Posted by Aakash Kumar 5 years, 4 months ago
- 0 answers
Posted by Aakash Kumar 5 years, 4 months ago
- 0 answers
Posted by Mohamed Sikkandhar 5 years, 4 months ago
- 0 answers
Posted by Khushi Sharma 5 years, 4 months ago
- 0 answers
Posted by Sabari Nathan 5 years, 4 months ago
- 0 answers
Posted by Jatin Kumar 5 years, 4 months ago
- 1 answers
Himanshu Verma 5 years, 4 months ago
Posted by Shobhit Bhadwaj 5 years, 4 months ago
- 1 answers
Sia ? 5 years, 4 months ago
A computer is a combination of hardware and software resources which integrate together and provide various functionalities to the user. Hardware are the physical components of a computer like the processor, memory devices, monitor, keyboard etc. while software is the set of programs or instructions that are required by the hardware resources to function properly. There are a few basic components that aids the working-cycle of a computer i.e. the Input- Process- Output Cycle and these are called as the functional components of a computer. It needs certain input, processes that input and produces the desired output. The input unit takes the input, the central processing unit does the processing of data and the output unit produces the output. The memory unit holds the data and instructions during the processing.
Posted by Aniket Verma 5 years, 4 months ago
- 1 answers
Sia ? 5 years, 4 months ago
IDLE (short for integrated development environment or integrated development and learning environment) is an integrated development environment for Python, which has been bundled with the default implementation of the language since 1.5.2b1.
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
Sia ? 5 years, 3 months ago
Indentation is required for indicating what block of code a statement belongs to.
1Thank You