C Programming Question Bank - 3

Question: 11

_____ is a variable name used to identify a function.

(A) Name

(B) Structure name

(C) Function name

(D) Variable name

Ans: C

Function name

Question: 12

Which of the following statements is not true about C language?

(A) Every instruction is terminated by semicolon

(B) It is case insensitive

(C) Comments can be placed anywhere in the program code

(D) It has features of both high level and low level languages

Ans: B

It is case insensitive

Question: 13

Which of the following is not an arithmetic operator?

(A) +

(B) *

(C) %

(D) &

Ans: D

&

Question: 14

Which of the following character is used to terminate an instruction in a C program?

(A) , (comma)

(B) : (colon)

(C) . (period)

(D) ; (semicolon)

Ans: D

; (semicolon)

Question: 15

In _____ we have to instruct the computer in each and every step.

(A) Code

(B) Pseudo code

(C) Algorithm

(D) Flow chart

Ans: A

Code

Related Questions