Wednesday, April 6, 2016

Upwork test ASP.NET with SQL Server Test 2016

1. You are creating an ASP.NET application that is hosted on your company’s Web server. You want to access a database with minimal effort. What you will not do?
Answers:
  1. Begin a transaction
  2. Create a connection to the database
  3. Create a data set using an adapter object
  4. Use the data set to display data or to change items in the database
  5. Update the database from the data set
  6. Close the database connection
  7. Check for transaction errors
2. Which of the following are aggregate functions in SQL?
Answers:
  1. Avg
  2. Select
  3. Order By
  4. Sum
  5. Union
  6. Group by
  7. Having
3. You create an ASP.NET application for an online insurance site PremiumInsurance. A page named PersonalDetails.aspx has the following Page directive:
<%@ Page Language=”VB” CodeBehind=”PersonalDetails.aspx.vb” AutoEventWireup=”false” inherits=”InsApp.PersonalDet”%>
PersonalDetails.aspx had a TextBox control named MemberID in which the user can enter a Personal MemberID. The HTML code for this control is as follows:
<asp:TextBox ID=”MemberID” Columns=”20″ Runat=”server”/>
You need to implement a TextChanged event handler for MemberID. You want this event handler to retrieve information about a person by using an XML Web service that charges for each access. The page will then be redisplayed with additional information about the vehicle obtained from the XML Web service.
You are implementing the TextChanged event handler. Which two courses of action should you take? (Each correct answer presents part of the solution. Choose two)
Answers:
  1. In the Page directive for PersonalDetails.aspx, ensure that the AutoEventWireup attributes is set to “true”.
  2. In the Page directive for PersonalDetails.aspx, ensure that the EnableViewState attribute is set to “true”.
  3. In the MemberID HTML element, ensure that the AutoPostback attribute is set to “false”. Include code for the client-side onserverchange event to submit the Web Form for processing by the server.
  4. In the MemberID HTML element, ensure that the AutoPostback attribute is set to “true”. Include code in the TextChanged event handler to query the XML Web service.
4. The simplest query must include at least________ and _________.
Answers:
  1. A select clause
  2. A where clause
  3. A from clause
  4. A group by clause
  5. A having clause
  6. An order by clause
5. You are the software engineer for Premium Corp.. One of the pages in an ASP.NET application contains the following declaration:
<%@ Register Tagprefix=”WoodySideBankControls” Namespace=”WoodySideBankNameSpace” Assembly=”MyAssembly” %>
The assembly named MyAssembly contains a custom server control named CSC1. Which of the following code samples will properly render CSC1 on the Web page?
Answers:
  1. <WoodySideBankControls:CSC1 id=”Control1″ runat=”server” />
  2. <WoodySideBankNameSpace:CSC1 id=”Control1″ runat=”server” />
  3. <WoodySideBankControls:Control1 id=”CSC1″ runat=”server” />
  4. <WoodySideBankNameSpace:Control1 id=”CSC1″ runat=”server” />
6. LAST_NAME DEPARTMENT_ID SALARY
ALLEN 10 3000
MILLER 20 1500
King 20 2200
Davis 30 5000
Which of the following Subqueries will execute without any error?
Answers:
  1. SELECT distinct department_id FROM employees Where salary = (SELECT AVG(salary) FROM employees GROUP BY department_id);
  2. SELECT distinct department_id FROM employees Where salary > (SELECT AVG(salary) FROM employees GROUP BY department_id);
  3. SELECT distinct department_id FROM employees Where salary > ANY (SELECT AVG(salary) FROM employees GROUP BY department_id);
  4. SELECT distinct department_id FROM employees Where salary > ALL (SELECT AVG(salary) FROM employees GROUP BY department_id);
  5. SELECT distinct department_id FROM employees Where salary < (SELECT AVG(salary) FROM employees GROUP BY department_id);
7. What will happen if you query the emp table as shown below:
select empno, DISTINCT ename, Salary from emp;
Answers:
  1. EMPNO, unique value of ENAME and then SALARY are displayed
  2. EMPNO, unique value ENAME and unique value of SALARY are displayed
  3. DISTINCT is not a valid keyword in SQL
  4. No values will be displayed because the statement will return an error
8. You are debugging an ASP.NET application for Premium Corp.. Users will use the application to produce reports. Your application contains several Debug.WriteLine statements. Which window in Visual Studio .NET should you use to inspect output from the Debug.WriteLine statements?
Answers:
  1. Command
  2. Locals
  3. Output
  4. Breakpoints
9. Examine the query:-
select (2/2/4) from tab1;
where tab1 is a table with one row. This would give a result of:
Answers:
  1. 4
  2. 2
  3. 1
  4. .5
  5. .25
  6. 0
  7. 8
  8. 24
10. Is it possible to insert several rows into a table with a single INSERT statement?
Answers:
  1. No
  2. Yes
11. You use a Command object to retrieve employee names from the employee table in the database. Which of the following will be returned when this command is executed using ExecuteReader method?
Answers:
  1. DataRow
  2. DataSet
  3. DataTable
  4. DataReader
12. Which of the following are the valid methods of the SqlTransaction class?
Answers:
  1. Commit
  2. Terminate
  3. Save
  4. Close
  5. Rollback
