0

Web Technology

Description: Check your skills by yourself.
Number of Questions: 15
Created by:
Tags: Miscellaneous Web Technologies
Attempted 0/15 Correct 0 Score 0

Which of the following is a valid date function?

  1. getHour()

  2. getMinute()

  3. getSecond()

  4. getFullYear()

  5. getYears()


Correct Option: D
Explanation:

This option is correct as it returns the year of the Date object(four digits).

Which of the following statements is/are correct?

  1. indexOf()

  2. charAt()

  3. subString()

  4. split()

  5. All of these


Correct Option: E
Explanation:

Since all the options are true, so this is the correct answer.

HTTP is called a ________ protocol.

  1. stateful

  2. stateless

  3. state-aware

  4. connection oriented

  5. None of these


Correct Option: B
Explanation:

HTTP does not consider the previous request. It does not maintain any information about the state, hence it is called stateless.

Which of the following is not a search engine?

  1. Yahoo

  2. Google

  3. Blekko

  4. Bing

  5. Rediff


Correct Option: E
Explanation:

It is used for the purpose of emails or electronic messaging.

Softwares, such as chrome and opera are referred to as _____.

  1. music players

  2. modem

  3. downloader

  4. internet tools

  5. web browsers


Correct Option: E
Explanation:

They send the client request to the server and receive the response, such as chrome and opera.

The telecommunication hardware, which is used to access the internet is known as ____________.

  1. pendrive

  2. web browser

  3. key - board

  4. modem

  5. data - cable


Correct Option: D
Explanation:

It is the hardware, which helps to connect to the internet.

Which of the following does not belong to the basic CSS font property?

  1. font-family

  2. font-style

  3. font-weight

  4. font-size

  5. font-designe


Correct Option: E
Explanation:

It is not used in CSS as a font property.

destroy() method is called in a program ________.

  1. to deallocate the applet's resources

  2. automatically after the init()

  3. to initialize an applet

  4. to stop the execution of an applet


Correct Option: A
Explanation:

To deallocate the recources of an applet, destroy() method is called.

The extension of a JSP file is __________.

  1. .js

  2. .jsp

  3. .jse

  4. .jsf

  5. .json


Correct Option: B
Explanation:

This is the file extension of a JSP file. Hence, this answer is correct.

Which of the following operators is not supported by JavaScript?

  1. Arithmetic

  2. Assignment

  3. Logical

  4. Comparison

  5. Conditional


Correct Option: E
Explanation:

This is not an operator. This is a statement called conditional statement.

Which of the following is not a state in the life cycle of an applet?

  1. Born

  2. Running

  3. Idle

  4. Dead

  5. None of these


Correct Option: E
Explanation:

Since all the given options are the stages of the life cycle of an applet, hence this is the required answer.

Which of the following is not a standard object of JavaScript?

  1. Boolean

  2. Array

  3. Day

  4. Math

  5. String


Correct Option: C
Explanation:

Day is not a standard object of JavaScript, and the functions that belong to this object are Date(), getDate() etc.

Which of the following does not belong to Arithmetic JavaScript operator?

  1. ++

  2. --

  3. %

  4. +=

  5. +


Correct Option: D
Explanation:

This is an assignment operator.

To which of the following operators does ?? operator belong?

  1. Arithmatic operators

  2. Comparison operators

  3. Assignment operators

  4. String operators

  5. Logical operators


Correct Option: E
Explanation:

Logical operators are &&, ??, !, where ?? is called OR operator.

HTML code contains __________.

  1. images

  2. audio

  3. text

  4. video

  5. all of these


Correct Option: C
Explanation:

All the codes are present in the form of text.

- Hide questions