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.
2169Assume 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
2189write 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 3816
What is binary object model?
Explain the difference between abstract class and interface in c++?
What is &x in c++?
What is null c++?
Write a program to find the reverse Fibonacci series starting from N.
What is ios :: in in c++?
What is the difference between public, private, and protected inheritance?
What is the difference between method overloading and method overriding in c++?
Mention the storage classes in c++.
What is overloading unary operator?
What is searching?
What is virtual table?
What do you mean by translation unit?
What is c++ namespace?
Write a program which employs Recursion