C++ Interview Questions
Questions Answers Views Company eMail

what is the acronym of the term 'C.O.M.P.U.T.E.R' ?

Config Systems, Google, Wipro,

17 27596

i want to know how to copy arrary without using any method or function. I have tried the below using System; class e4 { static void Main(string[] args) { int a,b; int[ ] m= new int[5]; int[ ] n= new int[5]; for(a=0;a<=4;a++) { Console.WriteLine("enter any value"); m[a]=Convert.ToInt32(Console.ReadLine()); m[a]=n[a]; } for(b=0;b<=4;b++) { Console.WriteLine(n[b]); } } } but it will give wrong result can anyone solve this problem

Reliance,

1 3986

which are the 4 members functions in c++ objects that can either be declared explicitly by programmer or implementation if nt available.

4 4908

a class that maintains a pointer to an object that is programatically accessible through the public interface is known as?

CTS,

2 3469

what is the sylabus for priliminaries?

1677

Hi i need to Acess a variable "int Intval" in the below mentioned code .How to Access it guys i am waiting for your reply

3 3653

how to get the sum of two integers?

2 4011

How to Increment the value of the empid E001 for each and every employee by using the programe?

Accenture,

1 2626

How to calculate the age from the date of birth by using the program?

Accenture,

2 7966

how to find the correct email address format by using the programe?

Accenture,

1 3098

why we are using the fork command?.. how it works?

1 3498

what is the size of a class which contains no member variables but has two objects??? is it 1 or 2??

4 6554

Perform addition, multiplication, subtraction of 2-D array using Operator Overloading.

Nucleus, TCS,

3364

difference between the c++ and c languages

Wipro,

4 5386

what is electronic software

1 3228


Un-Answered Questions { C++ }

Can you name some types of inheritance?

633


What is boyce codd normal form in c++?

686


What are default parameters? How are they evaluated in c++ function?

659


Explain the concept of memory leak?

618


What is a try block?

632






What is oops in programming?

558


What are the three forms of cin.get() and what are their differences?

620


Describe private, protected and public?

592


Prepare me a program for the animation of train

1981


an operation between an integer and real always yeilds a) integer result b) real result c) float result

701


What is the difference between the indirection operator and the address of oper-ator?

600


If P is the population on the first day of the year, B is the birth rate, and D is the death rate, the estimated population at the end of the year is given by the formula: The population growth rate is given by the formula: B – D Write a program that prompts the user to enter the starting population, birth and death rates, and n, the number of years. The program should then calculate and print the estimated population after n years. Your program must have at least the following functions: 1. growthRate: This function takes its parameters the birth and death rates, and it returns the population growth rate. 2. estimatedPopulation: This function takes its parameters the current population, population growth rate, and n, the number of years. It returns the estimated population after n years Your program should not accept a negative birth rate, negative death rate, or a population less than 2. please answer my question ....

1769


What is new in c++?

569


What is pointer with example?

556


Describe the setting up of my member functions to avoid overriding by the derived class?

601