Searching for "L"

Q:

The banker's discount on Rs. 1650 due a certain time hence is Rs. 165. Find the true discount and the banker's gain.

A) 15 B) 20
C) 18 D) 13
 
Answer & Explanation Answer: A) 15

Explanation:

   Sum = [(B.D.xT.D.)/ (B.D.-T.D.)]

              = [(B.D.xT.D.)/B.G.]

T.D./B.G.  = Sum/ B.D.

   =1650/165

               =10

Thus, if B.G. is Re 1, T.D. = Rs. 10.

If B.D.is Rs. ll, T.D.=Rs. 10.

If B.D. is Rs. 165, T.D. = Rs. [(10/11)xl65]

            =Rs.150

 And, B.G. = Rs. (165 - 150) = Rs, 15.

Report Error

View Answer Report Error Discuss

Filed Under: Banker's Discount

Q:

A bill for Rs. 6000 is drawn on July 14 at 5 months. It is discounted on 5th October at 10%. Find the banker's discount, true discount, banker's gain and the money that the holder of the bill receives.

A) 4390 B) 6580
C) 5880 D) 5350
 
Answer & Explanation Answer: C) 5880

Explanation:

Face value of the bill = Rs. 6000.

Date on which the bill was drawn = July 14 at 5 months. Nominally due date =                  December 14.

Legally due date = December 17.

Date on which the bill was discounted = October 5.

Unexpired time  : Oct.               Nov.                Dec.

                                 26  +               30  +              17     = 73 days  =1/ 5Years

 

 B.D. = S.I. on Rs. 6000 for 1/5 year

= Rs.   (6000 x 10 x1/5 x1/100)= Rs. 120.

T.D. = Rs.[(6000 x 10 x1/5)/(100+(10*1/5))]

            =Rs.(12000/102)=Rs. 117.64.

B.G. = (B.D.) - (T.D.) = Rs. (120 - 117.64) = Rs. 2.36.

Money received by the holder of the bill = Rs. (6000 - 120) = Rs. 5880.

Report Error

View Answer Report Error Discuss

Filed Under: Banker's Discount

Q:

A function cannot be defined inside another function

A) TRUE B) FALSE
Answer & Explanation Answer: A) TRUE

Explanation:

A function cannot be defined inside the another function, but a function can be called inside a another function.

Report Error

View Answer Workspace Report Error Discuss

Subject: Programming

Q:

main()

{

float me = 1.1;

double you = 1.1;

if(me==you)

printf("yes");

else

printf("No");

}

A) Yes B) No
C) Both D) Compilation error
 
Answer & Explanation Answer: B) No

Explanation:

For floating point numbers (float, double, long double) the values cannot be predicted exactly. Depending on the number of bytes, the precession with of the value represented varies. Float takes 4 bytes and long double takes 10 bytes. So float stores 0.9 with less precision than long double.

Report Error

View Answer Report Error Discuss

Filed Under: Software Testing
Job Role: Software Architect

Q:

main()

{

char s[ ] = "man";

int i;

for( i=0; s[ i ]; i++)

printf( "n%c%c%c%c", s[ i ], *(s+i), *(i+s), i[s] );

}

A) mmmm aaaa nnnn B) aaaa mmmm nnnn
C) nnnn aaaa mmmm D) None
 
Answer & Explanation Answer: A) mmmm aaaa nnnn

Explanation:

s[i], *(i+s), *(s+i), i[s] are all different ways of expressing the same idea.Generally array name is the base address for that array. Here s is the base address. i is the index number/displacement from the base address. So, indirecting it with * is same as s[i]. i[s] may be surprising. But in the case of C it is same as s[i].

Report Error

View Answer Report Error Discuss

Filed Under: Programming

Q:

Which is the simplest file structure?

A) Sequential B) Indexed
C) Random D) None
 
Answer & Explanation Answer: A) Sequential

Explanation:

Sequential is the simplest file structure

Report Error

View Answer Report Error Discuss

Filed Under: Software Testing

Q:

Classify the Hashing Functions based on the various methods by which the key value is found.

Answer

Direct method,


 Subtraction method,


 Modulo-Division method,


 Digit-Extraction method,


 Mid-Square method,


 Folding method,


Pseudo-random method

Report Error

View answer Workspace Report Error Discuss

Subject: Technology

Q:

List out few of the applications that make use of Multilinked Structures?

Answer

Sparse matrix,


Index generation

Report Error

View answer Workspace Report Error Discuss

Subject: Technology