logo

Crowdly

Browser

Add to Chrome

Questions Bank (1358172 total)

У пацієнта після прийому антибіотиків з’явилися множинні еритематозні плями на тулубі та кінцівках, деякі з яких трансформуються в пухирі. Який найбільш імовірний діагноз?

0%
0%
0%
0%
0%
View this question

GET and POST data sent to a PHP script are accessible using the ________ and ________ superglobal arrays.

0%
0%
100%
0%
View this question

Client-side scripting and server-side scripting can be used on the same webpage.

0%
0%
View this question

What will be the output of the following PHP code?

<?php

$i = "";

while ($i = 10)

{   

    print "hi";

}

print "hello";

?>

100%
0%
0%
0%
View this question

What will be the output of the following PHP code?

<?php 

$states = array(

"Karnataka" => array(

"population" => "11,35,000",

"capital" => "Bangalore"),

"Tamil Nadu" => array(

"population" => "17,90,000",

"capital" => "Chennai")

);

echo $states["Karnataka"]["population"];

?>

 

0%
100%
0%
0%
View this question

The following about hash is true except:

100%
0%
0%
0%
View this question

What will be the output of the following PHP code?

<?php

for ($x = 0; $x <= 10; print ++$x)

{

    print ++$x;

}

?>

0%
0%
0%
0%
View this question

PHP code is ____________________________.

 

 

0%
0%
100%
0%
View this question

What will be the output of the following PHP code?

<?php

$i = 5;

while (--$i > 0)

{   

    $i++;

    print $i;

    print "hello";

}

?>

100%
0%
0%
0%
View this question

Which of the following are PHP data types:

0%
0%
0%
View this question