Computer Class 10
Computer Class 10
ACADEMY
COMPUTER
Class TEN
CHAPTER 1
INTRODUCTION TO PROGRAMMING
Important Short Questions
Q1: What is integrated development environment (IDE)?
Ans. A software that provides a programming environment to facilitate programmers in writing and
executing computer program is known as an integrated development environment (IDE). Some of the
many available IDEs for C programming language are:
1. Visual Studio 2. Xcode 3. Code::Blocks
Q2: Describe the purpose of a compiler.
Ans. A compiler is a software that is responsible for conversion of a computer program written in
some high level programming language to machine language code. The generated machine code can
be later executed. A compiler first reads the whole program before executing it.
Q3: What is meant by computer programming?
Ans. The process of feeding or storing instructions in the computer is known as computer
programming. Computer programming is a problem solving activity.
Q4: Define computer program.
Ans. Computer need to be fed a series of instructions by humans which tell them how to perform a
particular task. These series of instructions are known as a computer program or software.
Q5: What are reserved words?
Ans. Every programming language has list of words that are predefined. Each word has its specific
meaning already known to the compiler. These words are known as reserved words or keywords. e.g
int, for etc.
Q6: Write the purpose of comments in "C" language.
Ans. Comments can be thought of as documentation of the program. Their purpose is two fold:
o They facilitate other programmers to understand our code.
o They help us to understand our own code even after years of writing it.