Answer Posted / glibwaresoftsolutions
A function that calls itself in response to a terminating condition is said to be recursive.
Because it employs LIFO, the stack data structure is used.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What function initalizes variables in a class: a) Destructor b) Constitutor c) Constructor
What is general form of pure virtual function? Explain?
Are iterators pointers?
Is oops and c++ same?
Is c++ map a hash table?
What is pure virtual function?
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
What are the advantages of pointers?
What methods can be overridden in java?
What are built-in functions? What is the syntax for the definition?
What is a block in c++?
What is name hiding in c++?
What is unary operator? List out the different operators involved in the unary operator.
What is meant by entry controlled loop?
What are the extraction and insertion operators in c++? Explain with examples.