what is object oriental programing?
Answer / nirmal kumar tailor
Object means instance of the class.
object oriented means you can access all the class member
with the help of class object so this is called object
oriented language.
| Is This Answer Correct ? | 4 Yes | 1 No |
main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); }
An integer that indentifies the position of a data item in a sequence of data items a) value b) number c) index d) all of the above
What is build process in c?
Why do we need arrays in c?
If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?
1.What is a Data Structure? Explain its need? 2.What is a Directed Graph? Write an algorithm to find whether a Directed Graph is connected or not? 3.Explain the process of converting a Tree to a Binary Tree.
Efficient data structure for store/search list of 1000 records a)array b)double linked list c)circular queue d)hash table
What is operator precedence?
which operator having lowest precedence?? a.)+ b.)++ c.)= d.)%
What is union in c?
Diff: between this 2 classes in terms of memory class A { int i; char c; double d; }; class A { double d; int i; char c; }; How it is calculating?
What is the full form of getch?