Technical Questions

Q:

What would be the output of the following program?

main()

{

  extern int i;

   i = 20;

  printf( "%d", sizeof(i) );

}

Answer

extern int i is a declaration and not a definition, hence Error occured.

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2199
Q:

Benefits of Software Quality Assurance to the organization

Answer

The main task of Software Quality Assurance Group is to examine the overall s/w development process and to create and enforce standards and methods to improve it with the goal of preventing bugs from ever occurring. With this definition, it is imperative that the QA helps an organization in continuous performance improvement and strive for perfection.

Report Error

View answer Workspace Report Error Discuss

Subject: Software Testing

0 2198
Q:

What is Non-Maskable interrupts?

Answer

An interrupt which can be never be turned off (ie. disabled) is known as Non-Maskable interrupt

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 2193
Q:

What are various scheduling queues?

Answer

 



  • Job queue

  • Ready queue

  • Device queue

Report Error

View answer Workspace Report Error Discuss

1 2191
Q:

What are DDks? Name an operating system that includes this feature.

Answer

DDks are device driver kits, which are equivalent to SDKs for writing device drivers. Windows NT includes DDks.

Report Error

View answer Workspace Report Error Discuss

0 2184
Q:

What are the various segment registers in 8086?

Answer

Code, Data, Stack, Extra Segment registers in 8086.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

1 2181
Q:

Can you suggest any other way of writing the following expression such that 30 is used only once?

a <= 20 ? b = 30 : c = 30 ;

Answer

*( ( a <= 20 ) ? &b : &c ) = 30;

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

1 2175
Q:

What is region?

Answer

When hierarchical routing is used, the routers are divided into what we call regions, with each router knowing all the details about how to route packets to destinations within its own region, but knowing nothing about the internal structure of other regions

Report Error

View answer Workspace Report Error Discuss

Subject: Networking
Job Role: Network Engineer

0 2170