Online Exam Quiz

questionQuestion  1 to 30

Which method sends input to a PHP script via URL?

  • GET
  • POST
  • REQUEST
  • SERVER
Mark for review

Which SQL statement is used to delete data from a database?

  • DELETE
  • REMOVE
  • ERASE
  • DROP
Mark for review

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

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

Which of the following is a PHP loop structure?

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

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 do you call a function named "myFunction"?

  • call myFunction()
  • call function myFunction()
  • myFunction()
  • Call.myFunction()
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

How does a WHILE loop start?

  • while (i <= 10)
  • while (i <= 10; i++)
  • while i = 1 to 10
  • while (i < 10)
Mark for review

Which SQL function is used to calculate the average value of a numeric column?

  • AVG
  • SUM
  • MEAN
  • AVERAGE
Mark for review

What is the correct way to include a PHP file?

  • <?php include "filename"; ?>
  • <?php include_file("filename"); ?>
  • <?php require("filename"); ?>
  • <?php require_file("filename"); ?>
Mark for review

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

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

Which property is used to change the background color?

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

Which HTML element defines the title of a document?

  • <meta>
  • <title>
  • <head>
  • <body>
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

How do you declare a JavaScript variable?

  • var carName;
  • variable carName;
  • v carName;
  • string carName;
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

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

  • onmouseover
  • onchange
  • onclick
  • onmouseclick
Mark for review

What does PHP stand for?

  • Personal Home Page
  • Private Home Page
  • PHP: Hypertext Preprocessor
  • Private Hypertext Processor
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

How can you make a numbered list?

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

Which property is used to change the font of an element?

  • font-family
  • font-style
  • font-weight
  • font
Mark for review

Which SQL clause is used to group records by one or more columns?

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

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

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

Which SQL statement is used to create a database?

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

How can you change "Hannah" into "Hana" in the "FirstName" column of the "Students" table?

  • UPDATE Students SET FirstName='Hana' WHERE FirstName='Hannah';
  • CHANGE Students SET FirstName='Hana' WHERE FirstName='Hannah';
  • MODIFY Students SET FirstName='Hana' WHERE FirstName='Hannah';
  • ALTER Students SET FirstName='Hana' WHERE FirstName='Hannah';
Mark for review

How do you create a function in JavaScript?

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

What does JS stand for?

  • JavaStyle
  • JavaScript
  • JustScript
  • JScript
Mark for review

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

  • MODIFY
  • UPDATE
  • CHANGE
  • ALTER
Mark for review

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

  • TRUE
  • FALSE
  • NaN
  • undefined
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

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