sir i want to know which posting to apply since i am BE
CSE.. also want to know what are the rounds there for my
interview...Expecting for ur valuable answer....
Answers were Sorted based on User's Feedback
Answer / keshav.gadde
If u r fresher u will learn java or .net.In interviews they
will test u r knowledge in Written test & Technical round
& HR round.So well prepare languages all the best.
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / santosh
Dear Indu,
Its good to see that you are a Computer Scienece graduate in
engineering, It is time for you to look for different
openings around you either be from your friends, net or new
papers.
Apply to such openings and wait for Call Letter to
come to you.
Once you get your call letter for Written test or further
process you will be knowing the next steps.
A general Scenario of Interview is as explained by the
earlier person before me.. i.e.
Written Test (Includes Technical & Aptitude)
Group Discussion(Not for all companies but an important aspect)
Technical Round(Will be asked on your stream subjects)
Human Resource round(It may be in Technical round it self in
few interviews)
| Is This Answer Correct ? | 2 Yes | 0 No |
can you give real time example for polymarphism
Program to read a comment string
What does it mean when someone says I oop?
program for insertion ,deletion,sorting in double link list
How do you achieve polymorphism?
IS IT NECESSARY TO INITIALIZE VARIABLE? WHAT IF THE INSTANCE VARIABLE IS DECLARED final ? IS IT NECESSARY TO INITIALIZE THE final VARIABLE AT THE TIME OF THEIR DECLARATION?
What is purpose of inheritance?
Will I be able to get a picture in D drive to the c++ program? If so, help me out?
3. Differentiate verification and validation.
Can we create object of interface?
#include <string.h> #include <stdio.h> #include <stdlib.h> #include<conio.h> 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
why the memory allocated with new cant be freed using free()