Tell us about yourself.

Answer Posted / arun karthick

Hi,My name is Arun Karthick .I'm from Tanjore.I did my
Engineering Gradutation at Sastra University.I have
Completed my Schooling from Bishop Heber Trichy.
I am a Quick learner,Hardworker,fun loving Person and ease
to move with friends.
My hobies are playing cricket,CyberGames,hang out with
friends.
I'm an active participant of NSS and Organised Blood Camps
in College.
Organised various Cultural and Tech Fest in College.
Participated various Gaming Events and Won Many Prices

Is This Answer Correct ?    5 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why do we use oops?

595


Templates mean

1592


Why do we need oop?

671


write a code for this:trailer recordId contains a value other than 99, then the file must error with the reason ‘Invalid RECORD_ID’(User Defined Exception).

1647


What do you mean by Encapsulation?

645






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.

1795


Can enum be null?

590


#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

2070


why reinterpret cast is considered dangerous?

1905


What is polymorphism in oop example?

519


Why do we need polymorphism in c#?

691


Following are the class specifications: class {int a}; class {int b}; Using friend funtion,calculate the max of two objects and display it.

2010


Is abstract thinking intelligence?

601


What is polymorphism and types?

604


What is constructor in oop?

591