37. Which Bitwise Operator Is Used For Checking Whether A Particular Bit Is ON Or OFF?
Answer: The bitwise AND operator is used for checking whether a particular bit is ON or OFF.
38. Which Bitwise Operator Is Used For Turning OFF A Particular Bit In A Number?
Answer: Bitwise AND operator (&) and one’s complement operator (~) are suitable for turning OFF a particular bit in a number.
39. What Are The Bitwise Logical Operators?
Answer: Operators that are used for manipulation of data at bit level are known as bitwise operator. Bitwise logical operator are binary operator and require two integer type operand. These work on their operand bit by bit starting from the least significant bit.
There are following three logical bitwise operators:
- Bitwise AND(&)
- Bitwise OR(|)
- Bitwise exclusive OR(^)
40. What Is Equivalent Of Multiplying An Unsigned Int By 2: Left Shift Of Number By 1 Or Right Shift Of Number By1?
Answer: Left shifting of an unsigned integer is equivalent to multiplying an unsigned int by 2.
41. What Is Enumeration?
Answer: Enumeration is data type. In C++, the user can create user defined data types and define values using them. This helps to make the program more readable. Enumeration data types are defined in similar ways as structures.
42. What Is Enumeration Constant?
Answer: When an enumeration data type is defined, a set of identifiers are specified which the data enumeration represents. Such an identifier is called an enumeration constant.
31) What is a far pointer in C?
32) What are the uses of the void data type?
33) What is a pointer in C?
34) What are the advantages of using pointers?
35) What are the differences between malloc() and calloc()?
36) What is the purpose of the free() function?
37) How to use realloc() to dynamically increase size of an already allocated array?
38) What is the purpose of the sizeof() operator?
39) What is a wild pointer in C?
40) What is the purpose of the do-while loop in C?
...Return To C Questions Index
...Return To C Programming Index
... Return To HR Interview Index
Comments
Post a Comment
Please share your opinions and suggestions or your experience in the comments section. This way we can all help each other...
Experienced guys can share their resumes at admin@interview-made-easy.com