|
| |
| |
| |
|
Statistics |
| Unique Visitors: 404 |
| Total Unique Visitors: 736679 |
| Visitors Out: 1396 |
| Total Visitors Out: 1396 |
|
|
|
| |
|
|
| |
|
| C++ Interview Questions |
| 2007-10-24 19:56:41 |
1) List object oriented methodologies
2) Name some object oriented languages
3) What are the features of object oriented language
4) What is method overloading
5) What is method overriding
6) When would one define a static variable / global variable ? Difference between them?
7) What is Default constructor?
What is Copy constructor?
9) What is Conversion constructor?
10) Difference between [...]...
|
| |
|
| Behavioral Interview Questions |
| 2007-10-24 19:52:50 |
Behavioral Interviews are very common these days for senior positions in IT. These interviews are designed with an objective to find out how one reacts or might have reacted in specific situation, how one uses his/her experience and expertise to handle critical issues at work place, how good one is in decision making,leadership/management ability,initiative,innovation and [...]...
|
| |
|
| Basic .NET Framework interview questions |
| 2007-10-18 09:49:14 |
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 [...]...
|
| |
|
| ADO.NET Interview questions Part 1 |
| 2007-10-18 08:14:45 |
1. What is the namespace in which .NET has the data functionality classes ?
2. Can you give a overview of ADO.NET architecture ?
3. What are the two fundamental objects in ADO.NET ?
4. What is difference between dataset and datareader ?
5. What are major difference between classic ADO and ADO.NET ?
6. What is the use of [...]...
|
| |
|
| .Net Web services & Remoting interview questions |
| 2007-10-18 08:12:16 |
1. What is a application domain?
2. What is .NET Remoting ?
3. Which class does the remote object has to inherit
4. What are two different types of remote object creation mode in .NET ?
5. Describe in detail Basic of SAO architecture of Remoting?
6. What are the situations you will use singleton architecture in remoting ?
7. What [...]...
|
| |
|
| JSP interview questions |
| 2007-10-18 07:19:58 |
1. Can you explain JSP page life cycle?
2. What is EL?
3. how does EL search for an attribute?
4. What are the implicit EL objects in JSP?
5. How can we disable EL?
6. what is JSTL?
7. Can you explain in short what the different types of JSTL tags are?
8. How can we use beans in JSP?
9. What [...]...
|
| |
|
| Servlets Interview questions |
| 2007-10-18 07:17:22 |
1. What are Servlets?
2. What are advantages of servlets over CGI?
3. Can you explain Servlet life cycle?
4. What are the two important API’s in for Servlets?
5. Can you explain in detail “javax.servlet†package?
6. What’s the use of ServletContext?
7. How do we define an application level scope for servlet?
8. What’s the difference between GenericServlet and HttpServlet?
9. [...]...
|
| |
|
| HR Interview Question |
| 2007-10-18 07:12:40 |
1. Can you tell us about a challenging situation at work you have encountered so far? How did you tackle it?
Here the interviewer is looking at a number of factors- your problem solving skills, underlying attitudes, how you put across your ideas and how your previous experience may be useful to the present organization. When [...]...
|
| |
|
| Software Testing Release Life Cycle |
| 2007-10-15 22:07:59 |
Software Testing Life Cycle consist of six (generic) phases: 1) Planning, 2) Analysis, 3) Design, 4) Construction, 5) Testing Cycles, 6) Final Testing and Implementation and 7) Post Implementation.
1. Planning ( Product Definition Phase)
1. High Level Test Plan, (includes multiple test cycles)
[...]...
|
| |
|
| Interview questions on C/C++ |
| 2007-10-14 17:34:20 |
Tell how to check whether a linked list is circular.
Create two pointers, each set to the start of the list. Update each as follows:
while (pointer1) {
pointer1 = pointer1->next;
pointer2 = pointer2->next; if (pointer2) pointer2=pointer2->next;
if (pointer1 == pointer2) {
print (”circular
”);
}
}
OK, why does this work?
If a list is circular, at some point pointer2 will wrap around and be [...]...
|
| |
|
| C++ object oriented interview questions |
| 2007-10-14 17:29:19 |
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 [...]...
|
| |
|
| C++ Interview Questions |
| 2007-10-14 17:27:18 |
Write a short code using C++ to print out all odd number from 1 to 100 using a for loop
for( unsigned int i = 1; i < = 100; i++ )
if( i & 0x00000001 )
cout...
|
| |
|
| Interview Questions That Are Defensive |
| 2007-10-14 17:21:29 |
I understand the company has experienced layoffs within the last two years. Can you review the reasons why they were necessary?
How were the layoffs handled in terms of notification, severance, outplacement services, etc.?
What rewards have you found effective in recognizing and rewarding exceptional work?
Are there formal metrics in place for measuring and rewarding performance over [...]...
|
| |
|
| Probing interview Questions |
| 2007-10-14 17:06:29 |
Could you please describe the management team to me?
Does the company have a Net-use policy?
Will I receive my assignments from IT or from the business unit?
Do developers have little contact with the business unit or significant contact?
Can you show or sketch me an organizational chart?
If for any reason you were unable to function as CEO, [...]...
|
| |
|
| Questions for Hiring Managers |
| 2007-10-14 17:04:40 |
Could you explain the company’s organizational structure?
What is the organization’s plan for the next five years, and how does this department or division fit in?
What specific skills from the person you hire would make your life easier?
Will we be expanding or bringing on new products or new services that I should be aware of?
What are [...]...
|
| |
|
| Java Interview Question |
| 2007-10-14 16:58:08 |
What is the difference between an Interface and an Abstract class?
An abstract class can have instance methods that implement a default behavior. An Interface can only declare constants and instance methods, but cannot implement default behavior and all methods are implicitly abstract. An interface has all public members and no implementation. An abstract class is [...]...
|
| |
|
| Database objective interview questions |
| 2007-10-14 16:48:58 |
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 [...]...
|
| |
|
| Core Java Interview Questions Part 2 |
| 2007-10-09 09:35:41 |
What is the range of the char type?
The range of the char type is 0 to 2^16 - 1.
What is the range of the short type?
The range of the short type is -(2^15) to 2^15 - 1.
Why isn’t there operator overloading?
Because C++ has proven by example that operator overloading makes code almost impossible to maintain.
What [...]...
|
| |
|
|
| Interview Questions : Networks and Security |
| 2007-09-19 10:38:00 |
How do you use RSA for both authentication and secrecy? How do you do authentication with message digest(MD5)? How does traceroute work? Difference between discretionary access control and mandatory access control? What is ARP and how does it work? Explain Kerberos Protocol ? Name some routing protocols? (RIP,OSPF etc..) What are digital signatures [...]...
|
| |
|
| Fresher Interview Questions & Tips |
| 2007-09-17 17:19:00 |
Warm-Up Questions
• What made you apply for this position?
• How did you hear about this job openings?
• Briefly, would you summarize your work history & education for me?
Work History
• What special aspects of your work experience have prepared you for this job?
• [...]...
|
| |
|
| Fresher Interview Questions & Tips |
| 2007-09-17 17:19:00 |
Warm-Up Questions
• What made you apply for this position?
• How did you hear about this job openings?
• Briefly, would you summarize your work history & education for me?
Work History
• What special aspects of your work experience have prepared you for this job?
• Can you describe for [...]...
|
| |
|
| Manual Testing Interview Questions |
| 2007-09-17 17:18:00 |
What makes a good test engineer?
A good test engineer has a ‘test to break’ attitude, an ability to take the point of view of the customer, a strong desire for quality, and an attention to detail. Tact and diplomacy are useful in maintaining a cooperative relationship with developers, and an ability to communicate with both [...]...
|
| |
|
| Group Discussion Topics For Freshers |
| 2007-09-17 17:12:00 |
Hot Topics:
1.How to deal with international terrorism.
2.Should we pursue our policy of dialogue with Pakistan?
3.Is peace and non-violence outdated concepts?
Current Topics:
1.A Unipolar World spells disaster for underdeveloped countries like India.
2.Is Globalisation Really Necessary?
3.What shall we do about our ever-increasing Population?
4.Corruption is the price we pay for Democracy.
5.Foreign Television Channels are destroying our culture.
6.What India needs [...]...
|
| |
|
| IT Companies in Chennai |
| 2007-09-14 07:02:44 |
ADWAIY
#10,Prakasham St , B.V.Puram, AvadiChennai 600054
We primarily understand our client’s organization culture, value systems, goals and business plans. Then comes our product, ‘match scope’ deployed for matchmaking between clients and candidates.
AEGIS IT SOLUTIONS INDIA PVT. LTD.,
AD/2ANNA NAGARCHENNAI 600040
AEGIS is a professionally managed company providing software services and recruitment solutions since the past five years. We [...]...
|
| |
|
| Interview Question : SAP R/3 Sales & Distribution |
| 2007-09-13 07:21:00 |
SAP R/3 Sales & Distribution
what is availability check, how to configuration of it? What is Bonus Buy and how would I process? what are tickets/issues in sap SD? who handles these things and give a brief description of the samwhat is the control parameter in setting item category what [...]...
|
| |
|
| Interview Question : SAP R/3 Sales & Distribution |
| 2007-09-13 07:21:00 |
SAP R/3 Sales & Distribution
1. what is availability check, how to configuration of it? Subscribe 2. What is Bonus Buy and how would I process? Subscribe 3. what are tickets/issues in sap SD? who handles these things and give a brief description of the sam4. what is the control [...]...
|
| |
|
| General Technical Interview Questions |
| 2007-09-12 19:14:00 |
1. A 2MB PCM(pulse code modulation) has
a) 32 channels
b) 30 voice channels & 1 signalling channel.
c) 31 voice channels & 1 signalling channel.
d) 32 channels out of which 30 voice channels, 1 signalling channel, & 1 Synchronizatio channel.
Ans: (c)
2. Time taken for 1 satellite hop in voice communication is
a) 1/2 second
b) 1 seconds
c) 4 seconds
d) [...]...
|
| |
|
| Microsoft Silverlight |
| 2007-08-31 09:01:00 |
(formerly known as code name “WPF/Eâ€)
Microsoft Silverlight is a cross-browser, cross-platform plug-in for delivering the next generation of .NET-based media experiences and rich interactive applications for the Web. Silverlight offers a flexible and consistent programming model that supports AJAX, Python, Ruby, and .NET languages such as Visual Basic and C#, and integrates with existing Web [...]...
|
| |
|
| SQL Server Interview Questions |
| 2007-08-30 19:43:00 |
What is RDBMS?Relational Data Base Management Systems (RDBMS) are database management systems that maintain data records and indices in tables. Relationships may be created and maintained across and among the data and tables. In a relational database, relationships between data items are expressed by means of tables. Interdependencies among these tables are expressed by [...]...
|
| |
|
| .NET Interview Question & Answer |
| 2007-08-30 10:10:00 |
What is the difference between .Net Remoting and Asp.Net Web Services?
ASP.NET Web Services Can be accessed only over HTTP but .Net Remoting Can be accessed over various protocols like TCP, HTTP, SMTP etc.
Web Services are based on stateless service architecture but .Net Remoting support for both stateful and stateless environment.
Web Services support [...]...
|
| |
|
| .NET Interview Question & Answer |
| 2007-08-30 10:10:00 |
What is the difference between .Net Remoting and Asp.Net Web Services?
ASP.NET Web Services Can be accessed only over HTTP but .Net Remoting Can be accessed over various protocols like TCP, HTTP, SMTP etc.
Web Services are based on stateless service architecture but .Net Remoting support for both stateful and stateless environment.
Web Services support [...]...
|
| |
|
| .Net Interview Questions & Answers |
| 2007-08-30 10:04:00 |
Multiple - Language Development in .NET Framework
.NET Framework encourages cross-language development using multiple programming languages. To become a .NET language, any language should have a compiler that translates the source code written in different languages into Microsoft Intermediate Language (MSIL).
MSIL code is called as Managed Code. Managed code runs in .NET environment.
In .Net [...]...
|
| |
|
| .Net Interview Questions & Answers |
| 2007-08-30 10:04:00 |
Multiple - Language Development in .NET Framework
.NET Framework encourages cross-language development using multiple programming languages. To become a .NET language, any language should have a compiler that translates the source code written in different languages into Microsoft Intermediate Language (MSIL).
MSIL code is called as Managed Code. Managed code runs in .NET environment.
In .Net [...]...
|
| |
|
| .NET Remoting Versus Web Services |
| 2007-08-24 09:58:00 |
The Web services technology enables cross-platform integration by using HTTP, XML and SOAP for communication thereby enabling true business-to-business application integrations across firewalls. Because Web services rely on industry standards to expose application functionality on the Internet, they are independent of programming language, platform and device.
Remoting is .a technology that allows programs and software [...]...
|
| |
|
| Political GD Topics |
| 2007-08-23 07:20:58 |
1. reserving seats for women in Panchayat has not only been a farce but has distracted from developing a more genuine voice of women.
2. Have the nuclear tests of 1998 benefited or harmed India?
3. Voters, not, political parties are responsible for the criminalization of politics.
4. The voters are required to be well informed and educated [...]...
|
| |
|
| Economic GD Topics |
| 2007-08-23 07:18:37 |
1. in our economic matters, there is an excessive tendency towards the thinking rather than doing.
2. Every cloud has a silver lining
3. Can the economy achieve an 8 percent growth rate?.
4. is disinvestment really that good for India or is a rethink in order?
5. Are co-operatives relevant in todays globalizing environment?
6. Foreign aid is a [...]...
|
| |
|
| Creative GD Topics |
| 2007-08-23 07:15:04 |
1.The Wheel is Turning Round and Round
2.If I was the Finance Minister/Prime Minister
3.There is no right way to do a wrong thing
4.Group Task: How can we have Mount Everest in India?
5.Do Beauty and Brains Go Together?
6. When I woke up in the morning I saw…
7.A ship docked in harbor cannot face the storms
8.Up the Down [...]...
|
| |
|
| Assembly In Microsoft.Net |
| 2007-08-05 12:47:00 |
What is an assembly in .NET Framework?An assembly is the primary building block of a .NET Framework application. It is a collection of functionality that is built, versioned, and deployed as a single implementation unit (as one or more files). All managed types and resources are marked either as accessible only within their implementation unit, [...]...
|
| |
|
| DOTNET Remoting interview Questions |
| 2007-08-05 12:43:00 |
What’s a Windows process?It’s an application that’s running and had been allocated memory.
What’s typical about a Windows process in regards to memory allocation?Each process is allocated its own block of available RAM space, no process can access another process’ code or data. If the process crashes, it dies alone without taking the entire OS or [...]...
|
| |
|
| |
 |