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?
Correct Answer:
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.
Note: This Question is unanswered, help us to find answer for this one
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.
Correct Answer:
M to N
Note: This Question is unanswered, help us to find answer for this one
John is maintaining an ASP.NET application named HigherProfits. The application is written in Visual Basic .NET. The application includes a page named YearlySale.aspx that resides within the Sales namespace. The page class is named YearlySale. You discover that another developer accidentally deleted the Page directive for YearlySale.aspx. You want to create a new Page directive to allow YearlySale.aspx to work properly. Which directive should you use?
Correct Answer:
<%@ Page Language=''vb'' CodeBehind=''YearlySale.aspx.vb'' ClassName=''Sales.YearlySale'' Inherits=''YearlySale''%>
Note: This Question is unanswered, help us to find answer for this one
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?
Correct Answer:
<CertKing Tag:ReportNS PageNumber="77" runat="server" />
Note: This Question is unanswered, help us to find answer for this one
Which of the following items are recommended when using XML comments to generate documentation?
Correct Answer:
<exception>
Note: This Question is unanswered, help us to find answer for this one
Which of the following is not a valid ASP.NET Web form control?
Correct Answer:
<ASP:Div>
Note: This Question is unanswered, help us to find answer for this one
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?
Correct Answer:
Add code to the Application_OnStart event handler in the Global.asax file to set the values of the text strings.
Note: This Question is unanswered, help us to find answer for this one
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?
Correct Answer:
<WoodySideBankControls:CSC1 id="Control1" runat="server"/>
Note: This Question is unanswered, help us to find answer for this one
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?
Correct Answer:
SELECT distinct department_id FROM employees Where salary > ANY (SELECT AVG(salary) FROM employees GROUP BY department_id);
Note: This Question is unanswered, help us to find answer for this one
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?
Correct Answer:
None
Note: This Question is unanswered, help us to find answer for this one
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?
Correct Answer:
Detect and redirect
Note: This Question is unanswered, help us to find answer for this one
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?
Correct Answer:
An error will be reported
Note: This Question is unanswered, help us to find answer for this one
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?
Correct Answer:
Add a RequiredFieldValidator control and set its ControlToValidate property to oPaymentTypeList. Set the InitialValue property of the RequiredFieldValidator control to Select.
Note: This Question is unanswered, help us to find answer for this one
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?
Correct Answer:
Finally block is executed after Try block regardless of whether an error occurs
Note: This Question is unanswered, help us to find answer for this one
Which of the two statements is true?
(a)MSIL code is platform independent
(b)CLR is platform dependent
Correct Answer:
Both (a) and (b) are true
Note: This Question is unanswered, help us to find answer for this one
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.
Correct Answer:
(a) and (b) both are correct
Note: This Question is unanswered, help us to find answer for this one
Which of the following is the default configuration file for each application in ASP.NET?
Correct Answer:
web.config
Note: This Question is unanswered, help us to find answer for this one
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?
Correct Answer:
Merge Module
Note: This Question is unanswered, help us to find answer for this one
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?
Correct Answer:
Create a connection to the database
Note: This Question is unanswered, help us to find answer for this one
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?
Correct Answer:
Output
Note: This Question is unanswered, help us to find answer for this one
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>
Correct Answer:
The user RIL is denied access because the <deny> element takes precedence over the <allow> element
Note: This Question is unanswered, help us to find answer for this one
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?
Correct Answer:
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
Note: This Question is unanswered, help us to find answer for this one
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?
Correct Answer:
Use the StringBuilder class.
Note: This Question is unanswered, help us to find answer for this one
What is the correct order of clauses in the select statement?
1 select
2 order by
3 where
4 having
5 group by
Correct Answer:
1,3,5,4,2
Note: This Question is unanswered, help us to find answer for this one
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?
Correct Answer:
Add the following element to the authentication section of the Web.config file: <allow users="?"/>
Note: This Question is unanswered, help us to find answer for this one
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?
Correct Answer:
In the code-behind file for CityList.ascx, add the following line of code: Public CuCity As DropDownList
Note: This Question is unanswered, help us to find answer for this one
Consider the following ASP.NET events:
1. Page_Load
2. Page_Unload
3. Control Event
4. Page_Init
What is the order of their execution?
Correct Answer:
4,1,3,2
Note: This Question is unanswered, help us to find answer for this one
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?
Correct Answer:
ItemCommand
Note: This Question is unanswered, help us to find answer for this one
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?
Correct Answer:
SQL Server
Note: This Question is unanswered, help us to find answer for this one
You want to create a cookie object named "CustomerAddress" of type "CustomerInfo" to maintain address information of customers who buy products online. Which of the following code snippets should you use to create this cookie?
Correct Answer:
Dim CustomerAddress As New HttpCookie("CustomerInfo")
Note: This Question is unanswered, help us to find answer for this one
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?
Correct Answer:
The variable is not currently in scope.
Note: This Question is unanswered, help us to find answer for this one
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?
Correct Answer:
Use a Web installation package to install the Web application and the supporting assemblies.
Note: This Question is unanswered, help us to find answer for this one
In SQL Server, you should avoid the use of cursors because:
Correct Answer:
Programs with cursors take more time to run, hence performance degrades
Note: This Question is unanswered, help us to find answer for this one
What is the total no. of events in Global.asax file in Asp.NET?
Correct Answer:
19
Note: This Question is unanswered, help us to find answer for this one
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?
Correct Answer:
Write code in the Page.Load event handler that populates the GridView control only when the IsPostBack property of the page is false.
Note: This Question is unanswered, help us to find answer for this one
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?
Correct Answer:
<add key="SqlConnect" value="Data Source=Neptune;Initial Catalog=ClassList;Persist Security Info=True;User ID=xyz;Password=abc">
Note: This Question is unanswered, help us to find answer for this one
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?
Correct Answer:
Add the following attribute to the Page Directive for ProjectCalendar.aspx: SmartNavigation="True"
Note: This Question is unanswered, help us to find answer for this one
Which of the following is not a valid binary datatype in SQL Server?
Correct Answer:
TESTAMP
Note: This Question is unanswered, help us to find answer for this one
Which of the following is not a global variable?
Correct Answer:
All are valid global variables
Note: This Question is unanswered, help us to find answer for this one
What does referential integrity (also called relational integrity) prevent?
Correct Answer:
One-to-many or many-to-many relationships between columns in a table
Note: This Question is unanswered, help us to find answer for this one
How can you view the structure of a table named “myTable” in SQL Server?
Correct Answer:
sp_columns myTable
Note: This Question is unanswered, help us to find answer for this one
What is the maximum value that can be stored for a datetime field?
Correct Answer:
Dec 31, 9999
Note: This Question is unanswered, help us to find answer for this one
What is the correct SQL syntax for returning all the columns from a table named “Persons” sorted REVERSE alphabetically by “FirstName”?
Correct Answer:
SELECT * FROM Persons ORDER BY FirstName DESC
Note: This Question is unanswered, help us to find answer for this one
Which of the following commands is used to change the structure of table?
Correct Answer:
ALTER TABLE
Note: This Question is unanswered, help us to find answer for this one
Which one of the following must be specified in every DELETE statement?
Correct Answer:
Table Name
Note: This Question is unanswered, help us to find answer for this one
Which of the following are not date parts?
Correct Answer:
Quarter
Note: This Question is unanswered, help us to find answer for this one
Which of the following statements about SQL Server comments is false?
Correct Answer:
// is used for single line comments
Note: This Question is unanswered, help us to find answer for this one
Which of the following is not a valid character datatype in SQL Server?
Correct Answer:
VARTEXT
Note: This Question is unanswered, help us to find answer for this one
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?
Correct Answer:
Populate the data objects with data from the database. Populate the business objects with data from the data objects. Populate the controls with values retrieved from the business objects
Note: This Question is unanswered, help us to find answer for this one
How you will generate a report with minimum network traffic?
Correct Answer:
Use Microsoft SQL Server indexes to optimize the data calculations
Note: This Question is unanswered, help us to find answer for this one
Which of the following is the syntax for creating an Index?
Correct Answer:
CREATE [UNIQUE] INDEX index_name ON tbl_name (index_columns)
Note: This Question is unanswered, help us to find answer for this one
In SQL Server, which of the following is not a control statement?
Correct Answer:
begin...end
Note: This Question is unanswered, help us to find answer for this one
What will happen if you query the emp table as shown below:
select empno, DISTINCT ename, Salary from emp;
Correct Answer:
No values will be displayed because the statement will return an error
Note: This Question is unanswered, help us to find answer for this one
How can you change "Hansen" into "Nilsen" in the LastName column in the Persons Table?
Correct Answer:
UPDATE Persons SET LastName = 'Nilsen' WHERE LastName = 'Hansen'
Note: This Question is unanswered, help us to find answer for this one
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
Correct Answer:
Select * from Products order by ProductGroup,CurrentStock DESC
Note: This Question is unanswered, help us to find answer for this one
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
Correct Answer:
It will return the fields customer_id, customer_name, branch_id, branch_name, branch_name
Note: This Question is unanswered, help us to find answer for this one
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?
Correct Answer:
DataReader
Note: This Question is unanswered, help us to find answer for this one
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?
Correct Answer:
SELECT MAX(gpa) FROM student_grades WHERE gpa IS NOT NULL GROUP BY semester_end
Note: This Question is unanswered, help us to find answer for this one
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:
Correct Answer:
It will report an error
Note: This Question is unanswered, help us to find answer for this one
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?
Correct Answer:
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
Note: This Question is unanswered, help us to find answer for this one
Examine the data in the EMPLOYEES table given below:
LAST_NAME DEPTARTMENT_ID SALARY
ALLEN 10 3000
MILLER 20 1500
King 20 2200
Davis 30 5000
Which of the following Subqueries work?
Correct Answer:
SELECT * FROM employees where salary > (SELECT MIN(salary) FROM employees GROUP BY department_id);
Note: This Question is unanswered, help us to find answer for this one
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?
Correct Answer:
The two statements produce identical results
Note: This Question is unanswered, help us to find answer for this one
Which operator will be evaluated first in the following statement?
select (age + 3 * 4 / 2 - 8) from emp
Correct Answer:
*
Note: This Question is unanswered, help us to find answer for this one
In a SQL Server query, what will the output be if you try to perform arithmetic on NULL values?
Correct Answer:
NULL
Note: This Question is unanswered, help us to find answer for this one
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"
Correct Answer:
MyAdapter.Fill(MyDataSet,"Customer")
Note: This Question is unanswered, help us to find answer for this one
Which of the following queries is valid?
Correct Answer:
Select name from students group by subject, name;
Note: This Question is unanswered, help us to find answer for this one
You are using Visual Basic to retrieve class information from a Microsoft SQL Server database named ClassList. The database Resides on a server named Neptune. Which code fragment will create a connection to this data source?
Correct Answer:
Set conn = New connection ; With conn ; .Provider = "SqlOleDB" ; ConnectionString ="User ID=sa;"&& "Data Source= Neptune;"&& "Initial Catalog=ClassList"
Note: This Question is unanswered, help us to find answer for this one
When designing a database table, how do you avoid missing column values for non-primary key columns?
Correct Answer:
Use DEFAULT and NOT NULL constraints
Note: This Question is unanswered, help us to find answer for this one
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';
Correct Answer:
The query will return "Designing"
Note: This Question is unanswered, help us to find answer for this one
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?
Correct Answer:
DataAdapter
Note: This Question is unanswered, help us to find answer for this one
Examine the description of the STUDENTS table:
STD_ID INT
COURSE_ID VARCHAR (10)
START_DATE DATETIME
END_DATE DATETIME
The aggregate functions valid on the START_DATE column are:
Correct Answer:
COUNT(start_date)
Note: This Question is unanswered, help us to find answer for this one
What is wrong with the following query?
select * from Orders where OrderID = (select OrderID from OrderItems where ItemQty > 50)
Correct Answer:
The sub query can return more than one row, so, '=' should be replaced with 'in'
Note: This Question is unanswered, help us to find answer for this one
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:
Correct Answer:
Query 2 is perfectly correct
Note: This Question is unanswered, help us to find answer for this one
Which line of code should you use to copy the edited rows from dataset productInfo into another dataset productChanges?
Correct Answer:
productChanges = productInfo.GetChanges()
Note: This Question is unanswered, help us to find answer for this one
Is it possible to insert several rows into a table with a single INSERT statement?
Correct Answer:
Yes
Note: This Question is unanswered, help us to find answer for this one
Is the FROM clause necessary in every SELECT statement?
Correct Answer:
No
Note: This Question is unanswered, help us to find answer for this one
The simplest query must include at least________ and _________?
Correct Answer:
A select clause
Note: This Question is unanswered, help us to find answer for this one
Which of the following datatypes is not supported by SQL-Server?
Correct Answer:
Logical
Note: This Question is unanswered, help us to find answer for this one
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?
Correct Answer:
select * from Pers where joining_date between '1/1/2005' and '1/2/2005' and (job= 'Analyst' or 'clerk' or 'salesman')
Note: This Question is unanswered, help us to find answer for this one
In which sequence are queries and sub-queries executed by the SQL Engine?
Correct Answer:
sub sub query -> sub query -> prime query
Note: This Question is unanswered, help us to find answer for this one
Which of the following constraints can be used to enforce the uniqueness of rows in a table?
Correct Answer:
PRIMARY KEY and UNIQUE constraints
Note: This Question is unanswered, help us to find answer for this one
Which of the following has the highest order of precedence in SQL Server?
Correct Answer:
Functions and Parenthesis
Note: This Question is unanswered, help us to find answer for this one
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?
Correct Answer:
SELECT TOP 5 OrderAmount, SalesPersonID FROM orders ORDER BY OrderAmount DESC
Note: This Question is unanswered, help us to find answer for this one
What is the correct SQL syntax for selecting all the columns where the "LastName" is alphabetically between (and including) "Hansen" and "Pettersen"?
Correct Answer:
SELECT * FROM Persons WHERE LastName BETWEEN 'Hansen' AND 'Pettersen'
Note: This Question is unanswered, help us to find answer for this one
Which of the following are aggregate functions in SQL?
Correct Answer:
Avg
Note: This Question is unanswered, help us to find answer for this one
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?
Correct Answer:
It returns employees who have 50% commission rate or salary greater than $23,000
Note: This Question is unanswered, help us to find answer for this one
Which of the following is not a valid SQL OPERATOR?
Correct Answer:
All of the above are valid
Note: This Question is unanswered, help us to find answer for this one
Which of the following scenarios are applicable to Window Workflow Foundation?
Correct Answer:
Document-centric workflows
Note: This Question is unanswered, help us to find answer for this one
In ASP.NET, the exception handling should be used?
Correct Answer:
To signal the occurrence of unusual or unanticipated program events
Note: This Question is unanswered, help us to find answer for this one
Which of the following directives can be used to include libraries in an ASP.NET page?
Correct Answer:
Import
Note: This Question is unanswered, help us to find answer for this one
When you make some changes to the configuration file, do you need to stop and start IIS to apply the new settings?
Correct Answer:
No
Note: This Question is unanswered, help us to find answer for this one
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
Correct Answer:
2 only
Note: This Question is unanswered, help us to find answer for this one
How can you view the results of Trace.Write() statements?
Correct Answer:
By enabling page tracing
Note: This Question is unanswered, help us to find answer for this one
Which of the following is the way to handle Unmanaged Code Exceptions in ASP.NET?
Correct Answer:
Server.GetLastError()
Note: This Question is unanswered, help us to find answer for this one
Which of the following is not a valid directive in ASP.NET?
Correct Answer:
@Insert
Note: This Question is unanswered, help us to find answer for this one
In ASP.NET, which of the following is not an event of the Page class?
Correct Answer:
Abort
Note: This Question is unanswered, help us to find answer for this one
Which of the following are the valid methods of the SqlTransaction class?
Correct Answer:
Commit
Note: This Question is unanswered, help us to find answer for this one
In which of the following namespaces is the Assembly class defined?
Correct Answer:
System.Reflection
Note: This Question is unanswered, help us to find answer for this one
Which DLL is responsible for processing the page requests running on the server?
Correct Answer:
Internet Server Application Programming Interface
Note: This Question is unanswered, help us to find answer for this one
Which of following is correct if you want to import a C# class called myClass that is implemented in the myClass.cs file into a .aspx page?
Correct Answer:
<%@Page Inherits="myClass" Src="myClass.cs" %>
Note: This Question is unanswered, help us to find answer for this one
What data types do the RangeValidator control support?
Correct Answer:
Integer, String, and Date
Note: This Question is unanswered, help us to find answer for this one
What will happen if the Server configuration file and the Application configuration file have different values for session state?
Correct Answer:
The Server configuration will override the Application configuration if allowOverride is set to "false" in the settings in the Server configuration file
Note: This Question is unanswered, help us to find answer for this one
What does the following line of code do?
<%@ Register tagprefix="ril" Tagname="test" Src="rilTest.ascx" %>
Correct Answer:
Register a new user control
Note: This Question is unanswered, help us to find answer for this one
Which of the following is not a service provided by Common Language Runtime (CLR)?
Correct Answer:
Multiple platform support
Note: This Question is unanswered, help us to find answer for this one
In ASP.NET, the control's value set during the postback can be accessed in?
Correct Answer:
Page_Load
Note: This Question is unanswered, help us to find answer for this one
How can you pop-up a window to display text that identifies the author of the book?
Correct Answer:
In the onmouseover event handler for each image, add code that calls the RaiseBubbleEvent() method of the System.Web.UI.WebControls.Image class.
Note: This Question is unanswered, help us to find answer for this one
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
Correct Answer:
Both statements 1 and 2 are true
Note: This Question is unanswered, help us to find answer for this one
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?
Correct Answer:
Response.Redirect()
Note: This Question is unanswered, help us to find answer for this one
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?
Correct Answer:
Client-side scripts
Note: This Question is unanswered, help us to find answer for this one
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?
Correct Answer:
Add a new Web user control to your ASP.NET project. Create the toolbar within the Web user control.
Note: This Question is unanswered, help us to find answer for this one
Which of the following are not true in ASP.NET?
Correct Answer:
Every try block must have a catch block
Note: This Question is unanswered, help us to find answer for this one
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?
Correct Answer:
Create a cascading style sheet
Note: This Question is unanswered, help us to find answer for this one
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)
Correct Answer:
In the Page directive for PersonalDetails.aspx, ensure that the AutoEventWireup attributes is set to "true".
Note: This Question is unanswered, help us to find answer for this one
Which of the following are false for ASP.NET events?
Correct Answer:
All of the above are true
Note: This Question is unanswered, help us to find answer for this one
ASP.NET With SQL Server MCQs | Topic-wise