Searching for "0"

Q:

If the true discount on a certain sum due 6 months hence at 15% is Rs. 120, what is the banker's discount on the same sum for the same time and at the same rate?

A) 50 B) 129
C) 100 D) 160
 
Answer & Explanation Answer: B) 129

Explanation:

B.G. = S.I. on T.D.

          = Rs.(120 x 15 x 1/2 x 1/100)

  = Rs. 9.

(B.D.) - (T.D.) = Rs. 9.

 

B.D. = Rs. (120 + 9) = Rs. 129.

Report Error

View Answer Report Error Discuss

Filed Under: Banker's Discount

Q:

Should there be an upper age limit of 65 years for contesting parlimentary/Legislative Assembly elections? 

Arguments:

1. Yes. Generally ,people above the age of 65 years lose their dynamism and will power

2. No. The life span is also increased that people remain physically and mentally active even upto age of 80 years

A) Only 1 is true B) Only 2 is true
C) Either 1 or 2 is true D) Neither 1 nor 2 is true
 
Answer & Explanation Answer: D) Neither 1 nor 2 is true

Explanation:

The age of the person is no criteria for judging his mental capbilities and administrative qualities.So,none of the arguments holds strong

Report Error

View Answer Report Error Discuss

Q:

why 8085 processor, is called an 8 bit processor?

Answer

Because 8085 processor is 8 bit ALU (arithmetic logic review). Similarly 8086 processor has 16 bit ALU.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

Q:

main() {

int i;

printf("%d",scanf("%d",&i)); // value 10 is given as input here

}

A) 1 B) 2
C) 3 D) 4
 
Answer & Explanation Answer: A) 1

Explanation:

Scanf returns number of items successfully read and not 1/0. Here 10 is given as input which should have been scanned successfully. So number of items read is 1.

Report Error

View Answer Report Error Discuss

Filed Under: Java

Q:

what are the various flags used in 8085?

Answer

Sign flag, Zero flag, Auxillary flag, Parity flag, Carry flag.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

Q:

In 8085 name the 16 bit registers?

Answer

Stack pointer and Program counter all have 16 bits.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

Q:

Which interrupts is not level-sensitive in 8085?

Answer

TST 7.5 is a raising edge-triggering interrupt.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

Q:

What is program counter in 8085?

Answer

Program counter holds the address of either the first byte of the next instruction to be fetched for exectuion or the address of the next byte of a multi byte instruction, which has not beeb completely fetched. in both the cases it gets increnented automatically one by one as the instruction bytes get fetched. Also Program register keeps the address of the next instruction.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware