i ahve v low % in 12th n BSC which is aroun 50 coz science
was imposed on me......nw m doin MCA n my aggregate in
above 74%,what shud i say if asked about low previous
percentage??????

Answer Posted / san

Dear Jass,

Let me tell you an answer to your question.

See this is the question just to ask you for a formalit sake
no intervier is going to reject you because of this
questions answer if he was about to take you in.

Here only he expects how you answer his question becuase he
knows that you have put your best in every year of your
academics and the result is so.. only he wants to see your
opinion on this.(He refer to Interviewer)

You can answer like: I have put my best efforts in every
year of my academics but I found that I am a better scorer
in MCA, yes one thing I can say is I had few subjects which
drawn my more concentration and went in depth of it and
really did better in them.

Is This Answer Correct ?    3 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is encapsulation and abstraction? How are they implemented in C++?

628


What is data binding in oops?

580


write a program using c++ to implement single contiguous memory mangement techniques.display the content of the main memory after yhe allocation of jobs and percentage of the wastage of the main memory

2750


What is polymorphism explain?

679


What is oops with example?

560






#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

2059


Write A Program to find the ambiguities in Multiple Inheritance? How are they resolved.(Virtual Functions)

3550


Why is oop better than procedural?

600


What is encapsulation example?

544


What are the 5 oop principles?

594


What is abstraction example?

613


What is polymorphism and example?

588


What is the important feature of inheritance?

631


What is object and example?

600


What is overloading and its types?

609