Author Archives: admin

8086 interview questions

How many bits does 8086 microprocessor have?
What is the size of data bus in 8086?
What is the size of address bus in 8086?
What is the max memory addressing capacity of 8086?
Which are the basic parts of 8086?
What are the functions of BIU?

Posted in Hardware | 5 Comments

25 SAP ABAP interview questions with no answers

What are the various compoents of SAP XI?
Define Integaration Builder.
What is Software Component Version.
Explain IR and ID.
What is data type, message type, Message Interface, etc.
What is context handling?

Posted in Database, General, SAP ABAP | 6 Comments

Google interview questions

This is a list of interview puzzles used at Google.

You have to get from point A to point B. You don’t know if you can get there. What would you do?
Imagine you have a closet full of shirts. It’s very hard to find a shirt. So what can you do to organize your shirts for [...]

Posted in General | 63 Comments

30 simple Java questions

How could Java classes direct program messages to the system console, but error messages, say to a file?
The class System has a variable out that represents the standard output, and the variable err that represents the standard error device. By default, they both point at the system console. This how the standard output could be [...]

Posted in Java | 5 Comments

SQL study notes

SQL
SQL is an English like language consisting of commands to store, retrieve, maintain & regulate access to your database.
SQL*Plus
SQL*Plus is an application that recognizes & executes SQL commands & specialized SQL*Plus commands that can customize reports, provide help & edit facility & maintain system variables.

Posted in Database | 2 Comments

Giant list of XML interview questions

1. What is XML?
XML is the Extensible Markup Language. It improves the functionality
of the Web by letting you identify your information in a more accurate,
flexible, and adaptable way. It is extensible because it is not
a fixed format like HTML (which is a single, predefined markup language).
Instead, XML is actually a meta language—a language for [...]

Posted in General, Web dev | Leave a comment

50 JavaScript & AJAX interview questions

1.  Why so JavaScript and Java have similar name?
A.  JavaScript is a stripped-down version of Java
B.  JavaScript's syntax is loosely based on Java's
C.  They both originated on the island of Java
D.  None of the above
 
2.  When a user views a page containing a JavaScript program, which machine actually executes the script?
A.  The [...]

Posted in Web dev | 1 Comment

EDS Visual Basic and SQL Server interview questions

What is the difference between modal and modaless form in VB?
Why we need a MDI form? How can we make a form as a mdichild form?
Specify technical & functional architecture of your last 2 projects.
What are the objects in ADODB?
What are different types of cursors in ADODB?
What are different types of locks in ADODB?
What is [...]

Posted in Database, VB, Windows | 25 Comments

More than 200 CCNA questions

As system administrator, you type “debug ipx sap” and receive the following lines as part of the IOS response: type 0×4, “HELLO2″, 199.0002.0003.0006 (451), 2 hops type 0×4, “HELLO1″, 199.0002.0003.0008 (451), 2 hops What does “0×4″ signify?
* That is a Get Nearest Server response.
* That it is a General query.
* That it [...]

Posted in Networking | 7 Comments

Implement itoa

Implementing itoa function is a popular interview question. Here’s one implementation from SAP.

char *itoa(int value)
{
int count, /* number of characters in string */
i, [...]

Posted in C++, General | Leave a comment

Write a program that prints out its own source code

Frequently a question of the programs printing out their own output appears in code interviews. The question does not really test a skill of a programmer, as much as general awareness of tricks to do that. The quine page by Gary Thompson provides many examples of such applications in various languages. In case you were [...]

Posted in General | 9 Comments

54 ASP and ASP.NET questions

Explain the life cycle of an ASP .NET page.
Explain the .NET architecture.
What are object-oriented concepts?
How do you create multiple inheritance in c# and .NET?
When is web.config called?

Posted in .NET, Web dev | 57 Comments