Questions

Q:

Which country is the largest producer of sugarcane in the world?

A) Brazil B) Russia
C) China D) India
 
Answer & Explanation Answer: A) Brazil

Explanation:

The country Brazil is the largest producer of sugarcane in the world.

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 2066
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 2065
Q:

Leonardo Da Vinci used drawings to explore ideas in

A) Mathematics B) Science
C) Art D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:
Report Error

View Answer Report Error Discuss

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

1 2065
Q:

What are the followers of Hinduism called

A) Brahmans B) Hindus
C) Sindhus D) Indus
 
Answer & Explanation Answer: B) Hindus

Explanation:

The followers of Hinduism are called Hindus.

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

Which state police has launched e-learning portal 'Nipun' for training its personnel?

A) Delhi B) Uttar Pradesh
C) Telangana D) Maharashtra
 
Answer & Explanation Answer: A) Delhi

Explanation:

Delhi state police has launched e-learning portal 'Nipun' for training all its police officers to give up to date information through specialized courses designed by experts.

Report Error

View Answer Report Error Discuss

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

2 2064
Q:

When hot water is placed into an empty water bottle, the bottle keeps its shape and does not soften. What type of plastic is the water bottle made from?

A) Thermoplastic B) PVC
C) Polyurethane D) Thermosetting
 
Answer & Explanation Answer: D) Thermosetting

Explanation:

Thermoset, or thermosetting, plastics are synthetic materials that strengthen during being heated, but cannot be successfully remouldedor reheated after their initial heat-forming. This contrasts withthermoplastics, which soften when heated and harden and strengthen after cooling. Thermoplastics can be heated, shaped and cooled as often as necessary without causing a chemical change, while thermosetting plastics will burn when heated after the initial moulding.

Report Error

View Answer Report Error Discuss

Filed Under: General Science
Exam Prep: Bank Exams

3 2064
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 2063
Q:

Stress is a factor that contributes to heart disease risk.

A) TRUE B) FALSE
Answer & Explanation Answer: A) TRUE

Explanation:

True, poorly controlled stress and anger can lead to heart attacks and strokes.

Report Error

View Answer Workspace Report Error Discuss

Subject: Biology
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk , Bank PO

2 2063