Backend Web Development Technologies

Quiz covering SQL Server database administration, .NET framework, ASP.NET web programming, and XML processing for backend web application development.

20 Questions Published

Questions

Question 1 True/False

Is it possible to load mapping file programmatically?

  1. True
  2. False
Question 2 Multiple Choice (Single Answer)

You are developing a web application that is retrieving historical library information from a database server and displays it to the users of your application. What cache strategy will give you the best performance?

  1. Use the output cache.
  2. Use the cache object.
  3. Use the ASP.NET central cache.
  4. Use the client cache
Question 3 Multiple Choice (Single Answer)

What control is used to validate that two fields are equal?

  1. RequiredFieldValidator
  2. RegularExpressionValidator
  3. CompareValidator
  4. The equals() method of the field.
Question 4 Multiple Choice (Single Answer)

Which of the following does the actual .NET code execute ?

  1. MSIL
  2. CLS
  3. CLR
  4. CTS
Question 5 Multiple Choice (Single Answer)

What is a DiffGram?

  1. XML file containing both the original and current values for the data.
  2. XML file containing the difference between original and current data.
  3. DataSet loaded with two XML files, resulting in the difference being current.
  4. DataSet loaded with an XML file and the original values from the data source.
Question 6 Multiple Choice (Single Answer)

Which one of the following is a limitation of XML serialization?

  1. In classes that implement IEnumerable, the collection is not serialized
  2. You cannot serialize an object's public fields.
  3. You cannot serialize XmlNode object
  4. It does not serialize type information.
Question 7 Multiple Choice (Single Answer)

internal class Piston {} internal class Engine { private Piston[] myPistons = new Piston[4]; public bool Ignition() { //some code } }public class Car { private Engine myEngine = new Engine(); public void Start() { //put in keys etc.. if (myEngine.Ignition()) { //some more code507 } } What concept does the above sample code demonstrate?

  1. Delegation
  2. Composition
  3. Polymorphism
  4. Inheritance
Question 8 Multiple Choice (Single Answer)

Garbage collector runs ?

  1. When Application is running for more than 30 minutes.
  2. Every 1/4th Milli Second.
  3. When application is running low of memory.
  4. Its very random and takes random time from the CPU clock.
Question 9 Multiple Choice (Single Answer)

What ASP.NET object encapsulates the state of the client and the browser?

  1. Application object.
  2. Session object.
  3. Response object.
  4. Request object.
Question 10 Multiple Choice (Single Answer)

Which object can help you maintain data across users?

  1. Application object.
  2. Session object.
  3. Response object.
  4. Request object.
Question 11 Multiple Choice (Single Answer)

What namespace must be used in order to use the DOM for XML support?

  1. System.Data.Xml
  2. System.Xml
  3. System.DOM.Xml
  4. System.DOM
Question 12 Multiple Choice (Single Answer)

What namespace must be used in order to use the DOM for XML support?

  1. System.Data.Xml
  2. System.XML
  3. System.DOM.Xml
  4. System.DOM
Question 13 Multiple Choice (Single Answer)

You want to send Personalized Messages to a group of people. Which SQL Server 2005 services would you use?

  1. Database Mirroring
  2. Integration Services
  3. Notification Services
  4. All of the above
Question 14 Multiple Choice (Multiple Answers)

You have currently installed SQL Server 7.0 Standard Edition SP4 and wish to upgrade to SQL Server 2005. Which versions of SQL Server 2005 can you upgrade to?

  1. SQL Server 2005 Developer Edition
  2. SQL Server 2005 Enterprise Edition
  3. SQL Server 2005 Express Edition
  4. SQL Server 2005 Standard Edition
Question 15 Multiple Choice (Multiple Answers)

What are different variants of SQL Server 2005?

  1. Developer Edition
  2. Express Edition
  3. Integration Edition
  4. Standard Edition
Question 16 True/False

It is possible to rename a database and database objects in SQL Server 2005

  1. True
  2. False
Question 17 Multiple Choice (Single Answer)

Which SQL Server 2005 tool helps in running T-SQL queries from command prompt?

  1. DTUTIL
  2. BCP
  3. Object Explorer
  4. None of the above
Question 18 Multiple Choice (Multiple Answers)

You are planning for a new installation of SQL Server 2005. You need to select the protocols that client computers might use to connect to the server. Which two protocols will you use to achieve this goal?

  1. Named Pipes
  2. Shared Memory
  3. Virtual Interface Adapter
  4. TCP/IP
Question 19 Multiple Choice (Multiple Answers)

Which are the System Databases in SQL Server 2005?

  1. Model database
  2. Master Database
  3. msdb
  4. Temporary database
Question 20 Multiple Choice (Single Answer)

What are the different recovery models in SQL Server 2005?

  1. Simple
  2. Bulk Logged
  3. Full
  4. All of the above