Questions

Q:

In the following question, the sentence given with blank to be filled in with an appropriate word. Select the correct alternative out of the four and indicate it by selecting the appropriate option.
 
She does not agree, and ______ does Anita

A)

also

B)

even

C)

neither

D)

so

 
Answer & Explanation Answer: C)

neither



Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: TOEFL , GRE , CAT , Bank Exams
Job Role: Bank PO , Bank Clerk

0 2109
Q:

Which is the highest peak in Andaman and Nicobar islands?

A) Mount Koya B) Mount Diavolo
C) Saddle Peak D) Mount Thuiller
 
Answer & Explanation Answer: C) Saddle Peak

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography
Exam Prep: Bank Exams

2 2109
Q:

Beyond the _____________, the Himalayas bend sharply to the south and spread along the eastern boundary of India.

A) Zoji La Pass B) Dihang gorge
C) Bhutan border D) Nepal Border
 
Answer & Explanation Answer: B) Dihang gorge

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography
Exam Prep: Bank Exams

0 2109
Q:

Nucleic acid hybridization is based on the fact that

A) a chromosome is composed of complementary strands B) all cells have DNA
C) the strands of DNA can be separated D) pairing between complementary bases occurs
 
Answer & Explanation Answer: D) pairing between complementary bases occurs

Explanation:
Report Error

View Answer Report Error Discuss

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

1 2108
Q:

Which tennis player claims 100th ATP title of his career?

A) Rafael Nadal B) Andy Murray
C) Serena Williams D) Roger Federer
 
Answer & Explanation Answer: D) Roger Federer

Explanation:

Roger Federer was the tennis player who claims 100th ATP Association of tennis Professionals title of his career.

Report Error

View Answer Report Error Discuss

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

3 2108
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 2108
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 2108
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 2108