13. Which of the two statements is true?
(a)MSIL code is platform independent
(b)CLR is platform dependent
Answers:
  1. Only (a) is true, (b) is false
  2. Only (b) is true, (a) is false
  3. Both (a) and (b) are true
  4. Both (a) and (b) are false
14. Consider the following two statements relating to ASP.NET and choose the most appropriate option:
Statement 1: Value types are allocated on a stack
Statement 2: Reference types are allocated on a managed CLR Heap
Answers:
  1. Statement 1 is true and statement 2 is false
  2. Statement 2 is true and statement 1 is false
  3. Both statements 1 and 2 are true
  4. Both statements 1 and 2 are false
15. You are debugging a Visual Basic.NET application. You add a variable to the watch window. When Visual Basic enters break mode, the Value of the expression variable is “”. What is the most likely cause of the problem?
Answers:
  1. The variable is not currently in scope.
  2. The variable has been defined as public.
  3. The variable has been defined as private.
  4. The variable has not been defined in this project.
16. Check the following code:
Public Shared Sub UpdateData(ByVal sql As String,ByVal connectionString As String, ByVal dataTable As DataTable)
Dim da As New OleDb.OleDbDataAdapter()
Dim cnn As New OleDb.OleDbConnection(connectionString)
dataTable.AcceptChanges()
da.UpdateCommand.CommandText = sql
da.UpdateCommand.Connection = cnn
da.Update(dataTable)
da.Dispose()
End Sub
You are creating an ASP.NET application that will be used by companies to quickly create information portals customized to their business. Your application stored commonly used text strings in application variables for use by the page in your application. You need your application to initialize these text strings only when the first user accesses the application. What should you do?
Answers:
  1. Add code to the Application_OnStart event handler in the Global.asax file to set the values of the text strings.
  2. Add code to the Application_BeginRequest event handler in the Global.asax file to set the values of the text strings.
  3. Add code to the Session_OnStart event handler in the Global.asax file to set the values of the text strings.
  4. Include code in the Page.Load event handler for the default application page that sets the values if the text strings when the
  5. IsPostback property of the Page object is False.
  6. Include code in the Page.Load event handler for the default application page that sets the values of the text strings when the IsNewSession property of the Session object is set to True.
17. Examine the code given below:
SELECT employee_id FROM employees WHERE commission_pct=.5 OR salary > 23000
Which of the following statements is correct with regard to this code?
Answers:
  1. It returns employees whose salary is 50% more than $23,000
  2. It returns employees who have 50% commission rate or salary greater than $23,000
  3. It returns employees whose salary is 50% less than $23,000
  4. None of the above
18. Evaluate the following SQL statement:
SELECT e.employee_id,( (.15* e.salary) + (.5 * e.commission_pct) + (s.sales_amount * (.35 * e.bonus))) AS CALC_VALUE FROM employees e, sales s WHERE e.employee_id = s.emp_id;�
What will happen if all the parentheses are removed from the calculation?
Answers:
  1. The value displayed in the CALC_VALUE column will be lower
  2. The value displayed in the CALC_VALUE column will be higher
  3. There will be no difference in the value displayed in the CALC_VALUE column
  4. An error will be reported
19. You are creating an ASP.NET page for Premium Consultants. You create a GridView control that displays past purchases made by the user. The GridView control is populated from an existing database when the page is created. The page contains TextBox controls that allow users to update their personal information, such as address and telephone number. You need to ensure that the page is refreshed as quickly as possible when users update their contact information.
What should you do?
Answers:
  1. Set the Enabled property of the GridView control to false.
  2. Set the EnableViewState property of the GridView to false.
  3. Write code in the Page.Load event handler that populates the GridView control only when the IsPostBack property of the page is false.
  4. Write code in the Page.Load event handler that populates the GridView control only when the IsPostBack property of the page is true.
20. Sam is developing an application that enables the users to perform read and write operations on text files. He uses structured exception handling to handle the errors. He writes the code for closing all the files that were opened in the Finally block. Which of the following is true regarding the Finally block?
Answers:
  1. Finally block will be executed only if an error occurs
  2. Finally block is executed after Catch block when no error occurs
  3. Finally block is executed after Try block regardless of whether an error occurs
  4. Finally block is executed only when no error occurs
21. You are creating an ASP.NET application that will record each customer’s entry. It is possible that thousands of entries could be posted at any given time. Your application will be hosted on twenty Web servers. As customers enter information into your application, maintaining state information will be important. This information should be stored securely and should be capable of being restored in the event that a Web server is restarted. Customers will enter data into three separate pages in your application. Which of the following methods of storing state information would best suit the situation?
Answers:
  1. View State
  2. Hidden fields
  3. State Server
  4. Application state
  5. SQL Server
22. You are creating an ASP.net application to enter timesheet data intuitively. Users will enter data using a DataGrid. You have added a button column to your DataGrid. The button column uses a custom button to allow users to initiate some calculations on the data in the grid. Which event does the DataGrid control raise when the custom button is clicked?
Answers:
  1. EditCommand
  2. OnClick
  3. ButtonClicked
  4. ItemCommand
