Questions

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

How to clear Computer Motherboard CMOS password?

Answer

To clear the CMOS password you just remove the CMOS Battery or else you can also use a jumper settings.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

1 2058
Q:

Which one of the following is the highest altitude zoo in the world?

A) Cheyenne Mountain Zoo B) Pandit G. B. Pant High Altitude Zoo
C) Himalayan Zoological park, Gangtok D) Padmaja Naidu Himalayan Zoological Park
 
Answer & Explanation Answer: D) Padmaja Naidu Himalayan Zoological Park

Explanation:

Cheyenne Mountain Zoo  -  6,800 feet

Himalayan Zoological Park, Gangtok  -  5839.895 feet

Padmaja Naidu Himalayan Zoological Park  -  7000 feet

 

Report Error

View Answer Report Error Discuss

Filed Under: Longest, Shortest, Deepest
Exam Prep: Bank Exams

3 2057
Q:

What would be the output of the following program, if the array beigns at address 65486?

main()

{

    int arr[] = {12,14,15,23,45};

    printf ("%u %u", arr, &arr);

}

Answer

65486  65486

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

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

Who conquered Sind in 712 AD?

A) Arabs B) French
C) Greeks D) Mongols
 
Answer & Explanation Answer: A) Arabs

Explanation:

By 712 AD, Arabs conquered Sindh.

Report Error

View Answer Report Error Discuss

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

7 2057
Q:

Which was true of Pullman porters in the 1920s?

A) The porters could not start a union because it was illegal. B) The porters needed a union because they were not treated well.
C) The porters did not need a union because they made good money. D) The porters could not start a union because they were African American.
 
Answer & Explanation Answer: B) The porters needed a union because they were not treated well.

Explanation:
Report Error

View Answer Report Error Discuss

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

0 2057
Q:

Which cell feature is responsible for making proteins?

A) Chromosomes B) Nucleus
C) Ribosomes D) Cytoplasm
 
Answer & Explanation Answer: C) Ribosomes

Explanation:

Ribosomes comprise a complex macro molecular machine, found within all living cells, that serves as the site of biological protein synthesis. Ribosomes link amino acids together in the order specified by messenger RNA molecules.

 

which_cell_feature_is_responsible_for_making_proteins1558091245.jpg image

Report Error

View Answer Report Error Discuss

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

5 2057