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


What is the expansion of OOPS?

Answers were Sorted based on User's Feedback



What is the expansion of OOPS? ..

Answer / amit saini

Object Orientated Programming Structure.

Is This Answer Correct ?    88 Yes 5 No

What is the expansion of OOPS? ..

Answer / naveen

OBJECT ORIENTED PROGRAMMING STRUCTURE

Is This Answer Correct ?    42 Yes 3 No

What is the expansion of OOPS? ..

Answer / saurabh

Object Oriented Programming Structure

Is This Answer Correct ?    27 Yes 1 No

What is the expansion of OOPS? ..

Answer / srsabariselvan

Object Oriented Programming

Is This Answer Correct ?    40 Yes 18 No

What is the expansion of OOPS? ..

Answer / rehman memon

OOP stands For Object Oriented Programming

Is This Answer Correct ?    32 Yes 15 No

What is the expansion of OOPS? ..

Answer / anitha, nandini

object oriented programming structure

Is This Answer Correct ?    4 Yes 1 No

What is the expansion of OOPS? ..

Answer / guest

Object Oriented Programming

Is This Answer Correct ?    4 Yes 2 No

What is the expansion of OOPS? ..

Answer / pabcet mca terrors

Object Orientated Programming Structure.

Is This Answer Correct ?    4 Yes 2 No

What is the expansion of OOPS? ..

Answer / maheswaran

object oriented programming system

Is This Answer Correct ?    5 Yes 4 No

What is the expansion of OOPS? ..

Answer / xyz

object oriented programming language

Is This Answer Correct ?    7 Yes 7 No

Post New Answer

More OOPS Interview Questions

#include <string.h> #include <stdio.h> #include <stdlib.h> #include<conio.h> void insert(char *items, int count); int main(void) { char s[255]; printf("Enter a string:"); gets(s); insert(s, strlen(s)); printf("The sorted string is: %s.\n", s); getch(); return 0; } void insert(char *items, int count) { register int a, b; char t; for(a=1; a < count; ++a) { t = items[a]; for(b=a-1; (b >= 0) && (t < items[b]); b--) items[b+1] = items[b]; items[b+1] = t; } } design an algorithm for Insertion Sort

0 Answers  


What is overriding vs overloading?

0 Answers  


When you define a integer it gets stored in which data structure?(Stack or a heap)

2 Answers   emc2,


ambiguity regulation of multiple inheritance with example.

1 Answers  


me get an assignent n its question is this 1.creat a set as in math i.ea={1,2} 2.insert element in it3. delete element don,t repeat any element 4.union 5. intersection of two sets plz help me i always pray for u n send me at ayeshawzd@hotmail.com f u have c++ how to program 5th addition then it is the 10.9 question in 10th chapter exercise

1 Answers  


program in c++ that can either 2 integers or 2 floating point numbers and output the smallest number

1 Answers   Anna University,


What is virtual Function.

1 Answers   Wipro,


Get me a number puzzle game-program

0 Answers  


Why do we use class in oops?

0 Answers  


Why we are use # in begning of programme of c++.

2 Answers   Syntel,


#include <stdio.h> #include <alloc.h> #include <stdlib.h> #include <conio.h> 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.

0 Answers  


What is interface? When and where is it used?

0 Answers  


Categories