HOME

YEAR N ORG

Monday, April 23, 2007

TECH COMP INTERVIEW

DAC interview questions
Hardware

What is the IC numbers for DAC that you have used in the lab?
Define resolution. What is the resolution of DAC that you have used in the lab?
How many pins does DAC IC have?
What are the types of DAC?
Which technique you have used for DAC interfacing
Which type of DAC you have used in the lab?
Define all the specifications of DAC.
What are the advantages of binary ladder type DAC over weighted resistance type DAC?
What are the applications of DAC?
Explain block diagram IC 0808?
Explain the logic of DAC program.
Explain the interfacing of DAC with 8086.
x86 programming interview questions
What is an interrupt?
Which are the hardware and software interrupts in 8086?
Mention the priority of interrupts in8086.
What is int1, int2, int3?
What is NMI interrupt?
What is IVT in 8086?
Read all interview questions

8251 USART interview questions
Hardware
What is IC 8251?
How many pins does IC 8251 have?
What is USART?
Why 8251 is called a USART?
Read all interview questions

IC 8253 and IC 8259 interview questions
Hardware
What is IC 8253?
How many pins does IC 8253 have?
How many counters are there in 8253?
What is the size of counters in 8253?
With binary & BCD counters, what is the range of count?
Explain control word format of 8253?
Read all interview questions

Interview questions for a low-level programmer
What is assembler?
What is linker?
What is debugger?
What is compiler?
What is locator?
What is emulator?
Read all interview questions

8086 interview questions
Hardware
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?
Read all interview questions

25 SAP ABAP interview questions with no answers
database SAP ABAP
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?
Read all interview questions

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 easy retrieval?

What method would you use to look up a word in a dictionary? Read all interview questions

30 simple Java questions
Java
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 re-directed:
Stream st =
new Stream (new
FileOutputStream ("techinterviews_com.txt"));
System.setErr(st);
System.setOut(st); What’s the difference between an interface and an abstract class?

An abstract class may contain code in method bodies, which is not allowed in an interface. With abstract classes, you have to inherit your class from it and Java does not allow multiple inheritance. On the other hand, you can implement multiple interfaces in your class.

Read all interview questions

SQL study notes
database
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. Read all interview questions

Giant list of XML interview questions
Web dev
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 describing
other languages—which lets you design your own markup languages
for limitless different types of documents. XML can do this because
it’s written in SGML, the international standard meta language for
text document markup (ISO 8879).

2. What is a markup language?

A markup language is a set of words and symbols for describing
the identity of pieces of a document (for example ‘this is
a paragraph’, ‘this is a heading’, ‘this
is a list’, ‘this is the caption of this figure’,
etc). Programs can use this with a style sheet to create output
for screen, print, audio, video, Braille, etc.
Read all interview questions

50 JavaScript & AJAX interview questions
Web dev
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 User's machine running a Web browser

B. The Web server

C. A central machine deep within Netscape's corporate offices

D. None of the above
*******************************************

No comments:

Recent Comments