Directory
Technology
Blog Details for "IT Interview Questions"
IT Interview QuestionsIT Interview QuestionsTech Interview Questions,.Net Interview Questions,Java Interview questions,Testing Tools Interview questions,Database Interview Questions,Resume Writing,Resume Tips,Testing tools Interview questions,Candidate Interview Questions,IT interview question Articles
C++ object oriented Interview Questions
2007-11-14 08:12:00 How do you write a function that can reverse a linked-list? void reverselist(void) { if(head==0) return; if(head->next==0) return; if(head->next==tail) { head->next = 0; tail->next = head; } else { node* pre = head; node* cur = head->next; node* curnext = cur->next; head->next = 0; cur->next = head; for(; curnext!=0; ) { cur->next = pre; pre = cur; cur = curnext; curnext = curnext->next; } curnext->next = cur; } } What is polymorphism? Polymorphism is the idea that a base class can be inherited by several ... More About: Questions , Interview , Object
Basic .NET Framework Interview Questions
2007-11-14 08:11:00 1) What is IL? 2) What is the CLR? 3) What is the CTS? 4) What is CLS(Common Language Specification)? 5) What is Managed Code? 6) What is Assembly ? 7) What are different types of Assembly? What is NameSpace? 9) What is Difference between NameSpace and Assembly? 10) What is Manifest? 11) Where is version information stored of a assembly ? 12) Is ... More About: Questions , Interview , Basic , Framework
Database objective Interview Questions
2007-11-14 08:10:00 What are the maximum number of tables that can be joined together in a query? A) 16 B) 32 C) 256 D) 1024 When using BCP to copy data into a table, which of the following statements apply? Choose 2. A) Database users will not be able to access the table because BCP will lock it. B) Database users will see the ... More About: Questions , Interview 1, 2, 3 |



