Questions

Q:

Who was the Emperor of Russia during Russia revolution ?

A) Nicholas I B) Nicholas II
C) Alexander I D) Alexander II
 
Answer & Explanation Answer: B) Nicholas II

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World History

1 2096
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.

The angry neighbours never passed from each other without making rude remarks.

A) passed on B) passed against
C) passed D) no improvement
 
Answer & Explanation Answer: C) passed

Explanation:

Here ‘passed each other’ means crossed each other’s path. No preposition is required by ‘passed’.

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2096
Q:

The "Operation Olympics" commences in

A) Karnataka B) Kerala
C) Jharkand D) Odisha
 
Answer & Explanation Answer: B) Kerala

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

1 2096
Q:

The goal of a statement of purpose is

A) To indicate what is expected to be accomplished in doing an experiment B) To calculate an average of two or more measurements
C) To list the materials needed for an experiment D) To demonstrate that a hypothesis is wrong
 
Answer & Explanation Answer: A) To indicate what is expected to be accomplished in doing an experiment

Explanation:

The goal of a statement of purpose is to indicate what is expected to be accomplished in doing an experiment.

Report Error

View Answer Report Error Discuss

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

1 2096
Q:

Upanishads are the ______________________

A) Great Epics B) Story Books
C) Source of Hindu Philosophy D) Law Books
 
Answer & Explanation Answer: C) Source of Hindu Philosophy

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

3 2095
Q:

The 3rd Indo-German Environment Forum was held in which city?

A) Pune B) New Delhi
C) Hyderabad D) Chennai
 
Answer & Explanation Answer: B) New Delhi

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

What are the minimal cost and minimal risk solution?

Answer

In binary representation there are some states that believed to be never occurred due to some particular functionality of a given circuit. If zero output is assigned to such states then it is called minimal risk solution as  we are resetting the formidable states which could be occurred accidentally. Another approach is to assigned a don't care to them so it results in lesser logic and hence is called minimal cost solution.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

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