Q:

A boy multiplied 987 by a certain number and obtained 559981 as his answer. If in the answer both 98 are wrong and the other digits are correct, then the correct answer would be ?? please explain in detail

A) 553681 B) 555181
C) 555681 D) 556581
 
Answer & Explanation Answer: C) 555681

Explanation:
Report Error

View Answer Report Error Discuss

1 2397
Q:

What strategies are available for backing-up an Oracle database?

Answer

The backup strategies that are provided by Oracle are as follows:


- Logical backup using Exports and import.


- Physical file system backup


- RMAN Recovery Manger which is also known as incremental files system backup.

Report Error

View answer Workspace Report Error Discuss

Subject: Oracle

0 2397
Q:

Write an algorithm to separate all ones & zeroes in an array.

Answer

1. Have two indexes pointing to two ends of array, say i and j.


2. Approach towards each other with a check condition that they dont cross each other.


3. Each iteration of while loop, swap the numbers pointed by two indexes when num[i] index number is not equal to 1.


 


void sort()


{


     int a[]={1,0,0,0,1,1,0,1,0,1,0,0,1,0};


     int i=0;


     int j=13;


     int temp;


      while(j>i)


     {


          if(a[i]==1)


                 i++;


          if(a[j]==0)


                 j--;


          if(a[i]==0)


         {


                 temp=a[i];


                a[i]=a[j];


                a[j]=temp;


         }


     } 


     for(i=0;i<14;i++)


             Console.Write(a[i]+", ");


}


Output: 1,1,1,1,1,1,0,0,0,0,0,0,0

Report Error

View answer Workspace Report Error Discuss

0 2397
Q:

What command would you use to create a backup control file?

Answer

Alter database backup control file to trace

Report Error

View answer Workspace Report Error Discuss

3 2396
Q:

Brazil-based bus body maker Marcopolo has entered into a Joint venture with which Indian Company to manufacture fully-built buses and coaches?

A) Swaraz Mazda B) Ashok Leyland
C) Eicher D) Tata Motors
 
Answer & Explanation Answer: D) Tata Motors

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Business Awareness

8 2396
Q:

X2+X2 =

A) 4X B) 2X
C) 2X^2 D) X/2
 
Answer & Explanation Answer: C) 2X^2

Explanation:

Here the given expression, 

X2 + X is an algebraic expression. Here in this expression the terms are like terms. Now to add them, add their coefficients.

Here in the given expression, the like terms are two X

Hence, adding their coefficients i.e, 1 + 1 = 2

Therefore, 

 

X2 + X2 = 2X2.

Report Error

View Answer Report Error Discuss

Filed Under: Mathematical Operations
Exam Prep: GATE , CAT , Bank Exams , AIEEE
Job Role: IT Trainer , Bank PO , Bank Clerk , Analyst

14 2396
Q:

Which of the following describes the process of glycolysis?

A) It represents the first stage in the chemical oxidation of glucose by a cell. B) Breakdown of Glucose
C) Converts Glucose to Pyruvate D) All the above
 
Answer & Explanation Answer: D) All the above

Explanation:

Glycolysis is the chemical process that converts glucose C₆H₁₂O₆, into Pyruvate, CH₃COCOO− + H⁺.

    • It represents the first stage in the chemical oxidation of glucose by a cell.

 



    • The free energy released in this process is used to form the high-energy molecules ATP and NADH.

 Which_of_the_following_describes_the_process_of_glycolysis1556258113.png image

Report Error

View Answer Report Error Discuss

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

5 2396
Q:

Which of the following is the best description of the operation of split horizon?

A) Information about a route should not be sent back in the direction from which the original update came B) It splits the traffic when you have a large bus (horizon) physical network
C) It holds the regular updates from broadcasting to a downed link D) It prevents regular update messages from reinstating a route that has gone down
 
Answer & Explanation Answer: A) Information about a route should not be sent back in the direction from which the original update came

Explanation:

A split horizon will not advertise a route back to the same router it learned the route from.

Report Error

View Answer Report Error Discuss

Filed Under: CCNA

0 2396