What is your strongest programming language (Java, ASP, C,
C++, VB, HTML,C#, etc.)?
Answer Posted / sivasankar
java is the strongest programming language
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
What does obj stand for?
What are pointers used for c++?
Do you know the problem with overriding functions?
Differentiate between an array and a list?
What is namespace & why it is used in c++?
In a function declaration, what does extern mean?
True or false, if you keep incrementing a variable, it will become negative a) True b) False c) It depends
Write a function to find the nth item from the end of a linked list in a single pass.
Can class objects be passed as function arguments?
What is abstract class in c++?
Explain all the C++ concepts using examples.
What is increment operator in c++?
Assume an array of structure is in order by studentID field of the record, where student IDs go from 101 to 500. Write the most efficient pseudocode algorithm you can to find the record with a specific studentID if every single student ID from 101 to 500 is used and the array has 400 elements. Write the most efficient pseudocode algorithm you can to find a record with a studentID near the end of the IDs, say in the range from 450 to 500, if not every single student ID in the range of 101 to 500 is used and the array size is only 300
How the endl and setw manipulator works?
What doescout<<(0==0) print out a) 0 b) 1 c) Compiler error: Lvalue required