C++ Interview Questions
Questions Answers Views Company eMail

what is the diffrence between c# and c++

5 6738

How compiler selects(internally) required overridden function in inheritance?

CSC, Infinite Computer Solutions,

2 5419

They started with the brief introduction followed by few basic C++ questions on polumorphism, inheritance and then virtual functions. What is polymorphims? How you will access polymorphic functions in C? How virtual function mechanism works?

1411

There are 2 empty jars of 5 and 3 liters capacity. And a river is flowing besides. I want to measure 4 liters of wanter using these 2 jars. How do you do this?

2 3522

They started with the brief introduction followed by few basic C++ questions on polumorphism, inheritance and then virtual functions. What is polymorphims? How you will access polymorphic functions in C? How virtual function mechanism works?

1396

There are 2 empty jars of 5 and 3 liters capacity. And a river is flowing besides. I want to measure 4 liters of wanter using these 2 jars. How do you do this?

4 9609

write a corrected statement so that the instruction will work properly. if (4 < x < 11) y = 2 * x;

1518

write a corrected statement in c++ so that the statement will work properly. x = y = z + 3a;

1461

Write a corrected statement in c++ so that the statement will work properly. if (4 < x < 11) y=2*x;

1509

Write a corrected statement in c++ so that the statement will work properly. if (x > 5); y = 2*x; else y += 3+x;

1 2368

Write a corrected statement in c++ so that the statement will work properly. if (x = y) x = 2*z;

2 3202

Write a corrected statement in c++ so that the statement will work properly. x =+ 7;

2 3002

Write a corrected statement in c++ so that the statement will work properly. x + y=z;

2 3208

If you had the following code: int x = 23; int *y; y = &x; The instruction y++; does what?

2 3797

Write a single instruction that will find the remainder of integral division when x is divided by y. Have the answer stored in z.

1 2831


Un-Answered Questions { C++ }

We use library functions in the program, in what form they are provided to the program?

602


What is a singleton c++?

551


How can an improvement in the quality of software be done by try/catch/throw?

594


How to delete array of objects in C++? Proof by C++ code for proper deletion

335


Explain the concept of memory leak?

631






What is a unnitialised pointer?

533


What are exceptions c++?

598


How do you establish a has-a relationship?

612


How would you implement a substr() function that extracts a sub string from a given string?

570


sir please send me bpcl previous question papers

1961


What is the difference between inheritance and polymorphism?

594


What does the linker do?

597


What is difference between abstraction and encapsulation?

594


Objective The objective of this problem is to test the understanding of Object-Oriented Programming (OOP) concepts, in particular, on encapsulation. Problem Description Create a program for managing customer’s bank accounts. A bank customer can do the following operations: 1. Create a new bank account with an initial balance. 2. Deposit money into his/her account. 3. Withdraw money from his/her account. For this operation, you need to output “Transaction successful” if the intended amount of money can be withdrawn, otherwise output “Transaction unsuccessful” and no money will be withdrawn from his/her account. Input The input contains several operations and is terminated by “0”. The operations will be “Create name amount”, “Deposit name amount”, or “Withdraw name amount”, where name is the customer’s name and amount is an integer indicating the amount of money. There will be at most 100 bank accounts and they are all created on the first month when the bank is opening. You may assume that all account holders have unique names and the names consist of only a single word. Output The output contains the transaction result of withdrawal operations and the final balance of all customers after some withdrawal and deposit operations (same order as the input). Sample Input Create Billy 2500 Create Charlie 1000 Create John 100 Withdraw Charlie 500 Deposit John 899 Withdraw Charlie 1000 0

1706


What is a multimap c++?

684