Answer Posted / arshad iqbal
OOP stands for Object oriented programming, In this objects
are created and can be reused in different other softwares.
| Is This Answer Correct ? | 5 Yes | 2 No |
Post New Answer View All Answers
Explain operator overloading.
What is the maximum combined length of command line arguments including the space between adjacent arguments?
What is virtual base class uses?
Write a corrected statement in c++ so that the statement will work properly. if (4 < x < 11) y=2*x;
Explain the properties and principles of oop.
Should the member functions which are made public in the base class be hidden?
What is istream 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
What is a list c++?
What is the syntax for a for loop?
What are multiple inheritances (virtual inheritance)? What are its advantages and disadvantages?
Are strings immutable in c++?
Define token in c++.
What does the following do: for(;;) ; a) Illegal b) Loops forever c) Ignored by compiler...not illegal
Difference between delete and free.