Searching for ":"

Q:

The ratio of water and alcohol in two different containers is 2:3 and 4:5. In what ratio we are required to mix the mixtures  of two containers in order to get the new mixture in which the ratio of alcohol and water be 7:5?

A) 7:3 B) 5:3
C) 8:5 D) 2:7
 
Answer & Explanation Answer: B) 5:3

Explanation:

W1:A1  W2:A2  ..... WN:AN

  2 : 3                   4 : 5                    5 : 7 

 

W1W1+A1 = 25 W2W2+A2=49  WNWN+AN = 512

= 72/180

= 80/180

= 75/180  

                     

 

 =>     5   :   3

 

Therefore, the ratio is  5: 3

Report Error

View Answer Report Error Discuss

Filed Under: Alligation or Mixture
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

Q:

In the 75 litres of mixture of milk and water, the ratio of milk and water is 4:1. The quantity of water required to make the ratio of milk and water 3:1 is 

A) 1 litre B) 3 litres
C) 4 litres D) 5 litres
 
Answer & Explanation Answer: D) 5 litres

Explanation:

Total quantity of mixture = 75 litre

Milk  :  Water  =  4  :  1   

            

                   3       :       1

Report Error

View Answer Report Error Discuss

Filed Under: Alligation or Mixture

Q:

What is hierarchy relationship in a dimension. whether it is: 1) 1:1 2) 1:m 3) m:m

Answer

1:m

Report Error

View answer Workspace Report Error Discuss

Q:

Compare Error Detection and Error Correction:

Answer

The correction of errors is more difficult than the detection. In error detection, checks only any error has occurred. In error correction, the exact number of bits that are corrupted and location in the message are known. The number of the errors and the size of the message are important factors.

Report Error

View answer Workspace Report Error Discuss

Q:

Four of the following five are alike in a certain way and so form a group. which one does not belong to that group?

1. Robust : Weak      2. Chaos : Peace    3. Cruel : kind    4. Sink : Float    5. Abduct : Kidnap

Answer

Answer : (5)


The first four pairs indicate opposite of one another, whereas (5) is a pair of words having the same meaning.

Report Error

View answer Workspace Report Error Discuss

Subject: Classification

Q:

In a certain code language "TEARS" is written as "UGDVX", then "SMILE" would be written as:

A) TOLPJ B) TOLNG
C) TOJPJ D) TOKNH
 
Answer & Explanation Answer: A) TOLPJ

Explanation:

Movement of letters  is +1, +2, +3, +4, +5

 

Therefore, SMILE => TOLPJ

Report Error

View Answer Report Error Discuss

Filed Under: Coding and Decoding

Q:

Oracle Server supports two different forms of replication: Basic and Advanced replication. Explain difference between these.

Answer

Basic Replication : Basic replication is implemented using standard CREATE SNAPSHOT or CREATE MATERIALIZED VIEW statements. It can only replicate data and not procedures, indexes replication is always one-way, and snapshot copies are read only.


Advanced Replication : Advanced replication supports various configurations of updatable snapshot, multi-master and update anywhere replication. It is more difficult to configure but allows data and other database objects like indexes and procedures to be replicated.


 


Differences between Basic and Advanced replications:


- With basic replication, data replicas provide read-only access to the table data whereas advanced replication features extend the capabilities of basic read-only replication by allowing applications to update table replicas throughout a replicated database system.


- With Basic Replication applications can query data from local data replicas. On the other hand with advanced replication, data replicas anywhere in the system can provide both read and update access to a table's data.

Report Error

View answer Workspace Report Error Discuss

Subject: Oracle

Q:

Define cursor attributes: %FOUND, %NOTFOUND, %ROWCOUNT, and %ISOPEN

Answer

- %FOUND


 This is a Boolean variable which evaluates to TRUE if the last row is successfully fetched.


 


- %NOTFOUND


 This is a Boolean variable which evaluates to TRUE if the last row is not successfully fetched. This means there are no more rows to fetch.


 


- %ROWCOUNT


 Returns the number of rows fetched by the cursor.


 


- %ISOPEN


If the cursor is open, it evaluates to TRUE else FALSE.

Report Error

View answer Workspace Report Error Discuss

Subject: Oracle