Questions

Q:

Southerners who were for redemption wanted which of the following?

A) remove blacks from politics B) remove republicans from politics
C) hold political power D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:
Report Error

View Answer Report Error Discuss

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

0 2078
Q:

A watch is listed for Rs.230 and is sold at a discount of 12%, then the sale price of the watch is

A) Rs.27.6 B) Rs.276
C) Rs.202.4 D) Rs.257.6
 
Answer & Explanation Answer: C) Rs.202.4

Explanation:
Report Error

View Answer Report Error Discuss

1 2078
Q:

Which Governor General abolished the 'Sati System' in India?

A) Lord Canning B) Lord Ripon
C) Lord Wiliam Bentinck D) Lord Dalhousie
 
Answer & Explanation Answer: C) Lord Wiliam Bentinck

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History
Exam Prep: Bank Exams

3 2076
Q:

The First battle of which war was the Battle of Alma?

A) Creek war B) Crimean war
C) Korean war D) Chinese war
 
Answer & Explanation Answer: B) Crimean war

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World History

2 2076
Q:

When was Zoroastrianism founded?

A) 4th century BCE B) 6th century BCE
C) 8th century BCE D) 10th century BCE
 
Answer & Explanation Answer: B) 6th century BCE

Explanation:

Zoroastrianism is one of the world's oldest extant religions. It is the ancient pre-Islamic religion of Iran that survives there in isolated areas and, more prosperously, in India, where the descendants of Zoroastrian Iranian (Persian) immigrants are known as Parsis, or Parsees.

 

The Iranian prophet and religious reformer Zarathustra flourished before the 6th century BCE more widely known outside Iran as Zoroaster is traditionally regarded as the founder of the religion.

 

Zoroastrianism contains both monotheistic and dualistic features. It likely influenced the other major Western religions—Judaism, Christianity, and Islam.

Report Error

View Answer Report Error Discuss

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

1 2076
Q:

Swap two variables without using third variable.

Answer

#include<stdio.h>
int main(){
    int a=5,b=10;
    a=b+a;
    b=a-b;
    a=a-b;
    printf("a= %d  b=  %d",a,b);
}

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2076
Q:

In loading programs into memory, what is the difference between load-time dynamic linking and run-time dynamic linking?

Answer

For load-time dynamic linking: Load module to be loaded is read into memory. Any reference to a target external module causes that module to be loaded and the references are updated to a relative address from the start base address of the application module.


With run-time dynamic loading: Some of the linking is postponed until actual reference during execution. Then the correct module is loaded and linked.

Report Error

View answer Workspace Report Error Discuss

0 2076
Q:

What is process synchronization?

Answer

A situation, where several processes access and manipulate the same data concurrently and the outcome of the execution depends on the particular order in which the access takes place, is called race condition. To guard against the race condition we need to ensure that only one process at a time can be manipulating the same data. The technique we use for this is called process synchronization.

Report Error

View answer Workspace Report Error Discuss

1 2075