You are on page 1of 1

Assignment

** No Late Submission will not be accepted


** Copy is strictly prohibited
01 Write a PHP program that takes three sequence of
numbers, reverses their digits, and prints their sum.

Example: Inputs: 123 234 12 Outputs: 774


For better understanding: 321 + 432 + 21 = 774
02 Write a PHP program that finds the most frequent number
in a given sequence of numbers.

Example: Input: 4 1 1 4 2 3 4 4 1 2 4 9 3
Output: The number 4 is the most frequent (occurs 5
times)

03 Write a program to create Chess board (8 * 8 white and


black board as like real chess board) in PHP using while
loop.

04 Write a PHP program which will give you all of the


potential combinations except the repeat numbers (i.e. 00,
11, 22 and so one) of a two-digit decimal combination,
printed in a comma delimited format.

You might also like