0

web technology Online Quiz - 94

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

Given there is non null data for Login column of Employee table, Running the statement "SELECT [LOGIN] FROM EMPLOYEE WHERE [LOGIN] <> NULL " will give the correct result only after executing which statement?

  1. SET ANSI_NULLS ON

  2. SET ANSI_NULLS OFF

  3. SET CONCAT_NULL_YIELDS_NULL ON

  4. SET CONCAT_NULL_YIELDS_NULL OFF


Correct Option: B

A c++ program can have two main functions

  1. True

  2. False


Correct Option: A

Which tag makes the largest headline?

  1. H1

  2. H2

  3. H3

  4. H4


Correct Option: A

The line below is called a _______________.

  1. Heavy Rule

  2. Horizantal Rule

  3. Hard Return

  4. HyperText Return


Correct Option: B

HTML is ___________.

  1. a company that provides access to the Internet.

  2. common questions and answers.

  3. the language of the Web.

  4. common graphic format on the Web.


Correct Option: C

What is the HTML feature that divides a web page into two or more scrollable parts?

  1. Split Page

  2. Frame

  3. Form

  4. Table


Correct Option: B

A table is a _____.

  1. ARPAnet.

  2. input area on a web page.

  3. method used to keep web pages formatted correctly.

  4. an interent activity that involves synthesis of information.


Correct Option: C

A form is an _____.

  1. an interent activity that involves synthesis of information.

  2. method used to keep web pages formatted correctly.

  3. input area on a web page.

  4. ARPAnet.


Correct Option: C

Target=_blank specifies that a

  1. the page will shut down.

  2. the page is defined as a target and will be found by the arrow command.

  3. window will open blank.

  4. when clicking a link, it will open in a new window.


Correct Option: D

HTML has a set of rules under which it operates. What is it called?

  1. Syntax

  2. Tags

  3. Dialog

  4. Laws


Correct Option: A
Explanation:

To solve this question, the user needs to have basic knowledge of HTML. The user should know that HTML is a markup language that has a defined set of rules for writing valid code.

The correct answer is:

A. Syntax

Option A is the correct answer because the set of rules that govern the structure and format of HTML code is called its syntax. The syntax of HTML follows a specific set of rules that define how elements can be combined to create valid web pages.

Option B is incorrect because tags are the building blocks of HTML elements and are used to define and format content.

Option C is incorrect because dialog is not related to HTML; it is a user interface component that displays content to the user.

Option D is incorrect because HTML does not have laws; it has rules that define the structure and format of valid HTML code.

Therefore, the correct answer is:

The Answer is: A. Syntax

Which part of the HTML document would you find you META tag information?

  1. Body

  2. Title

  3. Form

  4. Head


Correct Option: D

To center, right or left justify text or an image, what code would I use?

  1. justify

  2. align

  3. push

  4. send


Correct Option: B

Enable, form, name, type, and value are all ________.

  1. events

  2. methods

  3. properties

  4. elements


Correct Option: C

onBlur, onClick, and onFocus are all ______ handlers.

  1. elements

  2. properties

  3. methods

  4. events


Correct Option: D

What is JSF?

  1. Programming language.

  2. Protocol.

  3. Framework.

  4. Web server.


Correct Option: C

What is JSF?

  1. Programming language.

  2. Protocol.

  3. Framework.

  4. Web server.


Correct Option: C

JSF implements MVC (Model, View, and Controller) design pattern.

  1. True

  2. False


Correct Option: A

Which is not provided by JSF?

  1. Validator

  2. Converters

  3. Exception handler

  4. Event listeners


Correct Option: C

Which is the 3rd phase of the JSF application lifecycle?

  1. Invoke application.

  2. Apply request values

  3. Update model values

  4. Process validations


Correct Option: D

Class C { public static void main(String[] args) { int[]a1[]=new int[3][3]; //3 int a2[4]={3,4,5,6}; //4 int a2[5]; //5 }} What is the result of attempting to compile and run the program ?.

  1. compiletime error at lines 3,4,5

  2. compiltime error at line 4,5

  3. compiletime error at line 3

  4. Runtime Exception


Correct Option: B
- Hide questions