Questions

Q:

Code coverage is used as a measure of what?

A) Trends analysis B) Time Spent Testing
C) Defects D) Test Effectiveness
 
Answer & Explanation Answer: D) Test Effectiveness

Explanation:

Code coverage is a measure used to describe the degree to which the source code of a program is executed when a particular test suite runs.

Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

3 2125
Q:

Read the following passage carefully and choose the most appropriate answer to the question out of the four alternatives.


The human eye is a complex part of the body that is used for seeing. Eyes enable people to perform daily tasks and to learn about the world that surrounds them. Sight, or vision, is a rapidly occurring process that involves continuous interaction between the eye, the nervous system, and the brain. When someone looks at an object, what he really sees is the light reflected from the object. This reflected light passes through the lens and falls on the retina of the eye. Here the light induces nerve impulses that travel through the optic nerve to the brain and then over other nerves to muscles and glands.


The eye is similar to a television camera. Both the eye and the television camera convert light energy to electrical energy. The eye converts light to nerve impulses that are interpreted by the brain as the sense perception called sight. A television camera converts light to electronic signals that are broadcast and transformed into light images in a television receiver. It is wonderful that human eyes blink an average of once every six seconds. This washes the eye with the salty secretion from the tear or lachrymal glands. Each tear gland is about the size and shape of an almond. These glands are situated behind the upper eyelid at the outer corner of the eye. After passing over the eye, the liquid from the gland is drained into the nose through the tear duct at the inner corner of the eye.

 

The sense perception that the brain releases after the eye converts light to nerve impulses is known as

A) Blindness B) Image
C) Sight D) Glare
 
Answer & Explanation Answer: C) Sight

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2125
Q:

In the following question, out of the four alternatives, select the word similar in meaning to the word given.

Pillage

A) Bequeath B) Consign
C) Entrust D) Desecrate
 
Answer & Explanation Answer: D) Desecrate

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2125
Q:

Who was the first Bengal Governor General of India?

A) Warren Hastings B) Lord Canning
C) William Bentick D) Lord Dalhousie
 
Answer & Explanation Answer: A) Warren Hastings

Explanation:

The first Bengal Governor General of India was Warren Hastings.

Report Error

View Answer Report Error Discuss

Filed Under: Indian History
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

2 2125
Q:

C program to find whether a number is palindrome or not.

Answer

 #include<stdio.h>
int main(){
    int num,r,sum=0,temp;

    printf("Enter a number: ");
    scanf("%d",&num);

    temp=num;
    while(num){
         r=num%10;
         num=num/10;
         sum=sum*10+r;
    }
    if(temp==sum)
         printf("%d is a palindrome",temp);
    else
         printf("%d is not a palindrome",temp);

    return 0;
}

Sample output:
Enter a number: 131
131 is a palindrome

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

1 2125
Q:

What are the minimal cost and minimal risk solution?

Answer

In binary representation there are some states that believed to be never occurred due to some particular functionality of a given circuit. If zero output is assigned to such states then it is called minimal risk solution as  we are resetting the formidable states which could be occurred accidentally. Another approach is to assigned a don't care to them so it results in lesser logic and hence is called minimal cost solution.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 2125
Q:

Project Integration Management - Processes

Describe the Inputs, Tools and Techniques, Outputs of Develop Project Charter phase?

Answer

I. Inputs



  • Contract (when applicable)

  • Project statement of work

  • Enterprise environmental factors

  • Organizational process assets


II. Tools and Techniques



  • Project selection methods

  • Project management methodology

  • Project management information system

  • Expert Judgment


III. Outputs


         1. Project charter

Report Error

View answer Workspace Report Error Discuss

0 2124
Q:

Project Communications Management

What are the Project Management Processes included in the Project Communications Management?

Answer

Communications planning - Determining the information and communications needs of the project stakeholders.


Information Distribution - Making needed information available  to project stakeholders in a timely manner.


Performance Reporting - Collecting and distributing performance information. This includes status reporting, progress measurement, and forecasting.


Manage Stakeholders - Managing communications to satisfy the requirements of and resolve issues with project stakeholders.

Report Error

View answer Workspace Report Error Discuss

0 2124