Is c++ used anymore?
No Answer is Posted For this Question
Be the First to Post Answer
what is Loop function? What are different types of Loops?
Given the following function definition: int doit(int &x, int y, int &z) { x = 3*x; y = y + 5; z = x+y; return z - 4; } int a = 5, b = 7, c = 9, d = 11; d = doit(a,b,c);
Arrange Doubly linked list in the ascending order of its integral value and replace integer 5 with 7?
What does it mean to declare a member function as static?
What c++ library is string in?
What are literals in C++?
List out function which we can call without using object
How is an Abstract Base Class(ABC) related to an "Abstract Data Type" (ADT)
what is software cycle? What is a mission critical system ? What is the important aspect of a real-time system ? Explain the difference between microkernel and macro kernel. Give an example of microkernel.Why paging is used ? Which is the best page replacement algo and Why ? What is software life cycle ? How much time is spent usually in each phases and why Which one do U want to work if selected in Honeywell ? Which are the different types of testing ? What is a distributed system ? Some questions about CSP. Which languages do U know ? What are the differences between Pascal and C. questions from Compiler construction and Lisp. Which are the different computer architecture? What is the requirement in MIMD ? What is the difference between RISC and CISC processors ? Difference between loosely coupled and tightly coupled systems ? What is an open system?
When do you call copy constructors?
What is oop in c++?
what is the size of a class which contains no member variables but has two objects??? is it 1 or 2??