Web Technologies: ASP.NET, SQL, and HTML Basics
Test your knowledge of fundamental web technologies including ASP.NET, SQL database operations, and HTML markup. Covers server-side forms, ViewState, SQL queries, and HTML structure.
Questions
HTML Tags are case sensitive.
- True
- False
What will happen when we evaluate ISNULL(5.8)
- a. gives 1
- b. throw an error
- c. gives 2
- d. will not evaluate.
How to find out which project the current shell is a member of?
- ps
- psrinfo
- id -p
- ps -ef
Which of the following path is supported by HTML?
- Relative
- Absolute
- Absolute and Relative
- Deferenced
You cannot designate an inline image as a hypertext link.
- True
- False
Can you create an e-mail form with auto responder using form action method=mailto:youdomainname.com?
- True
- False
There are_____color names recognized by all version of HTML
- 6
- 8
- 18
- 256
If you want to increase the font size by 2 relative to the sorounding text, you enter +2 in the tag.
- True
- False
H1 is the smallest header tag.
- True
- False
The page title is inside the ____ tag.
- Body
- Head
- Division
- Table
What does XHTML stand for?
- EXtreme HyperText Markup Language
- EXtensible HyperText Marking Language
- EXtensible HyperText Markup Language
- EXtra Hyperlinks and Text Markup Language
As per the Oracle Performance Tuning source, the major reason for poor performance is
- Design
- Database
- System
- Program
What is true about COST column in the Explain Plan output?
- COST is SUBJECTIVE
- COST is RELATIVE
- COST is OBJECTIVE
- COST is SELECTIVE
What are the advantages of using CASE statement?
- Combines multiple scans
- Reduce number of calls to the database
- Performs many small scans as compared to one large scan
- Makes more smaller calls to the database as compared to one large call
Name the operation which UNION ALL skips when compared to UNION?
- HASH JOIN
- SORT UNIQUE
- TABLE FULL ACCESS
- INDEX RANGE SCAN
Asp.net 3 and 3.5 does not have an independent machine.config file
- True
- False
Declaring EnableViewState="false" at page level will make a Textbox not to retain it's value between postbacks.
- True
- False
An Asp.net page can have only one server-side Form tag.
- True
- False
A cast between datatypes can give you illegal values where as a Convert will throw error if you try to do illegal operations.
- True
- False