Searching for "large"

Q:

What is the largest seabird ?

Answer

Albatross

Report Error

View answer Workspace Report Error Discuss

Q:

By mixing two qualities of pulses in the ratio 2: 3 and selling the mixture at the rate of Rs 22 per kilogram, a shopkeeper makes a profit of 10 %. If the cost of the smaller quantity be Rs 14 per kg, the cost per kg of the larger quantity is:

A) Rs 23 B) Rs 25
C) Rs 24 D) Nonof these
 
Answer & Explanation Answer: C) Rs 24

Explanation:

Cost Price of 5 kg = Rs.(14*2 + x*3) = (28 + 3x).

Sell price of 5 kg = Rs. (22x5) = Rs. 110.

[{110 - (28 + 3x)}/(28 + 3x) ]* 100 =10

[82-3x/28 + 3x]= 1 / 10

820 - 30x = 28 +3x 

33x = 792 

x = 24

Report Error

View Answer Report Error Discuss

Filed Under: Profit and Loss

Q:

Which is Largest library in the world ?

Answer

United State Library of Congress, Washington D.C.

Report Error

View answer Workspace Report Error Discuss

Q:

Which is the Largest lake of the world ?

Answer

Caspian Sea (371,000 sq km)

Report Error

View answer Workspace Report Error Discuss

Q:

The largest and the oldest museum of India is located in the state/union territory of

A) New Delhi B) West Bengal
C) Uttar Pradesh D) Andhra Pradesh
 
Answer & Explanation Answer: B) West Bengal

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Famous Places

Q:

A large document contains meeting notes from all meeting that took place between HR and Finance. You need to find all instances of 'derive' or 'dive' or 'dave'. What would be the most efficient way to find these terms using the Find & Replace dialog box?

A) Choose Wildcard option and search for d?ve B) Choose Wildcard option and search for d*ve
C) Choose Wildcard option and search for ?ve D) Choose Wildcard option and search for *ve
 
Answer & Explanation Answer: B) Choose Wildcard option and search for d*ve

Explanation:
Report Error

View Answer Report Error Discuss

Q:

A large CRM project took place last year included hundreds of meetings between the various key users. All of the conversations were save in a single Word 2010 document. You need to find all instances of the following words 'bleed' and 'bled'. Which of the following wildcard searches would be best?

A) ble{2}d B) ble{1,}d
C) ble{e2}d D) ble[e2]d
 
Answer & Explanation Answer: B) ble{1,}d

Explanation:
Report Error

View Answer Report Error Discuss

Q:

You use Microsoft Visual Studio 2010 and Microsoft .NET Framework 4 to create an
application. The application connects to a Microsoft SQL Server 2008 database. The database includes a table named dbo.


Documents that contains a column with large binary dat a. You are creating the Data Access Layer (DAL). You add the following code segment to query the dbo.Documents table. (Line numbers are included for reference only.)


01public void LoadDocuments(DbConnection cnx)
02{
03var cmd = cnx.CreateCommand();
04cmd.CommandText = "SELECT * FROM dbo.Documents";
05...
06cnx.Open();
07
08ReadDocument(reader); }


You need to ensure that data can be read as a stream. Which code segment should you insert at line 07?

A) var reader = cmd.ExecuteReader(CommandBehavior.Default); B) var reader = cmd.ExecuteReader(CommandBehavior.SchemaOnly);
C) var reader = cmd.ExecuteReader(CommandBehavior.KeyInfo); D) var reader = cmd.ExecuteReader(CommandBehavior.SequentialAccess);
 
Answer & Explanation Answer: D) var reader = cmd.ExecuteReader(CommandBehavior.SequentialAccess);

Explanation:
Report Error

View Answer Report Error Discuss