Searching for "service."

Q:

Consider the following statement :“A sound body means one whichbends itself to the spirit and is always a ready instrument at its service.”The above statement is attributed to

A) Sardar Patel B) Winston Churchill
C) Mahatma Gandhi D) Baden-Powell
 
Answer & Explanation Answer: C) Mahatma Gandhi

Explanation:

According to Gandhiji, A sound body means one which bends itself to the spirit and is always a ready instrument at its service. Such bodies are not made, in my opinion, on the football field. They are made on cornfields and farms.

Report Error

View Answer Report Error Discuss

Filed Under: Indian History
Exam Prep: GATE

Q:

A man saves Rs. 200 in each of the first three months of his service. In each of the subsequent months his saving increases by Rs. 40 more than the saving of immediately previous month. His total saving from the start of service will be Rs. 11040 after ?

A) 19 months B) 21 months
C) 18 months D) 20 months
 
Answer & Explanation Answer: B) 21 months

Explanation:

Total savings = 200 + 200 + 200 + 240 + 280 + ... to n months = 11040

= 120 + 80 + 160 + 40 + 200 + 240 + ....n terms
= 40 + 80 + 120 + 160 + 200 + 240 + ...n terms
= n/2[2a + (n-1)d] + 80 + 40 = 11040
= n/2[240 + (n-1)40] = 10920
= n[6+n-1] = 546
= n[n+5] = 546
n = 21

Report Error

View Answer Report Error Discuss

Filed Under: Odd Man Out
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Bank Clerk

Q:

Statement: Air export volumes have increased substantially over the past decade causing backlogs and difficulties for air cargo agents because of increased demand for space and service.
Courses of action:
a. Airlines and air cargo agents should jointly work out a solution to combat the problem.
b. The reasons for the increase in the volume of air exports should be found out.

A) Only a follows B) Both a and b follows
C) Only b follows D) Neither a nor b follows
 
Answer & Explanation Answer: A) Only a follows

Explanation:

The problem faced, by the airlines and cargo agents is the non availability of cargo space. Therefore, right course of action is to combat the problem.

Report Error

View Answer Report Error Discuss

Filed Under: Statement and Courses of Action
Exam Prep: AIEEE , Bank Exams , CAT , GATE , GRE
Job Role: Analyst , Bank Clerk , Bank PO

Q:

You are the administrator of a SQL Server 2000 computer. You configure SQL Server to perform C2 auditing. Audit logs are saved in the C:MSSQLAudit folder.The server functions normally for several days, but then the MSSQLServer service shuts down without warning. You cannot restart the service.You need to restart the MSSQLServer service. What should you do?

A) Start the MSSQLServer service manually by using the -m startup option. B) Start the MSSQLServer service manually by using the -s startup option.
C) Set the SQLServerAgent service's startup method to Disabled. Start the MSSQLServer service. D) Delete the audit logs from the C:\MSSQL\Audit folder. Start the MSSQLServer service.
 
Answer & Explanation Answer: D) Delete the audit logs from the C:\MSSQL\Audit folder. Start the MSSQLServer service.

Explanation:

SQL Server functioned for several days but now it is impossible to start it.
The most likely cause is the size of the auditing log files. The maximum file size for the audit log is fixed at 200 megabytes (MB). When the audit log file reaches 200 MB, a new file will be created and the old file handle will be closed. If the directory fills up, then the instance of Microsoft SQL Server is stopped. The system administrator needs to either free up disk space for the audit log before restarting the instance of SQL Server or restart the instance of SQL Server

Note 1: SQL Server Agent monitors itself and the SQL Server service.
SQL Server Agent can restart the local instance of SQL Server if it has terminated for reasons other than a typical shutdown.

Note 2: Start the MSSQLServer service manually by using the -f startup option would start the service with minimal configuration. It could be used when some configuration errors have been made and the MSSQLServer service isn't able to start.

Report Error

View Answer Report Error Discuss

Q:

You use Microsoft Visual Studio 2010 and Microsoft .NET Framework 4 to create a Windows Communication Foundation (WCF) Data Services service. You discover that when an application submits a PUT or DELETE request to the Data Services service, it receives an error. You need to ensure that the application can access the service. Which header and request type should you use in the application?

A) an X-HTTP-Method header as part of a POST request B) an X-HTTP-Method header as part of a GET request
C) an HTTP ContentType header as part of a POST request D) an HTTP ContentType header as part of a GET request
 
Answer & Explanation Answer: A) an X-HTTP-Method header as part of a POST request

Explanation:
Report Error

View Answer Report Error Discuss

Q:

You are creating an ASP.NET page for a travel service. The page contains a CheckBoxList control that contains travel destinations. Customer can select favorite destinations to receive weekly e-mail updates of travel packages.

 

The CheckBoxList control is bound to a database table of possible destinations. Each destination is ranked according to its popularity. You modify the page to sort the destination list by rank, from the most popular to the least popular. The list has three columns.

 

You want the most popular destination to be on the top row of the check box list at run time. Which property setting should you use for the CheckBoxList control?

A) Set the RepeatDirection property to Vertical. B) Set the RepeatDirection property to Horizontal.
C) Set the RepeatLayout property to Flow. D) Set the RepeatLayout property to Table.
 
Answer & Explanation Answer: B) Set the RepeatDirection property to Horizontal.

Explanation:

The DataList.RepeatDirection property is used to get or select whether the DataList control displays vertically or horizontally. If this property is set to RepeatDirection.Horizontal, the items in the list are displayed in rows loaded from left to right, then top to bottom, until all items are rendered.

 

Incorrect Answers:

A: If the DataList.RepeatDirection property is set to RepeatDirection.Vertical, the items in the list are displayed in columns loaded from top to bottom, then left to right, until all items are rendered.


C, D:DataList.RepeatLayout Property gets or sets whether the control is displayed in a table or flow layout. It does not affect the order in which the items are displayed.

Report Error

View Answer Report Error Discuss