What is a linked list?

Answer Posted / venu

link list is a list that is used to sort by the names

Is This Answer Correct ?    1 Yes 8 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are two types of polymorphism?

622


What is abstraction in oop with example?

653


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

2078


What is overriding in oops?

614


Whats is abstraction in oops?

597






Describe these concepts: Polymorphism, Inheritance and Abstraction.

622


write a program to enter a string like"sunil is a good boy and seeking for a job" not more than 10 characters including space in one line,rest characters should b in other line.if the next line starts from in between the previous word,then print whole word to next line.

1801


What is destructor give example?

612


What is static in oop?

595


What is class and object with example?

599


Give two or more real cenario of virtual function and vertual object

1863


What are the 3 pillars of oop?

628


What is new keyword in oops?

601


What is an example of genetic polymorphism?

657


Why do we use class in oops?

565