Podcast
Questions and Answers
Which SQL statement is used to insert a row in a table?
Which SQL statement is used to insert a row in a table?
- DELETE *
- INSERT INTO (correct)
- SELECT FROM
- UPDATE
Which logical operator displays a record only if both the first and second conditions are true?
Which logical operator displays a record only if both the first and second conditions are true?
- AND (correct)
- OR
- NAND
- NOT
What is the attribute name used to specify the file where values entered by a site visitor should be sent?
What is the attribute name used to specify the file where values entered by a site visitor should be sent?
- method
- action (correct)
- value
- target
In PHP, which file will a PHP server process?
In PHP, which file will a PHP server process?
What is the best datatype in PHP to store currency values?
What is the best datatype in PHP to store currency values?
What function in PHP is commonly used to display the current time in hour-minute format?
What function in PHP is commonly used to display the current time in hour-minute format?
Which operator is used to concatenate two strings in PHP?
Which operator is used to concatenate two strings in PHP?
What does the 'break;' statement do in PHP?
What does the 'break;' statement do in PHP?
In PHP, what does the error control operator '@' do?
In PHP, what does the error control operator '@' do?
What value is printed for 'a' in the given PHP code <?php $a = 1; function Test () { echo 'a = $a'; } Test(); ?>?
What value is printed for 'a' in the given PHP code <?php $a = 1; function Test () { echo 'a = $a'; } Test(); ?>?
In PHP, how do you get information from a form submitted using the 'get' method?
In PHP, how do you get information from a form submitted using the 'get' method?
Which SQL statement is used to insert new data into a database?
Which SQL statement is used to insert new data into a database?
Flashcards are hidden until you start studying