Searching for "eliminate"

Q:

______________ scheme launched by the Central Government to eliminate open defecation by constructing toilets for households, communities.

A) Swachh Bharat Abhiyan B) Gram Uday Se Bharat Uday Abhiyan
C) Stand up India scheme D) National RU URBAN Mission
 
Answer & Explanation Answer: A) Swachh Bharat Abhiyan

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics
Exam Prep: Bank Exams

Q:

In the question a statement is given, followed by two arguments, I and II. You have to consider the statement to be true even if it seems to be at variance from commonly known facts. You have to decide which of the given arguments, if any, is a strong argument.

Statement : Should songs be eliminated from Indian movies.

Argument I : Yes, Hollywood movies are hit despite having no songs.
Argument II : No, songs help increase length of the movie.

A) if only argument I is strong. B) if only argument II is strong.
C) if both I and II are strong. D) if neither I nor II is strong.
 
Answer & Explanation Answer: D) if neither I nor II is strong.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Statement and Arguments
Exam Prep: Bank Exams

Q:

The command to eliminate a table from a database is

A) REMOVE TABLE CUSTOMER; B) UPDATE TABLE CUSTOMER;
C) DELETE TABLE CUSTOMER; D) DROP TABLE CUSTOMER;
 
Answer & Explanation Answer: D) DROP TABLE CUSTOMER;

Explanation:

The SQL DROP TABLE statement is used to remove a table definition and all data, indexes,...

Report Error

View Answer Report Error Discuss

Q:

How do you eliminate duplicate values in DB2 SELECT?

Answer

Use SELECT DISTINCT ..... in DB2 query


 


The DISTINCT keyword can be used to return only distinct (different) values.


Syntax:


     SELECT DISTINCT column1,column2


      FROM table_name;


 

Report Error

View answer Workspace Report Error Discuss

Q:

How would you eliminate the warning generated on complaining the following program?

main()

{

  char far *scr;

  scr = 0xB8000000;

  *scr = 'A';

}

Answer

Use the typecast scr = (char far *) 0xB8000000;

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

Q:

The average of a set of whole numbers is 27.2. when the 20% of the elements are eliminated from the set of numbers then the average become 34. The number of elements in the new set of numbers can be :

A) 27 B) 35
C) 52 D) 63
 
Answer & Explanation Answer: C) 52

Explanation:

only (c) is correct since it is divisible by 4.

 

Let the original number of element  be x then the new no.of elements will be 

 

            4x5 = K                               

 

So K must be divisible by 4

 

Since,      x =  Kx5/4

Report Error

View Answer Report Error Discuss

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

Q:

To eliminate definition duplication, XML Schemas define:

A) an intersection table. B) global elements.
C) a normalized definition table. D) None of the above is correct.
 
Answer & Explanation Answer: B) global elements.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Database

Q:

What is the cause of thrashing? How does the system detect thrashing? Once it detects thrashing, what can the system do to eliminate this problem?

Answer

Thrashing is caused by under allocation of the minimum number of pages required by a process, forcing it to continuously page fault. The system can detect thrashing by evaluating the level of CPU utilization as compared to the level of multiprogramming. It can be eliminated by reducing the level of multiprogramming.


 


What_is_the_cause_of_thrashing_How_does_the_system_detect_thrashing_Once_it_detects_thrashing,_what_can_the_system_do_to_eliminate_this_problem1557490890.jpg image

Report Error

View answer Workspace Report Error Discuss