Q. Correct syntax to print "Hello" in PHP

  • (A) <?php echo "Hello"; ?>
  • (B) <?php echo Hello; ?>
  • (C) <php? echo "Hello"; ?>
  • (D) <?php echo "Hello" ?>
πŸ’¬ Discuss
βœ… Correct Answer: (A) <?php echo "Hello"; ?>

Q. In PHP all variables must begin with a dollar sign character?

  • (A) True
  • (B) False
  • (C) can not say
  • (D) none of these
πŸ’¬ Discuss
βœ… Correct Answer: (A) True

Q. Which one the following comment is invalid in PHP?

  • (A) //echo "Hello";
  • (B) 'echo "Hello";
  • (C) /* echo "Hello"; */
  • (D) /* //echo "Hello"; */
πŸ’¬ Discuss
βœ… Correct Answer: (B) 'echo "Hello";

Q. Is it possible to insert HTML code in PHP code?

  • (A) Yes
  • (B) No
  • (C) can not say
  • (D) none of these
πŸ’¬ Discuss
βœ… Correct Answer: (A) Yes

Q. How many types of loops are supported in PHP?

  • (A) 2
  • (B) 3
  • (C) 4
  • (D) 5
πŸ’¬ Discuss
βœ… Correct Answer: (C) 4

Q. Find correct way of declaring variables:

  • (A) $a1 = 10;
  • (B) $1a1 = 10;
  • (C) $1a = 10;
  • (D) $-a = 10;
πŸ’¬ Discuss
βœ… Correct Answer: (A) $a1 = 10;

Q. Find incorrect way of declaring variables:

  • (A) $1a = 10;
  • (B) $$$a = 10;
  • (C) $$a = 10;
  • (D) $a1 = 10;
πŸ’¬ Discuss
βœ… Correct Answer: (A) $1a = 10;

Q. what is the output of below program?

Code:
<?php

for($i=0; $i<5; $i++){
    $i = $i+1;
}

echo "$i";

?>
  • (A) 5
  • (B) 6
  • (C) 7
  • (D) 8
πŸ’¬ Discuss
βœ… Correct Answer: (B) 6

Q. what is the output of below program?

Code:
<?php

for($i=0; $i<=5; $i++){
    $i = $i+1;
}

echo "$i";

?>
  • (A) 5
  • (B) 6
  • (C) 7
  • (D) 8
πŸ’¬ Discuss
βœ… Correct Answer: (B) 6

Q. what is the output of below program?

Code:
<?php

for($i=0; $i<=5; $i++){
    $i = $i*2;
}

echo "$i";

?>
  • (A) 5
  • (B) 6
  • (C) 7
  • (D) 8
πŸ’¬ Discuss
βœ… Correct Answer: (C) 7