Tell us about yourself.

Answer Posted / saranya

Hai My name is saranya. iam doing my BBA Final year in
correspondence at Madras university. Now iam working as an
Admin. iam having experience in front office and admin. My
Hobbies are Listening songs, traveling with my friends and
family and chatting with my friends. My strength is Honest
and Punctuality.

My father working as a conductor, my mom is housewife, My
brother is studying 11th and My sister is studying 7th std.

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is abstraction in oops?

589


What is object in oop with example?

704


Is abstract thinking intelligence?

594


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

2168


What is oops concept with example?

578






what type of question are asked in thoughtworks pair programming round ?

1762


What is meant by oops concept?

612


Why do we use oops?

593


What is the full form of oops?

612


They started with the brief introduction followed by few basic C++ questions on polumorphism, inheritance and then virtual functions. What is polymorphims? How you will access polymorphic functions in C? How virtual function mechanism works?

1395


What does oop mean in snapchat?

686


What causes polymorphism?

577


What is an interface in oop?

595


What is the fundamental idea of oop?

638


Write a C++ program without using any loop (if, for, while etc) to print prime numbers from 1 to 100 and 100 to 1 (Do not use 200 print statements!!!)

1639