Questions

Q:

What is market risk?

Answer

It refers to the possibility for an investor to experience  losses due to  factors that affect the overall performance of the financial markets. Market risk cannot be eliminated through diversification, though it can be hedged against. The sources of market risk include natural disasters, recessions, political turmoil, changes in interest rates and terrorist attacks.

Report Error

View answer Workspace Report Error Discuss

0 2698
Q:

When is World Day for Water, recognised by the UN observed?

A) January 21 B) March 22
C) October 27 D) February 24
 
Answer & Explanation Answer: B) March 22

Explanation:
Report Error

View Answer Report Error Discuss

0 2698
Q:

The persistence of learning over time most clearly depends on

A) memory B) visual encoding
C) chunking D) shallow processing
 
Answer & Explanation Answer: A) memory

Explanation:
Report Error

View Answer Report Error Discuss

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

0 2698
Q:

which of the following has the longest wavelength

A) Infrared radiation B) γ-radiation
C) Ultraviolet radiation D) Visible radiation
 
Answer & Explanation Answer: A) Infrared radiation

Explanation:

Infrared radiation

Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst

4 2697
Q:

Garden inside the Taj Mahal is known as _____.

A) Mughal Garden B) Taj Bageecha
C) Taj Mahal Garden D) Mahal Bageecha
 
Answer & Explanation Answer: A) Mughal Garden

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams

0 2697
Q:

How many non regional members are there in the African development Bank

A) 24 B) 23
C) 25 D) 27
 
Answer & Explanation Answer: C) 25

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

1 2697
Q:

Answer the following Program

#define CHARSIZE 8

#define MASK(y) (1 << y % CHARSIZE)

#define BITSLOT (y) (y / CHARSIZE)

#define SET(x,y) ( x[BITSLOT(y)] = MASK(y) )

#define TEST(x,y) ( x[BITSLOT(y)] & MASK(y) )

#define NUMSLOTS(n) ((n + CHARSIZE - 1) / CHARSIZE)

 

Give the above macros how would you

1. declare an array arr of 50 bits

2. put the 20th bit on

3. test whether the 40th bit is on or off

Answer

1. char arr[NUMSLOTS(50)];


2. SET (arr, 20);


3. if (TEST (arr, 40))

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2696
Q:

In 8085 which is called as High order / Low order Rigister?

Answer

Flag is called as Low order rigister & Accumulator is called as High order Rigister.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

1 2696