Questions

Q:

Cultural transmission refers to the process of ______

 

 

A) cultural patterns moving from one society to another B) using the oral tradition
C) passing cultural patterns from one generation to another D) using writing to enshrine cultural patterns
 
Answer & Explanation Answer: C) passing cultural patterns from one generation to another

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: Bank Exams

1 43394
Q:

#define clrscr() 100

main()

{

clrscr();

printf( "%dn", clrscr() );

}

A) 100 B) 0
C) Compilation error D) Exception occurs
 
Answer & Explanation Answer: A) 100

Explanation:

Preprocessor executes as a seperate pass before the execution of the compiler. So textual replacement of clrscr() to 100 occurs.The input program to compiler looks like this :

main ()

{

100;

printf("%d\n",100);

}

Note: 100; is an executable statement but with no action. So it doesn't give any problem.

Report Error

View Answer Report Error Discuss

Filed Under: Programming

24 43368
Q:

DRDL stands for

A) Defence Research and Development Laboratory B) Department of Research and Development Laboratory
C) Differential Research and Documentation Laboratory D) None of the above
 
Answer & Explanation Answer: A) Defence Research and Development Laboratory

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

377 43357
Q:

Which  of  the  following  statements  about Bitcoin is/are correct?

1.It is a decentralized virtual currency.

2.It    is    generated    through    complex computer software systems.

3.The  Reserve  Bank  of  India  recognized it as a legal tender in January 2016.

Select  the  correct  answer  using  the  code given below.

A) 1 only B) 1 and 2 only
C) 2 and 3 only D) 1, 2 and 3
 
Answer & Explanation Answer: B) 1 and 2 only

Explanation:

Bitcoin is the world's first cryptocurrency,    a    form    of electronic   cash.It   is   the    first decentralized digital  currency:  the system   was   designed   to   work without   acentral   bankor   single administrator.Bitcoins    are    sent from  user  to  user  on  the peer-to-peer bitcoin network directly, without the need for intermediaries.  These  transactions are verified by network nodes through cryptography and recorded in a public distributed ledger called a block chain. Bitcoin was invented by an unknown person or group of people   using   the   name Satoshi Nakamoto. Bitcoins are not recognised  as  a  legal  tender  by Reserve Bank of India. 

Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy
Exam Prep: Bank Exams

0 43307
Q:

Name the vitamin whose deficiency causes excessive bleeding?

 

A) Vitamin A B) Vitamin B
C) Vitamin K D) Vitamin C
 
Answer & Explanation Answer: C) Vitamin K

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: Bank Exams

0 43303
Q:

Which of the following is a popular programming language for developing multimedia webpages.

A) COBOL B) Java
C) BASIC D) Assembler
 
Answer & Explanation Answer: B) Java

Explanation:

Java is a general-purpose computer-programming language that is concurrent, class-based, object-oriented, and specifically designed to have as few implementation dependencies as possible.

 

Which_of_the_following_is_a_popular_programming_language_for_developing_multimedia_webpages1548652333.jpg image


Java is used to develop mobile apps, web apps, desktop apps, games and much more...

Report Error

View Answer Report Error Discuss

180 43269
Q:

If  1 1 1 1 = R
    2 2 2 2 = T
    3 3 3 3 = E
    4 4 4 4 = N

 

Then  5 5 5 5 = ?

A) Y B) Z
C) T D) X
 
Answer & Explanation Answer: A) Y

Explanation:

If you add all the terms of the LHS of equality, then the last letter of the sum written in words would give you the RHS.

1 + 1 + 1 + 1 = 4 = FOUR

2 + 2 + 2 + 2 = 8 = EIGHT

3 + 3 + 3 + 3 = 12 = TWELVE

4 + 4 + 4 + 4 = 16 = SIXTEEN

 

So, following the same pattern.

5 + 5 + 5 + 5 = 20 = TWENTY

 

That gives us our answer to 5 5 5 5 =  "Y".

Report Error

View Answer Report Error Discuss

86 43254
Q:

Light is a ______________ wave.

 

A) longitudinal B) elastic
C) transverse D) mechanical
 
Answer & Explanation Answer: C) transverse

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams

0 43025