23. Which line of code should you use to copy the edited rows from dataset productInfo into another dataset productChanges?
Answers:
  1. productChanges = productInfo.GetChanges(DataRowState.Detached)
  2. productChanges = productInfo.GetChanges()
  3. productChanges.Merge(productInfo, true)
  4. productChanges.Merge(productInfo, false)
24. You are maintaining data for its products in the Products table, and you want to see those products, which are 50 items that is currentStock or more than 50 but less than the minimum stock limit of items. The structure of the Products table is:
ProductID
ProductName
CurrentStock
MinimumStock
Two possible queries are:
(a)select * from products where currentStock > MinimumStock + 50
(b)select * from products where currentStock – 50 > MinimumStock
Choose the appropriate option with regard to the above queries.
Answers:
  1. (a) is correct
  2. (b) is correct
  3. (a) and (b) both are correct
  4. (a) and (b) both are incorrect
25. How you will generate a report with minimum network traffic?
Answers:
  1. Use Microsoft SQL Server indexes to optimize the data calculations
  2. Implement the calculations in a business layer class
  3. Implement the calculations in a data layer class
  4. Use Microsoft SQL Server stored procedures for the data calculations
26. You are creating an ASP.NET Web site for your company. The Web site will use both Microsoft(R) .NET Framework server controls and ActiveX controls. You want to use Microsoft Visual Studio(R) .NET to create a Setup and Deployment project to package the ActiveX controls. Which project type should you create?
Answers:
  1. Cab
  2. Merge Module
  3. Web Setup
  4. Setup
27. In SQL Server, you should avoid the use of cursors because:
Answers:
  1. They are very difficult to implement
  2. Programs with cursors take more time to run, hence performance degrades
  3. Programs with cursors are more lengthy, hence they consume more space/memory
  4. No, you must maximize the use of cursors because they improve performance
28. Which one of the following correctly selects rows from the table myTable that have null in column column1?
Answers:
  1. SELECT * FROM myTable WHERE column1 is null
  2. SELECT * FROM myTable WHERE column1 = null
  3. SELECT * FROM myTable WHERE column1 EQUALS null
  4. SELECT * FROM myTable WHERE column1 NOT null
  5. SELECT * FROM myTable WHERE column1 CONTAINS null
29. Consider the following queries:
1. select * from employee where department LIKE ‘[^F-M]%’;
2. select * from employee where department = ‘[^F-M]%’;
Select the correct option:
Answers:
  1. Query 2 will return an error
  2. Both the queries will return the same set of records
  3. Query 2 is perfectly correct
  4. Query 2 would return one record less than Query 1
30. You need to install an online parcel tracking application and its supporting assemblies so that the application and its assemblies can be uninstalled using the Add/Remove Programs Control Panel applet. What should you do?
Answers:
  1. Use a Web installation package for the Web application. Use the Global Application Cache (GAc)utility, GACUtil.exe, to install the supporting assemblies into the GAC.
  2. Use Xcopy deployment for the Web application and its supporting assemblies.
  3. Use Xcopy deployment to deploy the Web application. Use merge modules to install the supporting assemblies.
  4. Use a Web installation package to install the Web application and the supporting assemblies.
31. Which of the following is not a valid SQL operator?
Answers:
  1. Between..and..
  2. Like
  3. In
  4. Is null
  5. Having
  6. Not in
  7. All of the above are valid.
32. You create an ASP.NET page that allows a user to enter a requested delivery date in a TextBox control named txtDelDate. The date must be no earlier than two business days after the order date, and no later that 60 business days after the order date. You add a CustomValidator control to your page. In the Properties window, you set the ControlToValidate property to txtDelDate. You need to ensure that the date entered in the txtDelDate TextBox control falls within the acceptable range of values. In addition, you need to minimize the number of round trips to the server. What should you do?
Answers:
  1. Set the AutoPostBack property of txtDelDate to False. Write code in the ServerValidate event handler to validate the date.
  2. Set the AutoPostBack property of txtDelDate to True. Write code in the ServerValidate event handler to validate the date.
  3. Set the AutoPostBack property of txtDelDate to False. Set the ClientValidationFunction property to the name of a script function contained in the HTML page that is sent to the browser.
  4. Set the AutoPostBack property of txtDelDate to True. Set the ClientValidationFunction property to the name of a script function contained in the HTML page that is sent to the browser.
33. In ASP.NET, the exception handling should be used:
Answers:
  1. to signal the occurrence of unusual or unanticipated program events
  2. to redirect the program’s normal flow of control
  3. in cases of potential logic or user input errors
  4. in case of overflow of an array boundary
34. How can you view the results of Trace.Write() statements?
Answers:
  1. By enabling page tracing
  2. By enabling application tracing
  3. By enabling server tracing
  4. By looking up the system.log file
35. Which of the following are false for ASP.NET events?
Answers:
  1. Events are specialized forms of delegates
  2. Events are used to support the callback event notification model
  3. The signature of any event handler is fixed
  4. All of the above are true
36. What will happen if the Server configuration file and the Application configuration file have different values for session state?
Answers:
  1. The Server configuration will always override the Application configuration
  2. The Application configuration will always override the Server configuration
  3. The Server configuration will override the Application configuration if allowOverride is set to “false” in the settings in the Server configuration file
  4. The Application configuration will override the Server configuration if allowOverride is set to “false” in the settings in the Server configuration file
