Questions

Q:

Which is the highest peak in Andaman and Nicobar islands?

A) Mount Koya B) Mount Diavolo
C) Saddle Peak D) Mount Thuiller
 
Answer & Explanation Answer: C) Saddle Peak

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography
Exam Prep: Bank Exams

2 2111
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 2111
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 2111
Q:

What is the difference in writing the test cases for Integration testing and system testing?

Answer

Integration testing is done at module level when various modules are integrated with each other to form a system or sub-system. Its main purpose is to ensure that interfaces between various modules are working properly; i.e. modules which are working individually are also working correctly together.


System testing is done on a complete, integrated system to evaluate the system’s compliance with its specified requirements. It validates that the system meets its functional and non-functional requirements.


From these definitions, it is clear that the purpose of Integration and purpose of System Testing are different. Therefore, Integration test cases focus more on the interfaces between modules (interface integrity) - the data transfer and their interaction with each other. System test cases focus on testing the product as a whole; i.e. whether the functional, non-functional requirements of the System are met or not. Since System Testing is the final phase before delivery of the product, System test cases should pinpoint configuration related errors along with testing for performance, security, reliability etc.

Report Error

View answer Workspace Report Error Discuss

Subject: Software Testing

1 2110
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 2110
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 2110
Q:

What has no beginning end or middle?

Answer

Anything which is circular shape has no beginning, no middle or no end. 


The food like donuts have no beginning, end or middle. 

Report Error

View answer Workspace Report Error Discuss

Subject: Word Puzzles Exam Prep: TOEFL , GRE , GATE , CAT , Bank Exams , AIEEE
Job Role: Bank PO , Bank Clerk , Analyst

2 2110
Q:

A  photon  of  X-ray  has  energy  of  1  keV.  A photon of visible radiation has energy of 3 eV.  In  this  context,  which  one  of  the following statements is not correct?

A) The wavelength of X-ray photon is less than the wavelength of visible radiation photon. B) Both    the    photons    have    different energies.
C) The  speeds  of  both  the  photons  in vacuum are different D) The   frequency   of   X-ray   photon   is higher  than  the  frequency  of  visible radiation photon.
 
Answer & Explanation Answer: C) The  speeds  of  both  the  photons  in vacuum are different

Explanation:

The speed of all the electromagnetic radiation are always   same   and   equal   to   the numerical value 3 x 10^8m/sec.

Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams

0 2110