C programming language was invented to write an operating system called ______.
LINUX
UNIX
EXO
Who is considered the father of the C Programming Language?
Charles Babbage
Gregory John
Dennis Ritchie
The C language was formalized in the year ______ by the American National Standard Institute.
1988
1900
1984
We cannot use the keyword ‘break’ simply within _________.
while
for
if-else
The global variables are _______ in function.
External
Internal
Both External and Internal
The #include
Inclusion
File inclusion
Preprocessor
The #define can be externally available.
True
False
The size of a union can be determined with the help of the size of __________.
The sum of all the members’ sizes
The biggest member of the union
The last member of the union
________ tells a compiler that the data would be defined somewhere and it would be connected to the linker.
Extern
Yvals
Errno
The primary purpose of the preprocessor directive #error causes a preprocessor to _________.
Ignore any error
Report some fatal errors
Repeat the code
__________ is a condition in which the memory is dynamically reserved but isn’t accessible to any program.
Pointer Leak
Frozen Memory
Memory Leak
Are any of these NOT relational or logical operators?
=
||
==
Which keyword is used to prevent any changes in the variable within a C program?
immutable
mutable
const
Can Functions return enumeration constants in C?
Yes
No
_________ is the preprocessor facility that allows producing a different executable.
Functional points
Conditional compilation
System analyst
A String in C is represented internally as ________.
An array of characters
The object of some class
Same as other primitive data types
The amount of memory to be allocated needs to be known beforehand.
True
False
The size of the int data type is _____ bytes in C.
4
8
2
conio.h is not a standard header file in the C programming language.
True
False
Guess the correct file opening modes in C?
r
rb
w
All of these