Search

Google
 
Showing posts with label 2008. Show all posts
Showing posts with label 2008. Show all posts

Sunday, January 27, 2008

ICSE Exam papers free online

visit http://www.syvum.com/exam/icse/

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;
}
}

Tuesday, January 22, 2008

2008 ICSE AND ISC TIME TABLE

http://icse.fairtopic.com/ 2008 ICSE TIME TAME/Exam schedule

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/