tell me about yourself ?i want answer for frehers with
various exasmples?
Answers were Sorted based on User's Feedback
Answer / sanish joseph
I am Sanish Joseph.I completed my B.TECH in NSS COLLEGE
PALAKKAD,Kerala in Electronics and Communication engineering.
After completing B_Tech I did ANIIT course from NIIT.In that
course I learned SQL,C++,J2SE,J2EE,VB.NET and ASP.NET.I did
my 10th and +2 in St.Thomas CHSS Thrissur.My hobbies are
drawing painting and listen to music.About my family ,my
parents are teachers and my brother is working in HCL as a
software Engineer.And I want to acquire a challenging
position where I can contribute my technical,logical and
software skills as a professional. dats al...
| Is This Answer Correct ? | 9 Yes | 1 No |
Answer / leo
I'm Leo.Now i'm undergoing MCA in St.joseph's
college,Trichy.My strengths r
Optimistic,Dedication,Teamwork,Respect others.My favourite
area is OOP's.And I did ONLINE SHARE MARKET as my mini
project in JSP(J2EE)platform.I'm a self motive person.I
was university football player in my UG.So that i mentioned
ealier that i'm a good teamworker.
| Is This Answer Correct ? | 2 Yes | 3 No |
How the virtual functions maintain the call up?
We all know that a const variable needs to be initialized at the time of declaration. Then how come the program given below runs properly even when we have not initialized p?
an integer constant must have atleast one a) character b) digit c) decimal point
Explain what is polymorphism in c++?
What is #include ctype h in c++?
what is the difference between linear list linked representaion and linked representation? what is the purpose of representing the linear list in linked represention ? is it not avoiding rules of linear represention?
Define pointers?
template<class T, class X> class Obj { T my_t; X my_x; public: Obj(T t, X x) : my_t(t), my_x(x) { } }; Referring to the sample code above, which one of the following is a valid conversion operator for the type T? a) T operator T () { return my_t; } b) T operator(T) const { return my_t; } c) operator(T) { return my_t; } d) T operator T (const Obj &obj) { return obj.my_t; } e) operator T () const { return my_t; }
Where can I run c++ program?
What is while loops?
What is the Difference between "printf" and "sprintf"?
7 Answers iSoft, PentaWare, TCS,
A prime number is a number which is divisible only by itself and 1. Examples of the first few primes are 2, 3, 5, 7, 11. Consider writing a program which can generate prime numbers for you. Your program should read in and set a maximum prime to generate and a minimum number to start with when looking for primes. This program should be able to perform the following tasks: 1. Read the maximum number from user (keyboard input) to look for primes. The program should not return any primes greater than this number. 2. Read the minimum number from user (keyboard input) to look for primes. The program should not return any primes less than this number. 3. Generate and print out every prime number between the maximum prime and minimum number specified by the user.