STL (140)
OOPS (873)
C++ General (2409) Assume studentNames and studentIDs are two parallel arrays of size N that hold student data. Write a pseudocode algorithm that sorts studentIDs array in ascending ID number order such that the two arrays remain parallel.
2202Assume 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
2226write a program that will produce the ff. output. "what fruit will you buy? 1)apple 2)orange 3)mango ENTER CHOICE (1,2 or 3)> HOW MANY WILL YOU BUY?> THAT WILL COST XX.XX
1 3879
Why should you learn c++?
What is main function in c++ with example?
Is vector a class in c++?
Explain terminate() and unexpected() function?
What is abstraction in oop?
Define upcasting.
What are c++ templates used for?
What do you mean by variable?
What does scope resolution operator do?
What do you mean by overhead in c++?
What is class and object in oops?
What is abstraction in oops with example?
Define the operators that can be used with a pointer.
Why do we need pointers?
Out of fgets() and gets() which function is safe to use?