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.

19 Questions Published

Questions

Question 1 True/False

HTML Tags are case sensitive.

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

What will happen when we evaluate ISNULL(5.8)

  1. a. gives 1
  2. b. throw an error
  3. c. gives 2
  4. d. will not evaluate.
Question 3 Multiple Choice (Single Answer)

How to find out which project the current shell is a member of?

  1. ps
  2. psrinfo
  3. id -p
  4. ps -ef
Question 4 Multiple Choice (Single Answer)

Which of the following path is supported by HTML?

  1. Relative
  2. Absolute
  3. Absolute and Relative
  4. Deferenced
Question 5 True/False

You cannot designate an inline image as a hypertext link.

  1. True
  2. False
Question 6 True/False

Can you create an e-mail form with auto responder using form action method=mailto:youdomainname.com?

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

There are_____color names recognized by all version of HTML

  1. 6
  2. 8
  3. 18
  4. 256
Question 8 True/False

If you want to increase the font size by 2 relative to the sorounding text, you enter +2 in the tag.

  1. True
  2. False
Question 9 True/False

H1 is the smallest header tag.

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

The page title is inside the ____ tag.

  1. Body
  2. Head
  3. Division
  4. Table
Question 11 Multiple Choice (Single Answer)

What does XHTML stand for?

  1. EXtreme HyperText Markup Language
  2. EXtensible HyperText Marking Language
  3. EXtensible HyperText Markup Language
  4. EXtra Hyperlinks and Text Markup Language
Question 12 Multiple Choice (Single Answer)

As per the Oracle Performance Tuning source, the major reason for poor performance is

  1. Design
  2. Database
  3. System
  4. Program
Question 13 Multiple Choice (Single Answer)

What is true about COST column in the Explain Plan output?

  1. COST is SUBJECTIVE
  2. COST is RELATIVE
  3. COST is OBJECTIVE
  4. COST is SELECTIVE
Question 14 Multiple Choice (Multiple Answers)

What are the advantages of using CASE statement?

  1. Combines multiple scans
  2. Reduce number of calls to the database
  3. Performs many small scans as compared to one large scan
  4. Makes more smaller calls to the database as compared to one large call
Question 15 Multiple Choice (Single Answer)

Name the operation which UNION ALL skips when compared to UNION?

  1. HASH JOIN
  2. SORT UNIQUE
  3. TABLE FULL ACCESS
  4. INDEX RANGE SCAN
Question 16 True/False

Asp.net 3 and 3.5 does not have an independent machine.config file

  1. True
  2. False
Question 17 True/False

Declaring EnableViewState="false" at page level will make a Textbox not to retain it's value between postbacks.

  1. True
  2. False
Question 18 True/False

An Asp.net page can have only one server-side Form tag.

  1. True
  2. False
Question 19 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.

  1. True
  2. False