Sunday, January 27, 2008
ICSE Exam papers free online
Posted by
Blogger 2.o
at
12:40 AM
1 comments
Labels: 2008, computer icse, computer program, for icse students, http://icse.fairtopic.com/, icse, ICSE 2008 Exam, model test paper, Online, Online tests, Questions
Wednesday, January 23, 2008
Write a java program to display the product of two given matrices
Write a java program to display the product of two given matrices
public class Matrix
{
public static void main(String args[])
{
int a[][] ={{ 1, 2, 5 },{ 3, 4, 4 },{ 5, 6, 2 },};
int b[][] ={{ 7, 8, 9 },{ 1, 2, 3 },{ 4, 9, 5 },};
int c[][] = mult(a, b);
System.out.println("Result: ");
for (int i = 0; i < c.length; ++i)
{
System.out.print("{");
for (int j = 0; j < c.length; ++j)
{
System.out.print(" "+c[j]);
}
System.out.println("}");
}
}
public static int mult(int a[][], int b[][])[][]
{
int rows = a.length;
int cols = b[0].length;
int c[][] = new int[rows][cols];
for (int i = 0; i <>
{
for (int j = 0; j <>
{
c[j] = 0;
for (int k = 0; k <>
{
c[j]= a[k] * b[k][j]+c[j];
}
}
}
return c;
}
}
Posted by
Blogger 2.o
at
11:43 PM
0
comments
Labels: 2008, BLUEJ, computer icse, computer program, for icse students, icse, JAVA program, matrix multiplication, model test paper, Questions, Tests
Tuesday, January 22, 2008
2008 ICSE AND ISC TIME TABLE
http://icse.fairtopic.com/ 2008 ICSE TIME TAME/Exam schedule
Posted by
Blogger 2.o
at
8:40 AM
0
comments
Labels: 2008, free, icse, isc, model test paper, time table
Complete ICSE help forum
Complete ICSE help forum
ICSE Students can discuss and seek answers for their problems and issues here
http://icse.fairtopic.com/
maths,science,computer and english
forum for icse students
Free 2008 model test papers for icse
http://icse.fairtopic.com/
Posted by
Blogger 2.o
at
8:36 AM
0
comments
Labels: 2008, free, icse, isc, model test paper, time table