100% satisfaction guarantee Immediately available after payment Both online and in PDF No strings attached
logo-home
PHP Exam Questions With Answers Graded A+ $10.29   Add to cart

Exam (elaborations)

PHP Exam Questions With Answers Graded A+

 6 views  0 purchase
  • Course
  • Institution

PHP Exam Questions With Answers Graded A+ when should you use single quotes? when there are no variables in the string; if you use single quotes, PHP will not search for variables to replace, which can enhance speed. when should you use double quotes? when a variable contains any amount of ...

[Show more]

Preview 2 out of 13  pages

  • June 8, 2024
  • 13
  • 2023/2024
  • Exam (elaborations)
  • Questions & answers
avatar-seller
PHP Exam Questions With Answers Graded
A+
when should you use single quotes?
when there are no variables in the string; if you use single quotes, PHP will not search for variables to
replace, which can enhance speed.


when should you use double quotes?
when a variable contains any amount of variables; in general.


can variable names begin with numbers?
no.


can variable names begin with underscores?
yes.


can variable names contain symbols?
no.


are variable names case-sensitive?
yes.


what should be used to have multiple quotations in one string?
the escape character '\':
$string = "I said \"Hello\" to the man.";


can a string with numbers be used as a number?
yes.
$string = "2";
can be used as
$string = 2;
can be used.


what character must all variables begin with?
the dollar sign $.


is data shown in the URL if GET is used?
yes; use for search engines, catalogued pages, pages that would be bookmarked.


is data shown in the URL if POST is used?
no; use for passwords, pages that would not be bookmarked, pages that require security.


what should the action attribute's value contain?
the URL to the php script that will handle the information in the form.

, where is data sent using POST found?
predefined variable $_POST


where is data sent using GET found?
predefined variable $_GET


what type of variable is $_SERVER
$_SERVER is a predefined variable.


what type of variable is $_POST?
predefined variable.


what type of variable is $_GET?
predefined variable.


will print $_POST work? why or why not?
no, because you cannot use the print function on arrays.


will print $_GET work? why or why not?
no, because you cannot use the print function on arrays.


will print $_SERVER work? why or why not?
no, because you cannot use the print function on arrays.


what can be used to print data in an array?
not print; print_r (human readable) can be used.


can arrays contain arrays?
yes, they commonly do contain arrays.


what is an 'index' or 'key'?
what is referred to for a value within an array.
$_POST['name'] may be equal to 'Jane Doe'
$cards[4] may be equal to 'BMW'


what will happen if $_POST['name'] is used in double quotes?
a parse error will occur, to avoid this, create shorthand variables like:
$name1 = $_POST['name1'];
$name2 = $_POST['name2'];


how do you know what to use to get a value from POST or GET?
they are the values of the name attributes of the input tags in the form.
$_POST['name'] or $_GET['name'] refers to the value of <input name="name" /> (depending on the
method of the form).

The benefits of buying summaries with Stuvia:

Guaranteed quality through customer reviews

Guaranteed quality through customer reviews

Stuvia customers have reviewed more than 700,000 summaries. This how you know that you are buying the best documents.

Quick and easy check-out

Quick and easy check-out

You can quickly pay through credit card or Stuvia-credit for the summaries. There is no membership needed.

Focus on what matters

Focus on what matters

Your fellow students write the study notes themselves, which is why the documents are always reliable and up-to-date. This ensures you quickly get to the core!

Frequently asked questions

What do I get when I buy this document?

You get a PDF, available immediately after your purchase. The purchased document is accessible anytime, anywhere and indefinitely through your profile.

Satisfaction guarantee: how does it work?

Our satisfaction guarantee ensures that you always find a study document that suits you well. You fill out a form, and our customer service team takes care of the rest.

Who am I buying these notes from?

Stuvia is a marketplace, so you are not buying this document from us, but from seller ACADEMICAIDSTORE. Stuvia facilitates payment to the seller.

Will I be stuck with a subscription?

No, you only buy these notes for $10.29. You're not tied to anything after your purchase.

Can Stuvia be trusted?

4.6 stars on Google & Trustpilot (+1000 reviews)

73314 documents were sold in the last 30 days

Founded in 2010, the go-to place to buy study notes for 14 years now

Start selling
$10.29
  • (0)
  Add to cart