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

How many commands are there in the Indian Navy?

A) 3 B) 4
C) 5 D) 7
 
Answer & Explanation Answer: A) 3

Explanation:

The Indian Navy operates three operational Commands. They are

 

1. Western Naval Command - Mumbai


2. Eastern Naval Command  - Vishakhapatnam


3. Southern Naval Command - Kochi

Report Error

View Answer Report Error Discuss

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

3 2119
Q:

Name the President of India who was elected unopposed?

A) Dr. Neelam Sanjiva Reddy B) Dr. Zakir Husain
C) Dr. Shankar Dayal Sharma D) Dr. Fakhruddin Ali Ahmed
 
Answer & Explanation Answer: A) Dr. Neelam Sanjiva Reddy

Explanation:

The President of India who was elected unopposed was Dr. Neelam Sanjiva Reddy.

Report Error

View Answer Report Error Discuss

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

1 2118
Q:

For a certain reaction,DGq = -45 kJ/mol and DHq= -90 kJ/mol at 0°C. What is the minimum temperature at which the reaction will become spontaneous, ifDHq and DSq are independent of temperature?

A) 273 K B) 298 K
C) 546 K D) 596 K
 
Answer & Explanation Answer: C) 546 K

Explanation:

T = 273 °K

Using the formula,

DGq = DHq –TDS

-45 = -90 –273 DS

DS = 0.164

Now since DHq and DSq are independent,T2= DH/DS = 45/0.164 = 273°K

Required Temp = 273 + 273 = 546°K

Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams

0 2118
Q:

A sentence has been given in Active/Passive Voice. Out of the four given alternatives, select the one which best expresses the same sentence in Passive/Active Voice.

 

George Orwell wrote 1984.

 

A) 1984 is wrote by George Orwell. B) 1984 was wrote by George Orwell.
C) 1984 was written by George Orwell. D) 1984 written by George Orwell.
 
Answer & Explanation Answer: C) 1984 was written by George Orwell.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams , GRE , TOEFL

0 2118
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 2118
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 2118