37. A company has the following departments:
Marketing, Designing, production, Packing
What will be the result of the following query?
select * from table where department < ‘marketing’;
Answers:
  1. The query will return “Designing, Packing”
  2. The query will return “Designing, production, Packing”
  3. The query will return “packing”
  4. Strings cannot be compared using < operator
  5. The query will return “Designing”
38. Your company, StoreIt Inc has stored the text of several journals in a Microsoft SQL Server 7.0 database. Each sentence is stored in a separate record so that the text can be retrieved with the finest granularity. Several of these works are many thousands of printed pages in length. You are building a Web application that will allow registered users to retrieve data from these volumes. When a user of your Web application requests large amounts of text, your application must return it in the most efficient manner possible. How should you build the large String object that is required to provide the most efficient response to the user?
Answers:
  1. Use a RichTextBox object to hold the data as it is being concatenated.
  2. Use the Append method of the String class.
  3. Use the String class and the & operator.
  4. Use the StringBuilder class.
39. The sales database contains a customer table and an order table. For each order there is one and only one customer, and for each customer there can be zero or more orders. How should primary and foreign key fields be placed into the design of this database?
Answers:
  1. A primary key should be created for the customer_id field in the customer table and also for the customer_id field in the order table
  2. A primary key should be created for the order_id field in the customer table and also for the customer_id field in the order table
  3. A primary key should be created for the customer_id field in the customer table and a foreign key should be created for the customer_id field in the order table
  4. A primary key should be created for the customer_id field in the customer table and a foreign key should be created for the order_id field in the order table
  5. None of these
40. You want to access data from the “Customer” table in the database. You generate a DataSet named “MyDataSet” by adding “Customer” table to it. Which of the following statements should you use to load the data from the database into “MyDataSet” which has been loaded with multiple tables, using a SqlDataAdapter named “MyAdapter”?
Answers:
  1. MyAdapter.Fill(MyDataSet,”Customer”)
  2. MyAdapter.Fill(“MyDataSet”,Customer)
  3. MyAdapter.Fill(MyDataSet)
  4. MyAdapter.Fill(“MyDataSet”)
41. What is the order of precedence among the following operators?
1 IN
2 NOT
3 AND
4 OR
Answers:
  1. 1,2,3,4
  2. 2,3,4,1
  3. 1,2,4,3
  4. 1,4,3,2
  5. 4,3,2,1
  6. 4,1,2,3
  7. 4,2,1,3
  8. 3,2,1,4
42. Which query will display data from the Pers table relating to Analysts, clerks and Salesmen who joined between 1/1/2005 and 1/2/2005?
Answers:
  1. select * from Pers where joining_date from ‘1/1/2005’ to ‘1/2/2005’, job= ‘Analyst’ or ‘clerk’ or ‘salesman’
  2. select * from Pers where joining_date between ‘1/1/2005’ to ‘1/2/2005’, job= ‘Analyst’ or job= ‘clerk’ or job= ‘salesman’
  3. select * from Pers where joining_date between ‘1/1/2005’ and ‘1/2/2005’ and (job= ‘Analyst’ or ‘clerk’ or ‘salesman’)
  4. None of the above
43. What is the correct order of clauses in the select statement?
1 select
2 order by
3 where
4 having
5 group by
Answers:
  1. 1,2,3,4,5
  2. 1,3,5,4,2
  3. 1,3,5,2,4
  4. 1,3,2,5,4
  5. 1,3,2,4,5
  6. 1,5,2,3,4
  7. 1,4,2,3,5
  8. 1,4,3,2,5
44. Which of the following queries is valid?
Answers:
  1. Select * from students where marks > avg(marks);
  2. Select * from students order by marks where subject = ‘SQL’;
  3. Select * from students having subject =’SQL’;
  4. Select name from students group by subject, name;
  5. Select group(*) from students;
  6. Select name,avg(marks) from students;
  7. None of the above
45. Which of the following is the syntax for creating an Index?
Answers:
  1. CREATE [UNIQUE] INDEX index_name OF tbl_name (index_columns)
  2. CREATE [UNIQUE] INDEX OF tbl_name (index_columns)
  3. CREATE [UNIQUE] INDEX ON tbl_name (index_columns)
  4. CREATE [UNIQUE] INDEX index_name ON tbl_name (index_columns)
46. You have developed a custom server control and have compiled it into a file named FirstReport.dll.
The code is displayed below:
<%@ Register TagPrefix=” CertKing Tag” Namespace=”ReportNS” Assembly=” CertKing Report” %>
You want to set the PageNumber property of the control to 77.
Which of the following lines of code should you include in your Web Form?
Answers:
  1. < CertKing Tag:ReportNS PageNumber=”77″ runat=”server” />
  2. <myReport PageNumber=”77″ src=”rptctrl” runat=”server” />
  3. < CertKing Tag:myReport PageNumber=”77″ runat=”server” />
  4. <% Control TagName=”myReport” src=”rptctrl” runat=”server” %>
