Questions

Q:

Which is the best definition of Federalism?

A) Federalism encourages the practice of direct democracy at the state level rather than the national level. B) The quality of federal supremacy in government.
C) A happy combination of mixed government. D) Federalism enables the state and the national government to share power.
 
Answer & Explanation Answer: D) Federalism enables the state and the national government to share power.

Explanation:

Federalism ::

Federalism is a system based upon democratic rules and institutions in which the power to govern is shared between national and provincial/state governments, creating what is often called a federation.

 

Federalism is a political concept in which a group of members are bound together with a governing representative head. 

Federalism enables the state and the national government to share power.

Report Error

View Answer Report Error Discuss

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

3 2809
Q:

Answer the following Program

#define CHARSIZE 8

#define MASK(y) (1 << y % CHARSIZE)

#define BITSLOT (y) (y / CHARSIZE)

#define SET(x,y) ( x[BITSLOT(y)] = MASK(y) )

#define TEST(x,y) ( x[BITSLOT(y)] & MASK(y) )

#define NUMSLOTS(n) ((n + CHARSIZE - 1) / CHARSIZE)

 

Give the above macros how would you

1. declare an array arr of 50 bits

2. put the 20th bit on

3. test whether the 40th bit is on or off

Answer

1. char arr[NUMSLOTS(50)];


2. SET (arr, 20);


3. if (TEST (arr, 40))

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2808
Q:

The given sentences, when properly sequenced, form a coherent paragraph. Each sentence is labelled with a letter. Choose the most logical order of the sentences from among the five given choices to construct a coherent paragraph keeping 1 as the first statement.

1) For first-time Indian travellers, stepping out of the airport in Singapore or Japan is a momentous, potentially mindset-changing experience.

A) But walk in a cramped gully in Delhi or even on the main road and everything that is not desirable inside, finds its way outside.

B) Public littering is a social issue that results in massive aesthetic, financial and health- related costs for India. It’s not as if we don’t value cleanliness. Our homes are the textbook definition of clean.

C) How does that compare with our paan- stained buses filled with peanut shells?

D) How can bustling cities packed with people be so spotless? As far as the eye can go, there is not a single piece of stray paper on the road or in public transport.

A) BCAD B) DCBA
C) DBCA D) ADBC
 
Answer & Explanation Answer: B) DCBA

Explanation:

The correct sequence is DCBA.

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

1 2808
Q:

When is World Day for Water, recognised by the UN observed?

A) January 21 B) March 22
C) October 27 D) February 24
 
Answer & Explanation Answer: B) March 22

Explanation:
Report Error

View Answer Report Error Discuss

0 2807
Q:

What does deficit spending require a government to do?

A) cut taxes B) hire more workers
C) lay off workers D) take on debt
 
Answer & Explanation Answer: D) take on debt

Explanation:

Deficit spending means spending more than the income getting. A government need to take debts for deficit spending.

Report Error

View Answer Report Error Discuss

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

1 2807
Q:

Which food item is a rich source of protein?

A) Yogurt B) Milk
C) Cheese D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

Dairy products like milk, cheese and yogurt are rich source of protein as well as calcium also. 

Report Error

View Answer Report Error Discuss

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

2 2806
Q:

' The Sikhs of New York ' organised the " Turban Day " at Times Square on which date?

A) March 15, 2017 B) April 11, 2017
C) March 14, 2017 D) April 15, 2017
 
Answer & Explanation Answer: D) April 15, 2017

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Important Days and Years
Exam Prep: Bank Exams , CAT
Job Role: Bank Clerk

3 2806
Q:

What are the different types of SQL statements ?

Answer

SQL statements are broadly classified into three. They are


1. DDL – Data Definition Language


DDL is used to define the structure that holds the data. For example, Create, Alter, Drop and Truncate table.


2. DML – Data Manipulation Language


DML is used for manipulation of the data itself. Typical operations are Insert, Delete, Update and retrieving the data from the table. The Select statement is considered as a limited version of the DML, since it can't change the data in the database. But it can perform operations on data retrieved from the DBMS, before the results are returned to the calling function.


3. DCL – Data Control Language


DCL is used to control the visibility of data like granting database access and set privileges to create tables, etc. Example - Grant, Revoke access permission to the user to access data in the database.

Report Error

View answer Workspace Report Error Discuss

4 2806