Intra University Programming Contest 2011
Intra University Programming Contest 2011
Intra University Programming Contest 2011
Organized by
Department of Computer Science &
Engineering
IUBAT—International University of Business
Agriculture & Technology
These rules and procedures may be modified and/or extended right up to the time of the
competition.
Input
The program will ask for any number. Suppose you have given 5 as that number. Then it will show the
desired output.
Output
1. Enter One Number: 5
The output of given 5 will be:
Input
On input user will allow giving an integer number. After getting that number your program will show us
whether the given number is palindrome or not.
Output
Description
An item in a matrix is called an entry or an element. The example has entries 1, 9, 13, 20, 55, and 6.
Entries are often denoted by a variable with two subscripts, as shown bellow. Thus in the matrix above,
a2, 1 = 20.
Matrices of the same size can be added and subtracted entry wise and matrices of
compatible sizes can be multiplied.
m X n matrix
You have to write a program that will able to multiply two matrix. The first one will be 2 X 3 and second
one will be 3 X 2 matrixes.
Input
User will give the elements of the two matrixes. Then your program will show the product or
multiplication result of given matrixes.
Output Result
1 2 3 4 5 1*4+2*3+3*1 1*5+2*2+3*3
X
2 4 3 3 2 2*4+4*3+3*1 2*5+4*2+3*3
1 3 = 13 18
23 27