0

web technology Online Quiz - 14

Description: web technology Online Quiz - 14
Number of Questions: 20
Created by:
Tags: web technology
Attempted 0/20 Correct 0 Score 0

HTML Tags are case sensitive.

  1. True

  2. False


Correct Option: A

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.


Correct Option: D

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

  1. ps

  2. psrinfo

  3. id -p

  4. ps -ef


Correct Option: C

Which of the following path is supported by HTML?

  1. Relative

  2. Absolute

  3. Absolute and Relative

  4. Deferenced


Correct Option: C
Explanation:

To solve this question, the user needs to have a basic understanding of HTML and file paths.

The correct answer is:

C. Absolute and Relative

Explanation:

HTML supports both absolute and relative file paths.

Absolute file paths specify the complete address of the file, starting from the root directory. They include the protocol, domain name, and the complete path to the file. For example, "http://www.example.com/images/picture.jpg".

Relative file paths, on the other hand, specify the path to the file relative to the current page. They do not include the protocol or domain name. For example, "images/picture.jpg".

Option D, "Deferenced", is not a valid type of file path in HTML.

Therefore, the correct answer is C. Absolute and Relative.

You cannot designate an inline image as a hypertext link.

  1. True

  2. False


Correct Option: A
Explanation:

To solve this question, the user needs to know the basics of hypertext links and inline images.

Inline images are images that are displayed directly within the content of a web page or document. Hypertext links, on the other hand, are clickable links that direct the user to another page or resource.

Now, let's go through each option and explain why it is right or wrong:

A. True: This option is correct. Inline images cannot be designated as hypertext links. While you can make an image clickable, it will still be an inline image rather than a hypertext link.

B. False: This option is incorrect. Inline images cannot be designated as hypertext links, so the statement "You cannot designate an inline image as a hypertext link" is true.

Therefore, the answer is: A. True.

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

  1. True

  2. False


Correct Option: B

AI Explanation

To answer this question, you need to understand how the form action method "mailto" works and its limitations.

Option A) True - This option is incorrect. The form action method "mailto" allows you to specify an email address to which the form data will be sent when the form is submitted. However, it does not have the capability to automatically send an autoresponder email to the person who submitted the form. The "mailto" method only opens the default email client on the user's device with the pre-filled email address, subject, and body.

Option B) False - This option is correct. The form action method "mailto" does not support autoresponder functionality. If you want to implement an autoresponder for form submissions, you would need to use a server-side scripting language like PHP, JavaScript, or a third-party service to handle the form submission, process the data, and send an automated response email.

The correct answer is B) False. The form action method "mailto" does not provide autoresponder functionality.

There are_____color names recognized by all version of HTML

  1. 6

  2. 8

  3. 18

  4. 256


Correct Option: B

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


Correct Option: A

H1 is the smallest header tag.

  1. True

  2. False


Correct Option: B

The page title is inside the ____ tag.

  1. Body

  2. Head

  3. Division

  4. Table


Correct Option: B

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


Correct Option: B

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

  1. Design

  2. Database

  3. System

  4. Program


Correct Option: D

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


Correct Option: B

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


Correct Option: A,B

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


Correct Option: B

Which Level is used for RENAMES Clause?

  1. 66

  2. 77

  3. 88

  4. 01


Correct Option: A

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

  1. True

  2. False


Correct Option: A

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

  1. True

  2. False


Correct Option: B

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

  1. True

  2. False


Correct Option: A

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


Correct Option: A
- Hide questions