Online Exam Quiz

questionQuestion  1 to 30

How to write an IF statement in JavaScript?

  • if i == 5 then
  • if (i == 5)
  • if i = 5 then
  • if i = 5
Mark for review

How can you make a numbered list?

  • <ul>
  • <ol>
  • <dl>
  • <list>
Mark for review

Which keyword is used to sort the result-set in SQL?

  • ORDER BY
  • SORT
  • ORDER
  • SORT BY
Mark for review

What is the correct SQL statement to create a new table?

  • CREATE TABLE
  • ADD TABLE
  • NEW TABLE
  • MAKE TABLE
Mark for review

What is the correct SQL statement to return the number of records in a table?

  • COUNT
  • NUMBER
  • COUNT RECORDS
  • NUMBER RECORDS
Mark for review

How do you insert a comment in a CSS file?

  • // this is a comment
  • /* this is a comment */
  • <!-- this is a comment -->
  • ** this is a comment **
Mark for review

Which superglobal variable holds information about headers, paths, and script locations?

  • $_GET
  • $_SERVER
  • $_POST
  • $_FILES
Mark for review

Which property is used to change the text color of an element?

  • fgcolor
  • text-color
  • color
  • font-color
Mark for review

What does CSS stand for?

  • Creative Style Sheets
  • Cascading Style Sheets
  • Computer Style Sheets
  • Colorful Style Sheets
Mark for review

How do you create a function in JavaScript?

  • function = myFunction()
  • function myFunction()
  • function()
  • function => myFunction()
Mark for review

Which SQL statement is used to update data in a database?

  • MODIFY
  • UPDATE
  • CHANGE
  • ALTER
Mark for review

What does HTML stand for?

  • Hyper Text Markup Language
  • Home Tool Markup Language
  • Hyperlinks and Text Markup Language
  • Hyper Tool Markup Language
Mark for review

Which operator is used to assign a value to a variable?

  • *
  • -
  • =
  • x
Mark for review

Which SQL statement is used to create a database?

  • CREATE DATABASE
  • CREATE DB
  • NEW DATABASE
  • MAKE DATABASE
Mark for review

How do you make a list that lists its items with squares?

  • list-style-type: square;
  • list-type: square;
  • list-square-type: square;
  • list: square;
Mark for review

Which method sends input to a PHP script via URL?

  • GET
  • POST
  • REQUEST
  • SERVER
Mark for review

How does a FOR loop start?

  • for (i = 0; i <= 5)
  • for (i = 0; i <= 5; i++)
  • for i = 1 to 5
  • for (i <= 5; i++)
Mark for review

Which of the following is used to get the length of a string in PHP?

  • len()
  • strlen()
  • count()
  • str_length()
Mark for review

How to write an IF statement for executing some code if "i" is NOT equal to 5?

  • if (i <> 5)
  • if i <> 5
  • if (i != 5)
  • if i =! 5 then
Mark for review

What will the following code return: Boolean(10 > 9) ?

  • TRUE
  • FALSE
  • NaN
  • undefined
Mark for review

Which HTML element is used to specify a footer for a document or section?

  • <footer>
  • <bottom>
  • <section>
  • <foot>
Mark for review

What is the correct HTML element for the largest heading?

  • <h1>
  • <h6>
  • <heading>
  • <head>
Mark for review

Which of the following is a PHP loop structure?

  • for
  • foreach
  • while
  • All of the above
Mark for review

Which event occurs when the user clicks on an HTML element?

  • onmouseover
  • onchange
  • onclick
  • onmouseclick
Mark for review

Which property is used to change the background color?

  • color
  • bgcolor
  • background-color
  • background
Mark for review

What does PHP stand for?

  • Personal Home Page
  • Private Home Page
  • PHP: Hypertext Preprocessor
  • Private Hypertext Processor
Mark for review

How do you declare a JavaScript variable?

  • var carName;
  • variable carName;
  • v carName;
  • string carName;
Mark for review

Which SQL clause is used to filter records?

  • WHERE
  • FILTER
  • HAVING
  • LIMIT
Mark for review

What is the correct way to create a function in PHP?

  • function myFunction()
  • create function myFunction()
  • new_function myFunction()
  • myFunction()
Mark for review

Is JavaScript case-sensitive?

  • No
  • Yes
  • Only in strings
  • Only in numbers
Mark for review

blinkerOnline

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • Answered
  • Not Answered
  • Marked for Review