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...



Programming Languages Interview Questions
Questions Answers Views Company eMail

Implement a 2D bit-matrix representing monochrome pixels which will have only OFF/ON values and will take on an average only one bit of memory for each stored bit. How to perform various operations on it?

Adobe,

1030

What do you know about Volatile keyword in C++? Explain with an example code.

Adobe,

1058

What is meant by exit controlled loop?

Adobe,

1063

What is the meaning of the following declaration: int *const *const *i?

Adobe,

1011

Do you know about Agilent PRECOMPILERS. ?

Agilent,

1065

What are Agilent PRECOMPILERS?

Agilent,

1065

Write a syntax and purpose of switch statement.

Agilent,

1040

List the difference between a "copy constructor" and a "assignment operator"?

Accenture,

1026

Can you write the function prototype, definition and mention the other requirements.

Adobe,

1155

What are conditional operators in C?

Adobe,

1115

Tell us two differences between new () and malloc ()?

Adobe,

1216

What is calloc()?

Adobe,

1089

When should structures be passed by values or by references?

Adobe,

1061

Write the syntax and purpose of a switch statement in C.

Adobe,

1118

Explain the importance of method overloading in C++?

Akamai Technologies, Infogain,

1043


Un-Answered Questions { Programming Languages }

Define ActiveX and OLE?

911


Difference between malloc() and calloc() function?

1222


Does php support multithreading?

1076


Does Kotlin support Checked Exceptions like in Java?

167


What is ruby methods?

5


How can we use the custom table in laravel?

743


How to Get the date of a file using Delphi?

1958


In kotlin, can we create an empty array?

224


What are metaclasses in python?

859


What is multithreading? Give an example?

858


What is vcredist_x86 exe?

1064


#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.

3788


What is metadata in python?

866


Can I have 2 wordpress sites?

147


Mention how scala is different from java?

1