Monday, May 14, 2012

Aikman Series Programming with C, Chapter No.1 Question No.1

CHAPTER No.1 Getting Started with C


Question No.1
Fill in the Blanks
1.  The set of instruction given to the computer to perform a task is called the ___________.
2.  ANSI Stands for ___________.
3.  A Computer Program written in high level language is known as __________.

4.  _________ is a program that places the executable file in memory.

5.  In __________  programming language, the entire logic of the program is implemented in a single module.
6.  _____________ are commands that give instruction to C preprocessor.
7.  _____________  is a name that is replaced by particular constant before program is sent to the compiler.
8.  The ___________ directive given a program access to library file.
9.  C program is divided into units, called ____________.
10. Every statement in C program terminates with a ___________.
11. A Language translator for assembly language is called ___________.
12. A set of rules for writing program in high level language is known as ____________. 

Solution
1.  Computer Program
2.  American National Standard Institute
3.  Source Program
4.  Loader
5.  Unstructured
6.  Preprocessor Directives
7.  Constant Macro
8.  Include
9.  Functions
10. Semicolon ( ; )
11.  Assembler
12.  Syntax

4 comments: