ASP.NET Web Applications Fundamentals
Questions covering ASP.NET web development concepts including data binding, database connectivity, controls, validation, and page lifecycle.
Questions
A program in ASP.NET shows the list of errors as bulleted list. What is this program named?
- Validation summary
- Program Summary
- Error Summary
- Error control
- None of above
What is/are the concept(s) of data binding?
- Creating source database tables
- Creating maximum and minimum bounds
- Pulling all data tables in one memory block
- Both 2 and 3
- Creating an HTML page
A .NET technology is able to interface with both SQL server .NET and OLEDB.NET. Which concept is also supported by this technology?
- Validation data control
- Validation data summary
- Data binding
- Error data control
- None of above
One can communicate with database by putting __________ directly with in ASP.
- MDAC
- ADOX
- ADOMD
- ADO
- Both 2 and 4
Who displays data grid in ASP.NET?
- Data source view
- Tree view
- Page view
- Form View
- Menu view
Which of the following is/are not opened by a connection with SQL server?
- OLEDB provider
- Data source
- User location
- Database
- All of the above
OleDb Adapter is an example of which database programming?
- Stream based data access
- Set based data access
- Both 1 and 2
- Buffer based data access
- Grid view based data access
Which makes the final HTML representation in a web before the page is sent to client?
- JavaScript code
- ASP.NET
- focus() method
- DHTML
- Java code
An HTML code has finished processing and the page rendered, the ASP.NET adds an extra ____________.
- block of JavaScript code
- focus()
- ASP code
- both 1 and 3
- HTML code
Which of the following are the two handlers of Table page class?
- Border of table handler and dynamic creater of row and cell
- Row handler and cell handler
- Border handler and size handler
- Column handler and cell handler
- None of the above
A user uses explicit submit button in a ASP.NET based web to avoid
- slowness in the time consuming option
- fast connection system
- recreation of objects
- repetitions
- none of the above
Why are the Exception Handlers in ASP.NET program overlapped in many applications?
- The upcoming exception needs more than one handler.
- Different upcoming exceptions can be filtered out different types of problems.
- Single up coming exception can be filtered out different types of problems.
- Different upcoming exceptions can be combined to have one problem only.
- None of the above
When clicked on the button having following code, which page view will be shown by ASP.NET?
asp:Buttton ID = Button 1 run at = server Command Argument = View 15Command Name = SwitchView by ID Text = Go To View
(Note: Tags are not shown here.)
- View 1
- View 2
- View 15
- View 14
- View 5
Following is the first view code of ASP.NET program section:
MultiView1.ActiveViewIndex = 0;
What should be the code for fifteenth view?
- MultiView15.ActiveViewIndex = 0;
- MultiView14.ActiveViewIndex = 0;
- MultiView15.ActiveViewIndex = 14;
- MultiView15.ActiveViewIndex = 15;
- MultiView0.ActiveViewIndex =15;
Why will the control not appear in a page, when a visible property of a control is set to false?
- Because HTML code is generated for hiding the control.
- Because it will not appear in visual studio design surface.
- Because HTML code is not generated.
- Both 1 and 2
- Because the control has not been selected .