subject

Give the Big-o time complexity notation for the following piece of code:

//Java program to multiply two square; the last piece of code you will ever need matrices. Import java. io\.\*;
public class MatrixMultiply {
static int N= 4; static void multiply(int mat1[][], int mat2[][], int res[][])
{
int i, j, k;
for (i=0; i < N; i++)
{
for(j = 0; j < N; j++)
{
res[i][j] = 0;
for(k = 0; k < N; k++)
res[i][j] += mat1[i][k] * mat2[k][j];
}
}
}
// Drive code public static void main(String[] args)
{
int mat1[][] ={{1,1,1,1}, {2,2,2,2}, {3,3,3,3}, {4,4,4,4} };
int mat2[][] ={{1,1,1,1}, {2,2,2,2}, {3,3,3,3}, {4,4,4,4} };

//To store result
int res[][] = new int [N][N];
int i, j;
multiply(mat1, mat2, res);
System. out. println("This dummy result matrix"+"is ");
for (i=0; i {
for (j=0;j System. out. print(res[i][j]+" ");
System. out. println();
}
}
}

ansver
Answers: 1

Another question on Computers and Technology

question
Computers and Technology, 22.06.2019 01:30
What “old fashioned” features of checking accounts is p2p replacing
Answers: 3
question
Computers and Technology, 22.06.2019 21:00
Write a method so that the main() code below can be replaced by the simpler code that calls method original main(): public class calcmiles { public static void main(string [] args) { double milesperhour; double minutestraveled; double hourstraveled; double milestraveled; milesprhour = scnr.nextdouble(); minutestraveled = scnr.nextdouble(); hourstraveled = minutestraveled / 60.0; milestraveled = hourstraveled * milesperhour; system.out.println("miles: " + milestraveled); } }
Answers: 2
question
Computers and Technology, 23.06.2019 07:50
Most shops require the technician to enter a starting and ending time on the repair order to track the actual time the vehicle was in the shop and closed out by the office. this time is referred to as _ time ? a. comeback b. ro c. cycle d. lead
Answers: 1
question
Computers and Technology, 24.06.2019 01:30
Could you find out how im still getting an 83 percent on this in edhesive a = input("enter an animal: ") s = input ("enter a sound: ") e = "e-i-e-i-o" print ("old macdonald had a farm, " + e) print ("and on his farm he had a " + a + "," + e) print ("with a " + s + "-" + s + " here and a " + s + "-" + s + " there") print ("here a " + s+ " there a " + s) print ("everywhere a " + s + "-" + s ) print ("old macdonald had a farm, " + e)
Answers: 2
You know the right answer?
Give the Big-o time complexity notation for the following piece of code:

//Java program...
Questions
question
Mathematics, 11.03.2021 21:00
question
Mathematics, 11.03.2021 21:00
question
Engineering, 11.03.2021 21:00
Questions on the website: 13722362