What does and I oop mean in text?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More OOPS Interview Questions

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

0 Answers  


Is this job good for future? can do this job post grduate student?

0 Answers  


Write a program to get the binary tree.

3 Answers   ABC,


why c++ is called OOPS? waht is inherutance? what is compiler?

5 Answers  


Which language is pure oop?

0 Answers  






How is exception handling carried out in c++?

3 Answers  


What is byval and byref? What are differences between them?

0 Answers   HCL, Wipro,


Define a class to represent a bank account. Include the following members: Data Members: Name of the Depositor Account Number Type of Account Balance amount in the account Member Functions: To assign the initial values. To deposit an account. To withdraw an amount after checking the balance. Write a C++ main program to display account number, name and balance.

6 Answers  


Write a program in c++ to read two floating point numbers and find their sum and average.

2 Answers  


Why oops is important?

0 Answers  


What do we mean by a hidden argument in a function?

1 Answers   TCL,


Which is better struts or spring?

0 Answers  


Categories