Programming - PHP
33.
Which date format character returns full textual representation of a month, such as April or October ?
Answer
m - numeric representation of a month, with leading zeros
M - short textual representation of a month, three letters
F - full textual representation of a month, such as April or October
n - numeric representation of a month, without leading zeros
Answer :
Option CExplanation :
m - numeric representation of a month, with leading zeros
M - short textual representation of a month, three letters
F - full textual representation of a month, such as April or October
n - numeric representation of a month, without leading zeros
34.
Which of the following php statement/statements will store 786 in variable num ? - int $num= 786;
- num= '786';
- $num= 786;
- 786= $num;
Answer
Answer :
Option CJump to page number :