a) Yes b) No, it is a typedef of unsigned char c) No, it is ...
View QuestionPick the odd one out.
a) integer, character, boolean, floating b) enumeration, classes c) integer, enum, void d) arrays, pointer, classes Answer: c Explanation: ...
View QuestionWhen a language has the capability to produce new data type mean, it can be called as
a) overloaded b) extensible c) encapsulated d) reprehensible Answer: b Explanation: Extensible is used ...
View QuestionThe value 132.54 can be represented using which data type?
a) double b) void c) int d) bool Answer: a Explanation: The given value is ...
View Question
Which of the following statements are true?
int f(float)
Which of the following statements are true? int f(float) a) f is a function taking an argument ...
View QuestionIdentify the user-defined types from the following?
a) enumeration b) classes c) both enumeration and classes d) int Answer: c Explanation: They ...
View QuestionWhich type is best suited to represent the logical values?
a) integer b) boolean c) character d) float Answer: b Explanation: Logical values can be either true ...
View QuestionWhat does ‘\a’ escape code represent?
a) alert b) backslash c) tab d) form feed Answer: a Explanation: Because \a is used to produce a ...
View QuestionWhich data type is used to represent the absence of parameters?
a) int b) short c) void d) float Answer: c Explanation: Because void specifies an empty set of values/parameters.
View QuestionPick the odd one out.
a) array type b) character type c) boolean type d) integer type Answer: a Explanation: ...
View Question