Questions

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

Cost price of a pen is 50 Rs. and that of notebook is 140 Rs. If pen is sold at 200% profit, then to purchase 10 such note books how many pens are required to sell if only profit money is used to buy notebooks?

A) 14 B) 18
C) 15 D) 20
 
Answer & Explanation Answer: A) 14

Explanation:

C.P. of 10 note books ⇒ 140 × 10 = 1400 Rs.
Profit on selling one pen ⇒ 50×200/100 = Rs 100
Number of pen required ⇒ 1400/100 = 14

Report Error

View Answer Report Error Discuss

0 2091
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 2091
Q:

What are the different functions of Scheduler?

Answer

Scheduler deals with the problem of deciding which of the process in the ready queue is to be allocated the CPU. Short Term Schedulers, Long Term Schedulers

Report Error

View answer Workspace Report Error Discuss

1 2090
Q:

Project Communications Management - Processes

Describe the Inputs, Tools and Techniques , Outputs included in the Performance Reporting?

Answer

I. Inputs



  • Work performance information

  • Performance measurements

  • Forecasted completion

  • Quality control measurements

  • Project management plan


                - Performance measurement baseline



  • Approved change requests

  • Deliverables


II. Tools and Techniques



  • Information presentation tools

  • Performance information gathering and compilation

  • Status review meetings

  • Time reporting systems

  • Cost reporting systems


III. Outputs



  • Performance reports

  • Forecasts

  • Requested changes

  • Recommended corrective actions

  • Organizational process assets (updates)

Report Error

View answer Workspace Report Error Discuss

0 2090
Q:

Common styles of leadership include

A) Autocratic leadership B) Transactional leadership
C) Democratic leadership D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

There are 9 common styles of leadership. They are:

 

Transformational leadership

Transactional leadership

Servant leadership

Autocratic leadership

Laissez-faire leadership

Democratic leadership

Bureaucratic leadership

Charismatic leadership.

Report Error

View Answer Report Error Discuss

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

2 2090
Q:

Which city is the venue of the World Government Summit 2019?

A) Dubai B) Hyderabad
C) New York D) Singapore
 
Answer & Explanation Answer: A) Dubai

Explanation:
Report Error

View Answer Report Error Discuss

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

0 2090