Internet programming and web server management. UE Past Papers Questions.


View All Courses

(1357) Question Category: Short answers

Write the output of the following program

<?php

$i=11;

$y=0;

while($i<15){

if($i%9==2)

echo”$i”.(++$y);

$i++;

}

?>

Answer / Solution

UNSOLVED

(1358) Question Category: Short answers

Write the output of the following program

<?php

$i=11;

$y=2;

while($i<19){

if($i%y==2)

echo”$i”.(++$y);

$i++;

}

?>

Answer / Solution

UNSOLVED

(1359) Question Category: Short answers

Write the output of the following program

<?php

$i=11;

$y=2;

while($i<19){

if($i%y==2)

echo”$i”.(++$y);

$i++;

}

?>

Answer / Solution

UNSOLVED

(1360) Question Category: Practical

Write a PHP script that finds and calculates sum of the odd numbers [excludes all prime numbers] that are below 2000. The program shall display the numbers and their sum.

Answer / Solution

UNSOLVED

(1361) Question Category: Practical

Write an object oriented PHP script that calculates and displays multiple of 8 of the fibonacci series elements in the range of 1 to 6000. NOTE: the Fibonacci series start like this 1,1,2,3,5,8,13,21,34,55…….

Answer / Solution

UNSOLVED


View All Courses
News & Updates | Recently
Recent Updates
questions

2024-05-02: questions

Questions Uploaded on 2024-05-02


questions

2024-03-29: questions

Questions Uploaded on 2024-03-29


questions

2024-03-19: questions

Questions Uploaded on 2024-03-19

Dismissible in 10 seconds