By admin | April 12, 2007
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?
By admin | February 26, 2007
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?
By admin | February 19, 2007
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 [...]
By admin | February 16, 2007
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 [...]
By admin | February 12, 2007
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.
By admin | January 18, 2007
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 |
By admin | January 10, 2007
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 [...]
By admin | January 4, 2007
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 [...]
By admin | January 2, 2007
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 [...]
By admin | December 31, 2006
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, [...]
By admin | December 31, 2006
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 [...]
By admin | December 21, 2006
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 |