Searching for "records."

Q:

In the following question, a sentence has been given in Direct/Indirect speech. Out of the four alternatives suggested, select the one which best express the same sentence in Indirect/Direct speech.

 

The spectators applauded the young athlete saying that he had broken all previous records.

 

A) The spectators said to the young athlete,"Bravo! You have broken all records." B) The spectators exclaimed to the young athlete,"You have broken all records."
C) The spectators said to the young athlete,"You broke all records." D) The spectators said to the young athlete,"You had broken all records."
 
Answer & Explanation Answer: A) The spectators said to the young athlete,"Bravo! You have broken all records."

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

Q:

The 112-feet tall bust of ‘Adiyogi’ Lord Shiva at the Isha Yoga Foundation in ___________ has been declared the world’s largest bust by the Guinness Book of World Records.

A) Telangana B) Andhra Pradesh
C) Haryana D) Tamil Nadu
 
Answer & Explanation Answer: D) Tamil Nadu

Explanation:

The 112-feet tall bust of ‘Adiyogi’ Lord Shiva at the Isha Yoga Foundation has been declared the world’s largest bust by the Guinness Book of World Records. The Guinness had announced this on its website. The bust at the Isha Yoga Foundation on the outskirts of Coimbatore, Tamil Nadu was unveiled by Prime Minister Narendra Modi on 24 February.

Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams , CAT
Job Role: Bank Clerk

Q:

You use Microsoft Visual Studio 2010 and Microsoft .NET Framework 4 to create an application. The application uses the ADO.NET Entity Framework to manage customer and related order records. You add a new order for an existing customer. You need to associate the Order entity with the Customer entity. What should you do?

A) Set the Value property of the EntityReference of the Order entity. B) Call the Add method on the EntityCollection of the Order entity.
C) Use the AddObject method of the ObjectContext to add both Order and Customer entities. D) Use the Attach method of the ObjectContext to add both Order and Customer entities.
 
Answer & Explanation Answer: A) Set the Value property of the EntityReference of the Order entity.

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 database. The application has two DataTable objects that reference the Customers and Orders tables in the database. The application contains the following code segment. (Line numbers are included for reference only.)


01DataSet customerOrders = new DataSet();
02customerOrders.EnforceConstraints = true;
03ForeignKeyConstraint ordersFK = new ForeignKeyConstraint("ordersFK",
04customerOrders.Tables["Customers"].Columns["CustomerID"],
05customerOrders.Tables["Orders"].Columns["CustomerID"]);
06
07customerOrders.Tables["Orders"].Constraints.Add(ordersFK);


You need to ensure that an exception is thrown when you attempt to delete Customer records that have related Order records. Which code segment should you insert at line 06?

A) ordersFK.DeleteRule = Rule.SetNull; B) ordersFK.DeleteRule = Rule.None;
C) ordersFK.DeleteRule = Rule.SetDefault; D) ordersFK.DeleteRule = Rule.Cascade;
 
Answer & Explanation Answer: B) ordersFK.DeleteRule = Rule.None;

Explanation:
Report Error

View Answer Report Error Discuss