What will be output if you will compile and execute the following c code?void main(){char c=125;c=c+10;printf("%d",c); } | ||||||||
|
||||||||
Showing posts with label C Programming. Show all posts
Showing posts with label C Programming. Show all posts
Monday, July 13, 2015
What will be output if you will compile and execute the following c code?
Friday, May 1, 2015
State true or false: A linker links multiple object files into single exceutable file.
State true or false: A linker links multiple object files into single exceutable file. | ||||||||
|
||||||||
Which of the following must be enclosed within parenthesie
Which of the following must be enclosed within parenthesie | ||||||||
|
||||||||
If a base class member access is public, and an inherited class accesses specifier is private, which of the following statement is true ?
If a base class member access is public, and an inherited class accesses specifier is private, which of the following statement is true ? | ||||||||
|
||||||||
Which of the following is related to access specifier?
Which of the following is related to access specifier? | ||||||||
|
||||||||
Tuesday, April 28, 2015
The situation when in a linked list START=NULL is
The situation when in a linked list START=NULL is | ||||||||
|
||||||||
What is the output for above program ?
Queue *Q = createQueue(5); | ||||||||
|
||||||||
Well formed parenthesis can be checked using following data structure ?
Well formed parenthesis can be checked using following data structure ? | ||||||||
|
||||||||
Sunday, April 26, 2015
Which of the following statements are true with respect to encapsulation?
Which of the following statements are true with respect to encapsulation? | ||||||||
|
||||||||
Which of the following statements is true as far as method names are concerned?
Which of the following statements is true as far as method names are concerned? | ||||||||
|
||||||||
The operation defined by Abstract data type are the only operations permitted on its ____________
The operation defined by Abstract data type are the only operations permitted on its ____________ | ||||||||
|
||||||||
Which of the following factors influences an object's change of behaviour?
Which of the following factors influences an object's change of behaviour? | ||||||||
|
||||||||
Method names are case insensitive.State true or false.
Method names are case insensitive.State true or false. | ||||||||
|
||||||||
A method can return a value of ________ type.
A method can return a value of ________ type. | ||||||||
|
||||||||
What is meant by the term Method definition?
What is meant by the term Method definition? | ||||||||
|
||||||||
We cannot modify the code in base class as it will affect the derived classes as well.State true or false.
We cannot modify the code in base class as it will affect the derived classes as well.State true or false. | ||||||||
|
||||||||
The conversion from basic data to class type can be done by ______________________.
The conversion from basic data to class type can be done by ______________________. | ||||||||
|
||||||||
We can extend subclass in an abstract class.State true or false.
We can extend subclass in an abstract class.State true or false. | ||||||||
|
||||||||
Using inheritance concepts,we can improve the implementation time taken.State true or false.
Using inheritance concepts,we can improve the implementation time taken.State true or false. | ||||||||
|
||||||||
Saturday, April 25, 2015
Which of the following contains set of instructions to complete the Intended operation?
Which of the following contains set of instructions to complete the Intended operation? | ||||||||
|
||||||||