Online Exam Quiz

questionQuestion  1 to 30

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

  • GET
  • OPEN
  • EXTRACT
  • SELECT
Mark for review

Which method sends input to a PHP script via URL?

  • GET
  • POST
  • REQUEST
  • SERVER
Mark for review

Which of the following is a PHP loop structure?

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

Which function is used to start a session in PHP?

  • session_start()
  • session()
  • start_session()
  • session_begin()
Mark for review

Which operator is used in PHP for concatenation?

  • .
  • +
  • &
  • *
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

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

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

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

  • font-family
  • font-style
  • font-weight
  • font
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 define a constant in PHP?

  • const
  • define
  • constant
  • define_constant
Mark for review

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

  • *
  • -
  • =
  • x
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 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

What is the correct syntax to open a file in PHP?

  • fopen("filename", "mode");
  • open("filename", "mode");
  • openfile("filename", "mode");
  • file_open("filename", "mode");
Mark for review

Which SQL statement is used to create a database?

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

What does CSS stand for?

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

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

  • AVG
  • SUM
  • MEAN
  • AVERAGE
Mark for review

How can you make a numbered list?

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

Which property is used to change the background color?

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

How do you call a function named "myFunction"?

  • call myFunction()
  • call function myFunction()
  • myFunction()
  • Call.myFunction()
Mark for review

How do you declare a JavaScript variable?

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

What does JS stand for?

  • JavaStyle
  • JavaScript
  • JustScript
  • JScript
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 event occurs when the user clicks on an HTML element?

  • onmouseover
  • onchange
  • onclick
  • onmouseclick
Mark for review

Is JavaScript case-sensitive?

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

Which keyword is used to declare a class in PHP?

  • class
  • declare
  • new
  • function
Mark for review

How do you select an element with id "demo"?

  • #demo
  • .demo
  • demo
  • *demo
Mark for review

Which HTML element defines the title of a document?

  • <meta>
  • <title>
  • <head>
  • <body>
Mark for review

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

  • MODIFY
  • UPDATE
  • CHANGE
  • ALTER
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