Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...



C++ Interview Questions
Questions Answers Views Company eMail

What are Agilent PRECOMPILERS?

Agilent,

1117

Write a syntax and purpose of switch statement.

Agilent,

1089

Explain the importance of method overloading in C++?

Akamai Technologies, Infogain,

1091

What do you by Function Overloading in C++?

Akamai Technologies, Infogain,

1088

What is constant keyword in C++? Illustrate its various uses.

Akamai Technologies, Infogain,

1109

Explain the operator overloading feature in C++ ?

1078

Explain function prototypes in C++.

Aricent,

1134

In C++ what is the meaning of data hiding?

Aricent,

1083

Briefly explain various access specifiers in C++.

Amdocs,

1054

Define type casting in C++.

Amdocs,

1092

What are the different scope C++ provide ?

Amdocs,

1050

What is data abstraction? How is it implemented in C++?

Amdocs,

1104

Write a C++ program to print strings in reverse order.

Amdocs,

1004

Can you name some types of inheritance?

Motorola,

1 4216

Describe these concepts: Polymorphism, Inheritance and Abstraction.

TCS,

1256


Un-Answered Questions { C++ }

What is c++ hash?

1182


What is buffer and example?

1103


What is the difference between public, private, and protected inheritance?

1089


What does it mean to declare a destructor as static?

1159


Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.

2538


How important is c++?

1036


Can turbo c++ run c program?

1159


What is iterator c++?

1050


what are the realtime excercises in C++?

2905


What is long in c++?

1311


#include #include #include #include void insert(struct btreenode **, int); void inorder(struct btreenode *); struct btreenode { struct btreenode *leftchild; struct btreenode *rightchild; int data; }; main() { struct btreenode *bt; bt=(struct btreenode *)NULL; int req,i=1,num; clrscr(); printf("Enter number of nodes"); scanf("%d",&req); while(i<=req) { printf("Enter element"); scanf("%d",&num); insert(&bt,num); i++; } inorder(bt); } void insert(struct btreenode **sr, int num) { if(*sr==NULL) { *sr=(struct btreenode *)malloc (sizeof(struct btreenode)); (*sr)->leftchild=(struct btreenode *)NULL; (*sr)->rightchild=(struct btreenode *)NULL; (*sr)->data=num; return; } else { if(num < (*sr)->data) insert(&(*sr)->leftchild,num); else insert(&(*sr)->rightchild,num); } return; } void inorder(struct btreenode *sr) { if(sr!=(struct btreenode *)NULL) { inorder(sr->leftchild); printf("\n %d",sr->data); inorder(sr->rightchild); } else return; } please Modify the given program and add two methods for post order and pre order traversals.

3830


What is private, public and protected inheritance?

1137


What is increment operator in c++?

1065


what do you mean by volatile variable?

1115


What is the use of lambda in c++?

1092