Tell us about yourself.

Answer Posted / hari venkatesh

HAI.GOOD MORNING TO EVERYBODY. MY NAME IS HARI VENKATESH.I
AM 22. I HAVE COMPLETED MY B.TECH IN NOOR COLLEGE OF
ENGINEERING AND TECHNOLOGY AS A DESIGNATION OF ELECTRONICS
AND COMMUNICATION ENGINEERING WITH A AGGREGATE OF 65%.I AM
FRESHER.COMMING TO MY PERSONAL MATTERS ,MY NATIVE PLACE IS
TENALI.I HAVE ONE BROTHER.HE IS STUDING DEGREE FINAL YEAR.MY
MOTHER IS HOUSE WIFE.MY FATHER IS A BUSSINESS MAN.
COMMING TO MY STRENGHTS I HAVE A SELF CONFIDENCE TO DEAL
ABOUT ANY PROBLEM WITH POSITIVE THINKING AND HARD WORKING
NATURE.

Is This Answer Correct ?    1 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Is oop better than procedural?

584


How to use CMutex, CSemaphore in VC++ MFC

4342


What is the difference between encapsulation and polymorphism?

604


What is stream in oop?

848


What is a class oop?

604






What is Difference Between Inheritance and creating object and getting data? means Class A extends B{ B.getMethod();} (OR) Class A{ b obj=new B(); obj.getMethod(); }

1998


Can you explain polymorphism?

591


#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 encapsulation example?

559


Prepare me a program for the animation of train

2012


Can we have inheritance without polymorphism?

625


write knight tour problem which is present in datastructure

2175


What is the difference between procedural programming and oops?

570


What are objects in oop?

614


What is a superclass in oop?

680