What is the OOPs concept?
Answers were Sorted based on User's Feedback
Answer / nashiinformaticssolutions
The Object-Oriented Programming System, or OOPs for short, is a paradigm that offers ideas like inheritance, classes, and objects.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / glibwaresoftsolutions
The Object-Oriented Programming System, or OOPs for short, is a paradigm that offers ideas like inheritance, classes, and objects.
| Is This Answer Correct ? | 0 Yes | 0 No |
The Object-Oriented Programming System, or OOPs for short, is a paradigm that offers ideas like inheritance, classes, and objects.
| Is This Answer Correct ? | 0 Yes | 0 No |
What are c preprocessors?
what would be the output of the following program main() { int a[] = {1,2,3,4,5}; int *ptr = {a,a+1,a+2,a+3,a+4}; printf("%d %d %d %d",a,*ptr,**ptr,ptr); } }
What is meant by global static? why we have to use static variable instead of Global variable
How many levels of pointers can you have?
There are N egg baskets and the number of eggs in each basket is a known quantity. Two players take turns to remove these eggs from the baskets. On each turn, a player must remove at least one egg, and may remove any number of eggs provided they all belong to the same basket. The player picking the last egg(s) wins the game. If you are allowed to decide who is going to start first, what mathematical function would you use to decide so that you end up on the winning side?
write aprogram for There is a mobile keypad with numbers 0-9 and alphabets on it. take input of 7 keys and then form a word from the alphabets present on those keys.
1 Answers iGate, Shashi, Source Bits, Subex,
exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above
How can I implement sets or arrays of bits?
to write a program, that finds the minimum total number of shelves, including the initial one, required for this loading process. The packets are named A, B, C, D, E …….. Any numbers of packets with these names could be kept in the shelf, as in this example: [ZZLLAAJKRDFDDUUGGYFYYKK]. All packets are to be loaded on cars. The cars are lined in order, so that the packets could be loaded on them. The cars are also named [A, B, C, D, E,………….].
write a program in C to swap two variables
find the sum of two matrices and WAP for it.
What is c definition?