Q:

Fill in the blanks

sinA = _____ x cosA

 

A) sinA B) tanA
C) cotA D) cosA
 
Answer & Explanation Answer: B) tanA

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Simplification
Exam Prep: Bank Exams

1 4799
Q:

What is 3 Way Matching?

Answer

3 way matching is to compare three documents i.e., 


1. Purchase order


2. Receipt of Items/Packing slip 


3. Invoice. 


For example, if we Order for 50 Items in purchase order and received 40 Items only instead of 50 items. But we received invoice for 50 items. After comparing the three documents we pay for only 40 Items..


 

Report Error

View answer Workspace Report Error Discuss

Subject: Accounts Payable

5 4799
Q:

If A = log321875 and B = log2432187, then which one of the following is correct?

A) A B) A=B
C) A>B D) can't be determined
 
Answer & Explanation Answer: B) A=B

Explanation:

 Given A = log321875 and B = log2432187

B = log352187 = log321875

=> A

Therefore, A = B

   

Report Error

View Answer Report Error Discuss

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

7 4797
Q:

A place where bees are kept in called

A) Apiary B) Hive
C) Sanctuary D) Mole
 
Answer & Explanation Answer: A) Apiary

Explanation:

a_place_where_bees_are_kept_in_called1559565045.jpg image

A place where honey bees are kept in called an Apiary or a bee yard.

Report Error

View Answer Report Error Discuss

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

8 4797
Q:

Multiplicative inverse of 0

A) 0 B) 1
C) infinity D) None of the above
 
Answer & Explanation Answer: D) None of the above

Explanation:

In the real numbers, zero does not have a reciprocal because no real number multiplied by 0 produces 1 (the product of any number with zero is zero).

 

Hence, 0 doesn't have any multiplicative inverse.

Report Error

View Answer Report Error Discuss

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

1 4796
Q:

"Good Samaritan Policy" has been launched by which state / union territory government?

A) Delhi B) Karnataka
C) Telangana D) Gujarath
 
Answer & Explanation Answer: A) Delhi

Explanation:

The Delhi government has recently approved 'Good Samaritan Policy' under which monetary incentive of Rs 2,000 and appreciation certificate will be given to people who help road accident victims in the national capital. The scheme is intended to encourage people to take accident victims in emergency situation to hospitals so that someone’s life could be saved.

Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams , CAT , GATE , GRE
Job Role: Bank Clerk , Bank PO

18 4796
Q:

what will be the output of the following code?

class Value
{
    public int i = 15;
}
public class Test
{
    public static void main(String argv[])
    {
        Test t = new Test();
        t.first();
    }
    public void first()
    {
        int i = 5;
        Value v = new Value();
        v.i = 25;
        second(v, i);
        System.out.println(v.i);
    }
    public void second(Value v, int i)
    {
        i = 0;
        v.i = 20;
        Value val = new Value();
        v =  val;
        System.out.println(v.i + " " + i);
    }
}

A) 15 0 2 B) 15 0 0
C) 15 20 0 D) 15 0 20
 
Answer & Explanation Answer: D) 15 0 20

Explanation:
Report Error

View Answer Report Error Discuss

3 4795
Q:

A school committee of 5 is to be formed from 12 students.How many committees can be formed if John must be on the committee?

A) 11P4 B) 11C4
C) 11P5 D) 11C5
 
Answer & Explanation Answer: B) 11C4

Explanation:

If John must be on the committee,we have 11 students remaining,out of which we choose 4. So,11C4

Report Error

View Answer Report Error Discuss

0 4795