47. You are creating an ASP.NET page for your company’s Web site. Customers will use the ASP.NET page to enter payment information. You add a DropDownList control named oPaymentTypeList that enables customers to select a type of credit card and bank accounts. You need to ensure that customers select a credit card type. You want a default value of Select to be displayed in the oPaymentTypeList control. You want the page validation to fail if a customer does not select a payment type from the list. What should you do?
Answers:
  1. Add a RequiredFieldValidator control and set its ControlToValidate property to oPaymentTypeList. Set the InitialValue property of the RequiredFieldValidator control to Select.
  2. Add a RequiredFieldValidator control and set its ControlToValidate property to oPaymentTypeList. Set the DataTextField property of the oPaymentTypeList control to Select.
  3. Add a CustomValidator control and set its ControlToValidate property to oPaymentTypeList. Set the DataTextField property of the oPaymentTypeList control to Select.
  4. Add a RegularExpressionValidator control and set its ControlToValidate property to oPaymentTypeList. Set the ValidateExpression property of the RegularExpressionValidator control to Select.
48. How can you change “Hansen” into “Nilsen” in the LastName column in the Persons Table?
Answers:
  1. UPDATE Persons SET LastName = ‘Nilsen’ WHERE LastName = ‘Hansen’
  2. UPDATE Persons SET LastName = ‘Hansen’ INTO LastName = ‘Nilsen’
  3. SAVE Persons SET LastName = ‘Nilsen’ WHERE LastName = ‘Hansen’
  4. SAVE Persons SET LastName = ‘Hansen’ INTO LastName = ‘Nilsen’
49. You create an ASP.NET application for ABC Corporation. The project manager requires a standard appearance for all Web applications. Standards are expected to change periodically. You need to enforce these standards and reduce maintenance time. What would you do?
Answers:
  1. Create a Microsoft Visual Studio .NET Enterprise template
  2. Create a sample HTML page
  3. Create a sample ASP.NET Web form
  4. Create a cascading style sheet
50. Which operator will be evaluated first in the following statement:
select (age + 3 * 4 / 2 – 8) from emp
Answers:
  1. +
  2. /
  3. *
51. When you make some changes to the configuration file, do you need to stop and start IIS to apply the new settings?
Answers:
  1. Yes
  2. No
52. What is wrong with the following query:
select * from Orders where OrderID = (select OrderID from OrderItems where ItemQty > 50)
Answers:
  1. In the sub query, ‘*’ should be used instead of ‘OrderID’
  2. The sub query can return more than one row, so, ‘=’ should be replaced with ‘in’
  3. The sub query should not be in parenthesis
  4. None of the above
53. Which of the following is the default configuration file for each application in ASP.NET?
Answers:
  1. config.web
  2. web.config
  3. sys.config
  4. config.sys
54. In which sequence are queries and sub-queries executed by the SQL Engine?
Answers:
  1. primary query -> sub query -> sub sub query and so on
  2. sub sub query -> sub query -> prime query
  3. the whole query is interpreted at one time
  4. there is no fixed sequence of interpretation, the query parser takes a decision on the fly
55. You are developing a website that has four layers. The layers are user interface (web pages), business objects, data objects, and database. You want to pass data from the database to controls on a web form. What should you do?
Answers:
  1. Populate the data objects with data from the database. Populate the controls with values retrieved from the data objects.
  2. Populate the business objects with data from the database. Populate the controls with values retrieved from the business objects.
  3. Populate the data objects with data from the database. Populate the business objects with data from the data objects. Populate
  4. the controls with values retrieved from the business objects
  5. Bind the controls directly to the database.
56. Consider the following two tables:
1. customers( customer_id, customer_name)
2. branch ( branch_id, branch_name )
What will be the output if the following query is executed:
Select *, branch_name from customers,branch
Answers:
  1. It will return the fields customer_id, customer_name, branch_name
  2. It will return the fields customer_id, customer_name, branch_id, branch_name
  3. It will return the fields customer_id, customer_name, branch_id, branch_name, branch_name
  4. It will return an empty set since the two tables do not have any common field name
  5. It will return an error since * is used alone for one table only
57. Which of the following are not true in ASP.NET?
Answers:
  1. A try block can have more than one catch blocks
  2. Every try block must have a catch block
  3. Every try block must have a finally block
  4. All exception classes are to be derived from System.Exception
58. XYZ is creating an e-commerce site for PremiumBoutique. The site is distributed across multiple servers in a Web farm. Users will be able to navigate through the pages of the site and select products for purchase. XYZ wants to use a DataSet object to save their selections. Users will be able to view their selections at any time by clicking a Shopping Cart link. XYZ wants to ensure that each user’s shopping cart DataSet object is saved between requests when the user is making purchases on the site. How can this requirement be implement?
Answers:
  1. Create a StateBag object. Use the StateBag object to store the DataSet object in the page’s ViewState property
  2. Use the HttpSessionState object returned by the Session property of the page to store the DataSet object. Use the Web.config file to configure an out-of-process session route
  3. Use the Cache object returned by the page’s Cache property to store a DataSet object for each user. Use an HttpCachePolicy object to set a timeout period for the cached data
  4. Use the Session_Start event to create an Application variable of type DataSet for each session. Store the DataSet object in the Application variable
59. In ASP.NET, which of the following is not an event of the Page class?
Answers:
  1. Init
  2. Load
  3. Error
  4. Abort
