Computer System Architecture

481. How many types of loop control structures in C language:

  1. 4
  2. 5
  3. 2
  4. 3

Correct answer: (D)
3

482. Types of loop control statements are:

  1. For loop
  2. While loop
  3. Do-while loop
  4. All of these

Correct answer: (D)
All of these

483. <Initial value> is ____________ which initializes the value of variable:

  1. Assignment expression
  2. Condition value
  3. Increment/decrement
  4. None of these

Correct answer: (A)
Assignment expression

484. The format "%8d" is used to print ____________ values in a line:

  1. 11
  2. 10
  3. 9
  4. 12

Correct answer: (B)
10

485. <Condition> is a ____________ expression which will have value true or false:

  1. Relational
  2. Logical
  3. Both a & b
  4. None of these

Correct answer: (C)
Both a & b

486. <Increment> is the ____________ value of variable which will be added every time:

  1. Increment
  2. Decrement
  3. Expanding
  4. None of these

Correct answer: (A)
Increment

487. ____________ is the statement block of for loop lies inside block of another for loop:

  1. Nested for loop
  2. Nested while loop
  3. Nested do-while loop
  4. None of these

Correct answer: (A)
Nested for loop

488. SPARC stands for:

  1. Scalable programmer architecture
  2. Scalable processor architecture
  3. Scalable point architecture
  4. None of these

Correct answer: (B)
Scalable processor architecture

489. Full form of MIPS assembler is:

  1. Microprocessor without interlocked pipeline stage
  2. Microprocessor with interlocked pipeline stage
  3. Both a & b
  4. None of these

Correct answer: (A)
Microprocessor without interlocked pipeline stage

490. ____________ statement block is executed atleast once for any value of the condition:

  1. For statement
  2. Do-while statement
  3. While statement
  4. None of these

Correct answer: (B)
Do-while statement

Page 49 of 75