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

Explain the concept of the batched operating systems?

Answer

In batched operating system the users gives their jobs to the operator who sorts the programs according to their requirements and executes them. This is time consuming but makes the CPU busy all the time.

Report Error

View answer Workspace Report Error Discuss

1 2120
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 2119
Q:

The transfer of minerals from top soil to subsoil through soil­water is called?

A) Percolation B) Conduction
C) Leaching D) Transpiration
 
Answer & Explanation Answer: C) Leaching

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Science

2 2119
Q:

An ideal gas cannot be

A) liquified B) solidified
C) Both A & B D) None of the above
 
Answer & Explanation Answer: A) liquified

Explanation:

An ideal gas cannot be liquified because forces between the molecules are negligible.

Report Error

View Answer Report Error Discuss

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

2 2119
Q:

Which IIT has announced the launch of a full-fledged bachelor's programme in Artificial Intelligence (AI) technology, first for the country?

A) IIT Kanpur B) IIT Hyderabad
C) IIT Madras D) IIT Mumbai
 
Answer & Explanation Answer: B) IIT Hyderabad

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

In the given question, a statement divided into different segments is given. The first segment is fixed, rearrange the other segments to form a coherent statement.

The federation was keen on maintaining an/ exclusive membership profile and thus introduced (P)/ segregational policies adopted by premier organizations (Q)/ an invite- only policy for the new entrants (R)/ causing a sudden outcry against the (S)

A) PRSQ B) SRPQ
C) PQRS D) QSRP
 
Answer & Explanation Answer: A) PRSQ

Explanation:

'an' at the end of the first fixed segment indicates that Q, R and S can't follow the first segment. This leaves us with only one choice i.e. P. This eliminates options 2, 4, and 5.

There are only two such options: option A1and 3. Option 3 can be eliminated since part S ends with 'the' which can't be used as the end of the master statement. Hence, the correct sequence is PRSQ

Report Error

View Answer Report Error Discuss

Filed Under: English

1 2119
Q:

The law of increasing opportunity costs states that

A) along a production possibilites curve, increases in the production of one good make the production of that good easier and easier B) increases in wages cause increases in the costs of production
C) costs of production increases and then decreases D) along a production possibilities curve, increases in the production of one good require larger and larger sacrifices of the other good
 
Answer & Explanation Answer: D) along a production possibilities curve, increases in the production of one good require larger and larger sacrifices of the other good

Explanation:

Opportunity cost is the cost of other alternative choices for making your interested choice of work. Oppurtunity cost is also called as alternative cost.

For example on a holiday, you have two choices to do, either you can go to movie or a function. And if you chose to go to moavie, the oppurtunity cost of going to movie is the value that would have gotten if you had gone to function.

 

The law of increasing opportunity costs states that as you increase production of one good, the opportunity cost to produce an additional good will increase.

Report Error

View Answer Report Error Discuss

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

0 2119