What is variable example?
No Answer is Posted For this Question
Be the First to Post Answer
What is the highest level of cohesion?
What is the real time example of inheritance?
Name an advantage of array over linked list?
24 Answers GML, IBM, Software Solutions,
What is the diamond problem in inheritance?
I am DeePu sotware engineer working with EMC corporation ,recently I had attended mcafee interview . Their questions were at heights of stupidity , I don't know what they want , I am a developer with 4 year experienced .I am listing the questions asked 1:What is the flag in g++ to avoid structure padding 2:In wht order parameters are passed to stack 3:How you will edit code segment of an exe
What is overriding in oop?
What is abstraction in oops?
WRITE A SIMPLE C++ PROGRAM TO SWAP TWO NOS WITHOUT USING TEMP
what is the need of abstraction? what is abstraction?what is the abstraction for stack?
Can we have a private virtual method ?
What is the differances between a abstract calss and interface
#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