Q:

The correct statement for a function that takes pointer to a float, a pointer to a pointer to a char and returns a pointer to a pointer to a integer is

A) int **fun(float**, char**) B) int *fun(float*, char*)
C) int ***fun(float*, char**) D) int ***fun(*float, **char)
 
Answer & Explanation Answer: C) int ***fun(float*, char**)

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: C++

3 6110
Q:

The Machkund project is a joint project of which two states?

 

A) West Bengal and Odisha   B) West Bengal and Bihar  
C) Odisha and Andhra Pradesh   D) Karnataka and Andhra Pradesh  
 
Answer & Explanation Answer: C) Odisha and Andhra Pradesh  

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography
Exam Prep: Bank Exams

2 6110
Q:

The compound interest earned by Sunil on a certain amount at the end of two years at the rate of 8% p.a. was Rs.2828.80. Find the total amount that Sunil got back at the end of two years in the form of principal plus interest earned  ?

A) Rs. 11828.80 B) Rs. 19828.80
C) Rs. 9828.80 D) Rs. 19328.80
 
Answer & Explanation Answer: B) Rs. 19828.80

Explanation:

Let the sum be Rs. P
P{ 1+81002- 1 } = 2828.80

 

It is in the form of  a2-b2 = a+ba-b

 

P(8/100)(2 + 8/100) = 2828.80

 

P = 2828.80 / (0.08)(2.08)

 

= 1360/0.08 = 17000

 

Principal + Interest = Rs. 19828.80

Report Error

View Answer Report Error Discuss

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

12 6110
Q:

Which revolutionary died after a 64 days fast in jail?

A) Jatin Das B) Pulin Das
C) Subhash Chandra bose D) Both A & B
 
Answer & Explanation Answer: A) Jatin Das

Explanation:

Jatindra Nath Das, also known as Jatin Das, was a revolutionary and Independence activist. He embraced death in Lahore jail after fasting for 64 days in 1929 at the age of 24 yrs.

 

Report Error

View Answer Report Error Discuss

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

13 6109
Q:

What do the functions atoi(), itoa() and gcvt () do? Show how would you use them in a program.

Answer

atoi()         Converts a string to an integer.


itoa()         Convert an integer to a string


gcvt()        Converts a floating-point number to a string


 


#include "stdlib.h"


main()


{


      char s[] = "12345";


      char buffer [15], string[20];


      int i;


      


      i = atoi (s);


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


 


       gcvt (20.141672, 4, buffer);


       printf ("\n%s", buffer);


 


       itoa(15, string,2);


        printf ("\n%s", string);


}

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

2 6109
Q:

OCR stands for

A) Optical Character Recognition B) Optical CPU Recognition
C) Optimal Character Rendering D) Other Character Restoration
 
Answer & Explanation Answer: A) Optical Character Recognition

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: Bank Exams

10 6109
Q:

If 18$6 = 6, 8$2 = 3 and 8$4 = 2, then find the value of 18$12 = ?

 

A) 3 B) -8
C) 4 D) 6
 
Answer & Explanation Answer: A) 3

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Coding and Decoding
Exam Prep: Bank Exams

1 6107
Q:

A research team of 6 people is to be formed from 10 chemists,5 politicians, 8 economists and 15 biologists.How many teams have atleast 5 chemists?

A) 7350 B) 6400
C) 6379 D) 7266
 
Answer & Explanation Answer: D) 7266

Explanation:

10C5*28C1*10C6 = 7266

Report Error

View Answer Report Error Discuss

1 6102