60. Is the FROM clause necessary in every SELECT statement?
Answers:
  1. Yes
  2. No
61. Which DLL is responsible for processing the page requests running on the server?
Answers:
  1. Internet Server Application Programming Interface
  2. Internet Information Server Program
  3. Webserver interface
  4. IIS Application
62. What is the total no. of events in Global.asax file in Asp.NET?
Answers:
  1. 20
  2. 25
  3. 19
  4. 32
63. Which of the following datatypes is not supported by SQL-Server?
Answers:
  1. Character
  2. Binary
  3. Logical
  4. Date
  5. Numeric
  6. All are supported
64. It is time for the annual sales awards at your company. The awards include certificates awarded for the five sales of the highest sale amounts. You need to produce a list of the five highest revenue transactions from the Orders table in the Sales database. The Orders table is defined as follows:
CREATE TABLE Orders (
OrderID Int IDENTITY NOT NULL,
SalesPersonID Int NOT NULL,
RegionID Int NOT NULL,
OrderDate Datetime NOT NULL,
OrderAmount Int NOT NULL )
Which statement will produce the report correctly?
Answers:
  1. SELECT TOP 5 OrderAmount, SalesPersonID FROM orders
  2. SELECT TOP 5 OrderAmount, SalesPersonID FROM orders ORDER BY OrderAmount DESC
  3. SELECT TOP 5 WITH TIES OrderAmount, SalesPersonID From Orders
  4. SELECT TOP 5 WITH TIES OrderAmount, SalesPersonID From Orders ORDER BY OrderAmount
65. Consider the transaction:
Begin Transaction
Create table A ( x smallint, y smallint)
Create table B ( p smallint, q smallint)
Update A set x=600 where y > 700
Update B set p=78 where q=99
If @@ error != 0
Begin
RollBack Transaction
Return
End
Commit Transaction
Select the correct option:
Answers:
  1. The transaction will work perfectly fine
  2. It will report an error
  3. The error handling routine contains a syntax error
  4. None of the above
  5. Both b and c
66. A production house needs a report about the sale where total sale of the day is more than $20,000. Which query should be used?
Answers:
  1. select * from orders where sum(amount) > 20000
  2. select * from orders where sum(amount) > 20000 order by OrderDate
  3. select * from orders group by OrderDate having sum(amount)>20000
  4. select * from orders group by OrderDate where sum(amount) > 20000
67. In ASP.NET, the control’s value set during the postback can be accessed in:
Answers:
  1. Page_Init
  2. Page_Load
  3. Both Page_Init and Page_Load
  4. Neither in Page_Load nor Page_Init
68. Which of the following connectionstring in Web.Config is correct if Microsoft SQL Server database named ClassList resides on a server named Neptune is to be used?
Answers:
  1. <add key=”SqlConnect” value=”Data Source=Neptune;Initial Catalog=ClassList;Persist Security Info=True;User ID=xyz;Password=abc”>
  2. <add key=”SqlConnect” value=”Data Source=ClassList;Initial Catalog=Neptune;Persist Security Info=True;User ID=xyz;Password=abc”>
  3. <add key=”SqlConnect” value=”Data Source=abc;Initial Catalog=xyz;Persist Security Info=True;User ID=Neptune;Password=ClassList”>
  4. <add key=”SqlConnect” value=”Data Source=abc;Initial Catalog=xyz;Persist Security Info=True;User ID=ClassList;Password=Neptune”>
69. What does the following line of code do?
<%@ Register tagprefix=”ril” Tagname=”test” Src=”rilTest.ascx” %>
Answers:
  1. Register a new web site
  2. Register a new tag
  3. Register a new user control
  4. Register a new web page
70. In which of the following namespaces is the Assembly class defined?
Answers:
  1. System.Assembly
  2. System.Reflection
  3. System.Collections
  4. System.Object
71. What data types do the RangeValidator control support?
Answers:
  1. Integer, String, and Date
  2. char, String, and Date
  3. Integer, String, and varchar
  4. Integer, bool, and Date
72. Examine the two SQL statements given below:
SELECT last_name, salary, hire_date FROM EMPLOYEES ORDER BY salary DESC
SELECT last_name, salary, hire_date FROM EMPLOYEES ORDER BY 2 DESC
What is true about them?
Answers:
  1. The two statements produce identical results
  2. The second statement returns an error
  3. There is no need to specify DESC because the results are sorted in descending order by default
  4. None of the above
73. You are creating an ASP.NET application. The application will be deployed on intranet. Application uses Microsoft Windows authentication. More than 100 users will use the ASP.NET application simultaneously. What setting should be done by the project manager regarding user authentication?
Answers:
  1. Add the following element to the authentication section of the Web.config file: <allow users=”?”/>
  2. Use the Configuration Manager for your project to designate the user’s security context.
  3. Write code in the Application_AuthenticateRequest event handler to configure the application to run in the user’s security context.
  4. Add the following element to the system.web section of the Web.config file: <identity impersonate=”true”/>
74. The names of those departments where there are more than 100 employees have to be displayed. Given two relations, employees and departments, what query should be used?
Employee
———
Empno
Employeename
Salary
Deptno
Department
———
Deptno
Departname
Answers:
  1. Select departname from department where deptno in (select deptno from employee group by deptno having count(*) > 100);
  2. Select departname from department where deptno in (select count(*) from employee group by deptno where count(*) > 100);
  3. Select departname from department where count(deptno) > 100;
  4. Select departname from department where deptno in (select count(*) from employee where count(*) > 100);
