• Post author:
  • Post category:Computer

521. C compiler traps
A. logical errors
B. syntax errors
C. Both A and B
D. none of the above

522. A translator which reads an entire pro-gram written in high level and converts it into machine language code is?
A. Assembler
B. Translator
C. Compiler
D. System software

523. Which of the following is not one of the processes that a high level language program must go through before it is ready to be executed
A. Translation
B. Controlling
C. Loading
D. Linking

524. Which of the following is related to machine language?
A. Difficult
B. First generation to learn language
C. Machine
D. All of the above

525. C is a
A. Completely high level language
B. Completely low level language
C. High level language with low level features
D. none of the above

526. asalam How many keywords are there in c ?
A. 31
B. 32
C. 64
D. 63

527. Which of the following is true for variable names in C?
A. Variable names cannot start with a digit
B. Variable can be of any length
C. They can contain alphanumeric characters as well as special characters
D. Reserved Word can be used as variable name

528. Which of the following cannot be a variable name in C?
A. TRUE
B. friend
C. export
D. volatile

529. What is size of int in C ?
A. 2 bytes
B. 4 bytes
C. 8 bytes
D. Depends on the system/compiler

530. Range of double is -1.7e-38 to 1.7e+38 (in 16 bit platform – Turbo C under DOS)
A. TRUE
B. FALSE
C. May Be
D. Can’t Say