WILL I GET A guaranteed JOB AFTER DOING bsc()IT) and GNIIT
from an NIIT CENTRE??

Answer Posted / kvp

GNIIT is like "make them fish, don't fish for them". The curriculum and courses which they offer are up to the mark. But it depends on an individual to crack interviews of their choice and domain.. i am a gniitian and fairing reasonably good... but actually this is how you should follow the learning pattern.
B.COM/B.SC + GNIIT. Once done go for MBA FROM A GOOD COLLEGE FOR A BRIGHT FUTURE..

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 new keyword in oops?

593


What is the example of polymorphism?

562


How to handle exception in c++, For example in a functions i am assigning memory to some variables and also in next instructions in am dividing one variable also. If this functions generates a error while allocating memory to those variable and also while dividing the variable if i divide by zero then catch block how it will identify that this error has cone from perticular instruction

1658


Explain the concepts involved in Object Oriented programming.

644


What does it mean when someone says I oop?

587






Write a c++ program to display pass and fail for three student using static member function

2820


#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


write a C++ program for booking using constructor and destructor.

2055


What is the real life example of polymorphism?

611


What does and I oop mean?

620


What is the point of oop?

660


What is overriding vs overloading?

590


What is destructor in oop?

627


Explain the advantages of inheritance.

677


What is polymorphism and its types?

602