75. Which of the following constraints can be used to enforce the uniqueness of rows in a table?
Answers:
  1. DEFAULT and NOT NULL constraints
  2. FOREIGN KEY constraints
  3. PRIMARY KEY and UNIQUE constraints
  4. IDENTITY columns
  5. CHECK constraints
  6. 76. Consider the following two statements and choose the most appropriate option:
1. For configuration, ASP.NET uses IIS Metabase
2. For configuration, ASP.NET uses an XML based configuration system
Answers:
  1. 1 only
  2. 2 only
  3. Both 1 and 2
  4. Neither 1 nor 2
77. Which of the following is not a valid ASP.NET Web form control?
Answers:
  1. <ASP:Panel>
  2. <ASP:Div>
  3. <ASP:TableCell>
  4. <ASP:ImageButton>
78. Which of the following has the highest order of precedence in SQL Server?
Answers:
  1. Functions and Parenthesis
  2. Multiplication, Division and Exponents
  3. Addition and Subtraction
  4. Logical Operations
79. You are a web developer for an international literary website. Your application has a lot of text content that requires translation and few executable components. Which approach would you use?
Answers:
  1. Detect and redirect
  2. Use run-time adjustment
  3. Use satellite assemblies
  4. Allow the client browser to decide
80. Study the situation described below and identify the nature of relationship?
Each student can enroll into more than one class. Each class can accommodate more than one student.
Answers:
  1. 1 to N
  2. 1 to 1
  3. M to N to 1
  4. M to N
  5. N to 1
81. Which of the following objects is required by the Dataset to retrieve data from a database and to save updated data back to the database?
Answers:
  1. DataAdapter
  2. DataReader
  3. Command
  4. Connection
82. You want to display the titles of books that meet the following criteria:
1. Purchased before November 11, 2002
2. Price is less than $500 or greater than $900
You want to sort the result by the date of purchase, starting with the most recently bought book.
Which of the following statements should you use?
Answers:
  1. SELECT book_title FROM books WHERE price between 500 and 900 AND purchase_date < ’11/11/2002′ ORDER BY purchase_date;
  2. SELECT book_title FROM books WHERE price IN (500, 900) AND purchase_date< ’11/11/2002′ ORDER BY purchase date ASC;
  3. SELECT book_title FROM books WHERE price < 500 OR>900 AND purchase_date DESC;
  4. SELECT Book_title FROM books WHERE (price < 500 OR price > 900) AND purchase_date < ’11/11/2002′ ORDER BY purchase date DESC
83. You create an ASP.NET page named ProjectCalendar.aspx that shows scheduling information for projects in your company. The page is accessed from various other ASP and ASP.NET pages hosted throughout the company’s intranet. All employees on the intranet use Internet Explorer. ProjectCalendar.aspx has a Calendar control at the top of the page. Listed below the Calendar control is detailed information about project schedules on the data selected. When a user selects a date in the calendar, the page is refreshed to show the project schedule details for the newly selected date. Users report that after viewing two or more dates on ProjectCalendar.aspx, they need to click the browser’s Back button several times in order to return to the page they were viewing prior to accessing ProjectCalendar.aspx.
You need to modify ProjectCalendar.aspx so that the users need to click the Back button only once. What to do?
Answers:
  1. Add the following statement to the Page.Load event handler for ProjectCalendar.aspx: Response.Expires(0)
  2. Add the following statement to the Page.Load event handler for ProjectCalendar.aspx: Response.Cache.SetExpires (DateTime.Now())
  3. Add the following attribute to the Page directive for ProjectCalendar.aspx: EnableViewState=”True”
  4. Add the following attribute to the Page directive for ProjectCalendar.aspx: SmartNavigation=”True”
84. How can you pop-up a window to display text that identifies the author of the book?
Answers:
  1. For each image, set the AlternateText property to specify the text you want to display, and set the ToolTip property to True.
  2. In the onmouseover event handler for each image, add code that calls the RaiseBubbleEvent() method of the
  3. System.Web.UI.WebControls.Image class.
  4. In the onmouseover event handler for each image, add code that calls the ToString() method of the
  5. System.Web.UI.WebControls.Image class.
  6. For each image, set the ToolTip property to specify the text you want to display.
85. Consider the query:
SELECT name
FROM Student
WHERE name LIKE ‘_a%’;
Which names will be displayed?
Answers:
  1. Names starting with “a”
  2. Names containing “a” as the second letter
  3. Names starting with “a” or “A”
  4. Names containing “a” as any letter except the first
86. View the following Create statement:
1 Create table Pers
2 (EmpNo Int not null,
3 EName Char not null,
4 Join_dt Datetime not null,
5 Pay Int)
Which line contains an error?
Answers:
  1. 1
  2. 2
  3. 3
  4. 4
  5. 5
  6. None
