Basic PHP What does PHP stand for?1. Personal Home Page2. Hypertext Preprocessor3. Pretext Hypertext Processor4. Preprocessor Home Page Both 2 and 4 Both 1 and 2 Only 2 Both 1 and 3 Both 2 and 4 Both 1 and 2 Only 2 Both 1 and 3 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP PHP ..... demand that you declare a data type when you create a variable. does not does does not does ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What will be the output of the following php code?$num = "1";$num1 = "2";print $num+$num1; Error 3 12 1+2 Error 3 12 1+2 ANSWER DOWNLOAD EXAMIANS APP
Basic PHP String values must be enclosed in ...... both A and B double quotes single quotes none of above both A and B double quotes single quotes none of above ANSWER DOWNLOAD EXAMIANS APP
Basic PHP Who is the father of PHP? Willam Makepiece Drek Kolkevi List Barely Rasmus Lerdorf Willam Makepiece Drek Kolkevi List Barely Rasmus Lerdorf ANSWER DOWNLOAD EXAMIANS APP
Basic PHP What will be the output of the following code?function track() {static $count = 0;$count++;echo $count;}track();track();track(); 011 123 111 000 011 123 111 000 ANSWER DOWNLOAD EXAMIANS APP