1 |
Which is a built-in function in C language that takes input from user into the variables ? |
- A. printf()
- B. scanf()
- C. input
- D. print
|
2 |
How many characters can be stored in a char type variable ? |
|
3 |
The ________ can be initialized at the time of declaration or after declaration: |
- A. character
- B. data type
- C. variable
- D. constant
|
4 |
Which are variables of different data types that are used to receive the values passed t the function as input. |
- A. Value
- B. Input
- C. Price
- D. Parameter
|
5 |
Functions could be bult-in of........... |
- A. Admin define
- B. Server define
- C. User define
- D. Both a and b
|
6 |
GUI stands for: |
- A. graphical user interface
- B. user interface
- C. global user interface
- D. grammar interface
|
7 |
Which name must begin with a letter or an underscore, it cannot begin with a digit ? |
- A. character
- B. variable
- C. constant
- D. string
|
8 |
Let the following part of code, what will be the value of variable an after execution:<div>int a = 4;</div><div>float b= 2.2;</div><div>a = a * b;</div> |
- A. 8.8
- B. 8
- C. 8.2
- D. 8.0
|
9 |
Which help us to understand our own code even after years of writing it? |
- A. common words
- B. comments
- C. end sensitive
- D. section sensitive
|
10 |
Any single small case letter, upper case letter, digit, punctuation mark, special symbol enclosed within ' ' is considered: |
- A. integerconstants
- B. stringconstants
- C. characterconstants
- D. singleconstants
|