87. Choose the appropriate query for the Products table where data should be displayed primarily in ascending order of the ProductGroup column. Secondary sorting should be in descending order of the CurrentStock column.
Answers:
  1. Select * from Products order by CurrentStock,ProductGroup
  2. Select * from Products order by CurrentStock DESC,ProductGroup
  3. Select * from Products order by ProductGroup,CurrentStock
  4. Select * from Products order by ProductGroup,CurrentStock DESC
  5. None of the above
88. Which of the following is not a service provided by Common Language Runtime (CLR)?
Answers:
  1. Garbage collection
  2. Multiple platform support
  3. Code verification
  4. Code access security
89. Which of the following is the way to handle Unmanaged Code Exceptions in ASP.NET?
Answers:
  1. Server.GetLastError()
  2. Exception ex
  3. Raise Error
  4. None of above
90. Consider the following table structure of students:
rollno int
name varchar(20)
course varchar(20)
What will be the query to display the courses in which the number of students
enrolled is more than 5?
Answers:
  1. Select course from students where count(course) > 5;
  2. Select course from students where count(*) > 5 group by course;
  3. Select course from students group by course;
  4. Select course from students group by course having count(*) > 5;
  5. Select course from students group by course where count(*) > 5;
  6. Select course from students where count(group(course)) > 5;
  7. Select count(course) > 5 from students;
  8. None of the above
91. In Windows built-in authentication, what will happen with the following set of statements?
<system.web>
<authorization>
<deny users=”RIL”/>
<allow users=”RIL”/>
</authorization>
</system.web>
Answers:
  1. The user RIL is first denied and then allowed access
  2. The user RIL is denied access because the <deny> element takes precedence over the <allow> element
  3. An error is generated because deny and allow cannot both be assigned to the same user
  4. Can’t say. It depends on the Windows OS version
92. When designing a database table, how do you avoid missing column values for non-primary key columns?
Answers:
  1. Use UNIQUE constraints
  2. Use PRIMARY KEY constraints
  3. Use DEFAULT and NOT NULL constraints
  4. Use FOREIGN KEY constraints
  5. Use SET constraints
93. In SQL Server, which of the following is not a control statement?
Answers:
  1. if…else
  2. if exists
  3. do…while
  4. while
  5. begin…end
94. You are developing an application to take orders over the Internet. When the user posts back the order form, you first check to see whether he is a registered customer of your company. If not, you must transfer control to the Register html page. Which method should you use to effect this transfer?
Answers:
  1. Response.Redirect()
  2. Server.Transfer()
  3. Server.Execute()
  4. Page.ProcessRequest()
95. The STUDENT_GRADES table has these columns:
STUDENT_ID INT
SEMESTER_END DATETIME
GPA FLOAT
Which of the following statements finds the highest Grade Point Average (GPA) per semester?
Answers:
  1. SELECT MAX(gpa) FROM student_grades WHERE gpa IS NOT NULL
  2. SELECT (gpa) FROM student_grades GROUP BY semester_end WHERE gpa IS NOT NULL
  3. SELECT MAX(gpa) FROM student_grades WHERE gpa IS NOT NULL GROUP BY semester_end
  4. SELECT MAX(gpa) GROUP BY semester_end WHERE gpa IS NOT NULL FROM student_grades
  5. SELECT MAX(gpa) FROM student_grades GROUP BY semester_end WHERE gpa IS NOT NULL
96. You create an ASP.NET page named Customer.aspx. Customer.aspx contains a Web user control that displays a drop-down list box of Cities. The Web user control is named CityList, and it is defined in a file named CityList.ascx. The name of the DropDownList control in City.ascx is CuCity. You try to add code to the Page.Load event handler for Customer.aspx, but you discover that you cannot access CuCity from code in Customer.aspx. You want to ensure that code within Customer.aspx can access properties of CuCity.
What should you do?
Answers:
  1. In the code-behind file for CityList.ascx, add the following line of code: Protected CuCity As DropDownList
  2. In the code-behind file for Customer.aspx, add the following line of code: Public CuCity As DropDownList
  3. In the code-behind file for Customer.aspx, add the following line of code: Protected CuCity As DropDownList
  4. In the code-behind file for CityList.ascx, add the following line of code: Public CuCity As DropDownList
97. You are creating an ASP.NET application for AutoMart Internet Web site. A toolbar is required that will be displayed at the top of each page in the Web site. The toolbar will contain only static HTML code. The toolbar will be used in only AutoMart website. You plan to create the toolbar as a reusable component for your application. You need to create the toolbar in a minimum possible time. Which method will you adopt?
Answers:
  1. Add a new component class to your ASP.NET project. Use HTML server controls to design the toolbar within the designer of the component class.
  2. Create a new Web Control Library project. Create the toolbar within a Web custom control.
  3. Add a new Web user control to your ASP.NET project. Create the toolbar within the Web user control.
  4. Add a new Web Form to your ASP.NET project. Use HTML server controls to design the toolbar within the Web Form and save the
  5. Web Form with an ascx extension.
98. You are creating an ASP.NET application that will run on your company’s intranet. You want to control the browser window and respond immediately to non-post-back events. Which should you use?
Answers:
  1. Server-side code
  2. Use the Browser object’s VBScript or JavaScript properties to test if the browser can run scripts
  3. Use the Browser object’s Cookies
  4. Client-side scripts

No comments:

Post a Comment