Questions

Q:

A broad, low embankment built up along the banks of a river channel during floods is called

A) Delta B) Levee
C) Flood Plain D) Dune
 
Answer & Explanation Answer: B) Levee

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams

1 2209
Q:

Which Chinese space probe touched down on the far side of the moon?

A) Voyager 2 B) Juno
C) Mars Pathfinder D) ChangE4
 
Answer & Explanation Answer: D) ChangE4

Explanation:
Report Error

View Answer Report Error Discuss

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

1 2209
Q:

Which Indian airline gets India’s first A321Neo plane?

A) Indian Airlines B) Spice Jet
C) Indi Go D) None of the above
 
Answer & Explanation Answer: C) Indi Go

Explanation:

Indian airline INDIGO gets India’s first A321Neo plane.

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

In the following question, out of the four alternatives, select the alternative which best expresses the meaning of the idiom/phrase.
ethnic cleansing

A) a social revolution where negative aspects of a culture are removed B) to perform mass religious conversions
C) the mass killing of members of one ethnic group D) removal of all signs of culture from a society
 
Answer & Explanation Answer: C) the mass killing of members of one ethnic group

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

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

By increasing the price of entry ticket to a fair in the ratio 5:7, the number of visitors to the fair has decreased in the ratio 11:9. In what ratio has the total collection increased or decreased?

A) increased in the ratio 55:63 B) decreased in the ratio 63:55
C) increased in the ratio 45:77 D) decreased in the ratio 77:45
 
Answer & Explanation Answer: A) increased in the ratio 55:63

Explanation:
Report Error

View Answer Report Error Discuss

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