Technical Questions

Q:

What is a Real-Time System?

Answer

A real time process is a process that must respond to the eventswithin a certain time period. A real time operating system is an operating system that can run realtime processes successfully.

Report Error

View answer Workspace Report Error Discuss

1 2332
Q:

What is a software project test plan?

Answer

A test plan is the master document that contains all details pertaining to testing of the application. Its contents include:


 


Testing scope - what is included and what is not included in the testing of the current project 


Assumptions - what are the assumptions that are made for this project 


Milestones - major dates like when testing is going to begin, when it is planned to end, what is the trace review date, what is the production date etc. 


Resources - the resources working on this project along with their contact details 


Defect tracking mechanism - what defect tracking tool will be used, what is the SLA for fixing Critical to Low level IRs etc. 


Test management procedures - who will be notified when there is a critical IR, what reports will be sent daily, if status calls will be held daily or weekly, where will it be held, who is required to join etc. 


Work allocation - resource distribution if more projects are being tested 


Entry and exit criterion - when can a project be accepted for testing (eg. only when smoke testing passes) and when can a project be termed as testing complete (eg. when all testcases are executed and all high level bugs are fixed)

Report Error

View answer Workspace Report Error Discuss

Subject: Software Testing

3 2323
Q:

What is attenuation?

Answer

The degeneration of a signal over distance on a network cable is called attenuation.

Report Error

View answer Workspace Report Error Discuss

Subject: Networking
Job Role: Network Engineer

0 2305
Q:

Which transistor is used in each cell of EPROM?

Answer

Floating gate avalanche injection MOS (FAMOS) transistor is used in each cell of EPROM.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 2272
Q:

What is autonomous system?

Answer

It is a collection of routers under the control of a single administrative authority and that uses a common Interior Gateway Protocol

Report Error

View answer Workspace Report Error Discuss

Subject: Networking
Job Role: Network Engineer

1 2260
Q:

What are necessary conditions for dead lock?

Answer

1. Mutual exclusion (where at least one resource is non-sharable)


2. Hold and wait (where a process holds one resource and waits for other resource)


3. No preemption (where the resources can’t be preempted)


4. Circular wait (where p[i] is waiting for p[j] to release a resource. i= 1,2,…n


j=if (i!=n) then i+1


else 1 )

Report Error

View answer Workspace Report Error Discuss

0 2259
Q:

What is multi tasking, multi programming, multi threading?

Answer

Multi programming: Multiprogramming is the technique of running several programs at a time using timesharing. It allows a computer to do several things at the same time. Multiprogramming creates logical parallelism. The concept of multiprogramming is that the operating system keeps several jobs in memory simultaneously. The operating system selects a job from the job pool and starts executing a job, when that job needs to wait for any i/o operations the CPU is switched to another job. So the main idea here is that the CPU is never idle. 


Multi tasking: Multitasking is the logical extension of multiprogramming .The concept of multitasking is quite similar to multiprogramming but difference is that the switching between jobs occurs so frequently that the users can interact with each program while it is running. This concept is also known as time-sharing systems. A time-shared operating system uses CPU scheduling and multiprogramming to provide each user with a small portion of time-shared system. 


Multi threading: An application typically is implemented as a separate process with several threads of control. In some situations a single application may be required to perform several similar tasks for example a web server accepts client requests for web pages, images, sound, and so forth. A busy web server may have several of clients concurrently accessing it. If the web server ran as a traditional single-threaded process, it would be able to service only one client at a time. The amount of time that a client might have to wait for its request to be serviced could be enormous. So it is efficient to have one process that contains multiple threads to serve the same purpose. This approach would multithread the web-server process, the server would create a separate thread that would listen for client requests when a request was made rather than creating another process it would create another thread to service the request. To get the advantages like responsiveness, Resource sharing economy and utilization of multiprocessor architectures multithreading concept can be used.

Report Error

View answer Workspace Report Error Discuss

1 2250
Q:

What is the value of a testing group? How do you justify your work and budget?

Answer

Testing is a process used for revealing defects in s/w and for establishing that the s/w has attained a specific degree of quality.


The s/w testing group’s main objective is to ensure that the s/w is doing what it is supposed to do as well as the s/w is not doing what it is not supposed to do. With this objective, it is clear that it is necessary to have a separate group for testing the s/w other than the group which developed it.


Also, bugs in the s/w can cause severe monetary as well as other loss to the organization. So it is important to allocate some budget for the testing group.

Report Error

View answer Workspace Report Error Discuss

Subject: Software Testing

1 2248