Questions

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 2096
Q:

How do you differentiate the roles of Quality Assurance Manager and Project Manager?

Answer

Quality Assurance Manager (QA Manager) defines the process to be followed at each phase of SDLC. He defines the standards to be followed, the documents to be maintained and sets the standard for the product.


Where as it is the Project Manager’s responsibility to ensure that the things defined by QA manager are being implemented. He develops the product from start to finish with his team and ensures that the product which is to be rolled out is Defect free and it reaches the standards and views defined by QA Manager.


QA managers can audit the process for certain time periods which are being handled by the Project Manager.

Report Error

View answer Workspace Report Error Discuss

Subject: Software Testing

0 2096
Q:

The first Olympiad was held in Greece in the year

Answer

776 BC

Report Error

View answer Workspace Report Error Discuss

Subject: World History

2 2095
Q:

Project Quality Management - Processes

Describe the Inputs, Tools and Techniques , Outputs included in the Perform Quality Assurance?

Answer

I. Inputs



  • Quality management plan

  • Quality metrics

  • Process improvement plan 

  • Work performance information 

  • Approved change requests

  • Quality control measurements 

  • Implemented change requests

  • Implemented corrective actions 

  • Implemented defect repair

  • Implemented preventive actions 


II. Tools and Techniques



  • Quality planning tools and techniques

  • Quality audits

  • Process analysis 

  • Quality control tools and techniques


III. Outputs



  • Requested changes

  • Recommended corrective actions

  • Organizational process assets (updates)

  • Project management plan (updates)

Report Error

View answer Workspace Report Error Discuss

0 2095
Q:

In the following question, a sentence has been given in Active/Passive voice. Out of four alternatives suggested, select the one which best expresses the same sentence in Passive/Active voice.
Somebody told me that there had been a robbery in the jewellery exhibition.

A) I was informed that there was a robbery in the jewellery exhibition. B) I was told by somebody that there has been a robbery in the jewellery exhibition.
C) I was told by somebody about a robbery in the jewellery exhibition. D) I was told about a robbery in the jewellery exhibition.
 
Answer & Explanation Answer: B) I was told by somebody that there has been a robbery in the jewellery exhibition.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

1 2095
Q:

A body of 4.0 kg is lying at rest. Under the action of a constant force, it gains a speed of 5 m/s. The work done by the force will be____.

A) 50J B) 30J
C) 20J D) 40J
 
Answer & Explanation Answer: A) 50J

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams

0 2095
Q:

The Waste to Wonder park is in?

A) Pune B) Gujarat
C) Delhi D) Hyderabad
 
Answer & Explanation Answer: C) Delhi

Explanation:

The "Waste to Wonder” park is in south Delhi.

Report Error

View Answer Report Error Discuss

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

3 2094
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 2094