Question
Question 2 What do you use to separate multiple arguments that are passed to a function? comma , period . forward slash / back slash
Question 2
What do you use to separate multiple arguments that are passed to a function?
comma ,
period .
forward slash /
back slash \
Question 3
Line comments can be added in PHP by adding ________ at the front of the comment line.
//
||
\\
..
Question 4
Which of the below options is a valid variable name?
$myNewVariable
$1LoveVariables
allTheseVaraibles
1LastTry
Question 5
Which of the following has the correct syntax to declare variable and assign a value?
$myNum = 1;
$myNum = 1
myNum = 1;
$myNum == 1;
Question 6
PHP requires instructions to be terminated with a ____________ .
;
:
#
//
Question 7
Which of the follow is a Boolean value? (Select 2)
TRUE
FALSE
YES
OR
Question 8
Which of the following refers to the first element in an indexed array named $aArray[]?
$aArray[0]
$aArray[1]
$aArray[First]
$aArray[]
Question 9
What is the value of the expression 3 * 2 + 7?
13
27
23
11
Question 10
The logical And (&&) operator returns TRUE if ...
the right operand is TRUE and the left operand is TRUE
the right operand is TRUE
the left operand is TRUE
the right operan is FALSE and the left operand is TRUE
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started