Questions

Q:

Look at the underlined part of each sentence. Below each sentence are given three possible substitutions for the underlined part. If one of them (a), (b) or (c) is better than the underlined part, indicate your response on the Answer Sheet against the corresponding letter. If none of the substitutions imporves the sentence, indicate (d) as your response on the Answer Sheet.

By 8.00 in the morning he wrote four letters to his friends.

A) had written B) had been writing
C) was writing D) No improvement
 
Answer & Explanation Answer: A) had written

Explanation:

As the task was completed by 8 am the sentence is in past perfect tense, ‘had written’ will be the correct use.

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2121
Q:

A person who grows crops

A) Sharecropper B) Freedman
C) Farmer D) Slave
 
Answer & Explanation Answer: C) Farmer

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

1 2121
Q:

Read the passage carefully and select the best answer to each question out of the given four alternatives.

 

The conclusion of World Trade Organization’s 11th biennial ministerial conference at Buenos Aires was worrisome. From an Indian standpoint, there was no loss as status quo continues in the most important issue: the right to continue the food security programme by using support prices. But the inability of the negotiators to reach even one substantive outcome suggests that WTO’s efficacy is under question. As a 164-country multilateral organisation dedicated to crafting rules of trade through consensus, WTO represents the optimal bet for developing countries such as India. Strengthening WTO is in India’s best interest.

 

Perhaps the biggest threat to WTO’s efficacy today is the attitude of the US. The world’s largest economy appears to have lost faith in the organisation and has begun to undermine one of its most successful segments, the dispute redressal mechanism. This is significant as the US has been directly involved in nearly half of all cases brought to WTO. Separately, large groups of countries decided to pursue negotiations on e-commerce, investment facilitation and removal of trade obstacles for medium and small scale industries. By itself this should not weaken WTO. But it comes at a time when there is growing frustration with gridlock at WTO.

 

India did well to defend its position on its food security programme. The envisaged reform package which will see a greater use of direct cash transfers to beneficiaries will be in sync with what developed countries do. But it’s important for India to enhance its efforts to reinvigorate WTO. In this context, India’s plan to organise a meeting of some countries early next year is a step in the right direction. WTO represents the best available platform to accommodate interests of a diverse set of nations. Therefore, India should be at the forefront of moves to fortify it.

 

Which of the following nation is keen to fortify its interest on WTO platform?

 

A) USA B) Japan
C) Russia D) India
 
Answer & Explanation Answer: D) India

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

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

How do you differentiate the roles of Quality Assurance Manager and Project Manager?

Answer

Quality Assurance Manager (QA Manager) defines the process to be followed at each phase of SDLC. He defines the standards to be followed, the documents to be maintained and sets the standard for the product.


Where as it is the Project Manager’s responsibility to ensure that the things defined by QA manager are being implemented. He develops the product from start to finish with his team and ensures that the product which is to be rolled out is Defect free and it reaches the standards and views defined by QA Manager.


QA managers can audit the process for certain time periods which are being handled by the Project Manager.

Report Error

View answer Workspace Report Error Discuss

Subject: Software Testing

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

When was World Meterological Organisation estabilished?

A) 1950 B) 1952
C) 1956 D) 1949
 
Answer & Explanation Answer: A) 1950

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

5 2120