Searching for "First"

Q:

The first step in solving an Ethical Dilemma is to

A) identify the alternatives B) identify an etical situation and ethical issues involved
C) weigh the impact of each alternative on various stakeholders. D) recognize and analyze the principal elements in the situation.
 
Answer & Explanation Answer: B) identify an etical situation and ethical issues involved

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Accounts Payable
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

Q:

Find the compound interest on Rs. 6,500 for 4 years if the rate of interest is 10% p.a. for the first 2 years and 20% per annum for the next 2 years? 

A) Rs. 3845 B) Rs. 4826
C) Rs. 5142 D) Rs. 4415
 
Answer & Explanation Answer: B) Rs. 4826

Explanation:

We know the formula for calculating

The compound interest C = P1 + r100n - 1 where P = amount, r = rate of interest, n = time

Here P = 5000, r1 = 10, r2 = 20

Then C = 65001 + 101002 x 1 + 201002 - 1= 6500 x 18562500= 65 x 185625

C = Rs. 4826.

Report Error

View Answer Report Error Discuss

Q:

Derivative of sinx by first principle?

A) -sinx B) -cosx
C) cosx D) sinx
 
Answer & Explanation Answer: C) cosx

Explanation:

Screenshot_(1)1519127168.png image

 

Thus, the derivative of sinx by first principle is cosx.

Report Error

View Answer Report Error Discuss

Q:

Jio is a big shot at reducing the cost of Internet access in India. The U.S., despite being the richest country in the world, lags far behind in terms of cost and penetration of Internet access. Cheap access to the Internet is an important step in bridging the access gap – access to good education, good healthcare, etc. But the market reaction to Jio is similar to the U.S. market’s reaction to firms announcing their intention to diversify.

(A) The final group of losers is the current shareholders of RIL. On announcement of Jio, the stock price of RIL fell.

(B) It shows that the market’s short-term reaction is usually proven correct in the long-run.

(C) On losing end, the first groups of losers are the shareholders of other telecom companies.

(D) The large amount of revenue the Government of India gets from auctioning off the nation’s natural resources is not necessarily a good thing because the Government does not have a stellar track record when it comes to spending the money. A large fraction of Government spending is wasted.

(E) The second loser is the Government of India. The big money the Indian Government was raking in selling cellular bandwidth was actually coming from the pockets of the cellular consumers. 

(F) The first obvious winners of this scheme are customers.

(G) The second winner is Mr. Ambani; he can potentially make a lasting impact as the man who brought Internet to millions of Indians.

 

Question:

Which of the following supports the decision of other companies opposing Reliance JIO Scheme?

A) Only A B) Both A & B
C) Only C D) Both C & E
 
Answer & Explanation Answer: D) Both C & E

Explanation:

As the arguments C and E states that other companies are on the losing end with this scheme, it is the only appropriate answer to this question.

Report Error

View Answer Report Error Discuss

Q:

There are 5 consecutive odd numbers. If the difference between square of the average of first two odd number and the of the average last two odd numbers is 396, what is the smallest odd number?

A) 29 B) 27
C) 31 D) 33
 
Answer & Explanation Answer: A) 29

Explanation:

Let the five consecutive odd numbers be x-4, x-2, x, x+2, x+4

According to the question,

Difference between square of the average of first two odd number and the of the average last

two odd numbers is 396

i.e, x+3 and x-3

x + 32 - x - 32 = 396 x2 + 9 + 6x - x2 + 6x - 9 = 396 12x = 396 x = 33

 

Hence, the smallest odd number is 33 - 4 = 29.

Report Error

View Answer Report Error Discuss

Filed Under: Problems on Numbers
Exam Prep: AIEEE , Bank Exams , CAT , GATE
Job Role: Analyst , Bank Clerk , Bank PO

Q:

The First step of Bacterial Replication is

A) Pinching of the plasma membrane B) Separation of daughter cells
C) Attachment of the DNA to the plasma membrane D) DNA Replication
 
Answer & Explanation Answer: D) DNA Replication

Explanation:

The First step of Bacterial Replication is DNA Replication.

DNA must be copied in order to proceed.

Report Error

View Answer Report Error Discuss

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

Q:

Which Noble Gas has the highest First Ionization Energy?

A) Neon B) Helium
C) Argon D) Xenon
 
Answer & Explanation Answer: B) Helium

Explanation:

Helium has the highest First Ionization Energy in the Noble Gases group.

Ionization Energy ::

Ionisation energy is the energy required to remove one mole of electrons from one mole of gaseous atoms. Atoms are more stable when they have full valence shells.

Noble Gases have a very stable electron configuration, therefore, they have the highest amount of ionization energy within their periods. It decreases down a family because electrons farther from the nucleus are easier to remove.

Ionization Energy levels of Noble Gases group in Descending Order :: He, Ne, Ar, Kr, Xe, Rn

Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: AIEEE , Bank Exams , GATE
Job Role: Analyst , Bank Clerk , Bank PO

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