Answer:
12/5
Step-by-step explanation:
All you do is multiply
The volume of cube and rectangular prism are same. Option B.
Step-by-step explanation:
Given,
The length of the edge of the cube (a) = 5 cm
The dimension of rectangular prism (l×b×h) = 5 cm×25 cm×1 cm
To find the relation between the volume of cube and rectangular prism.
Formula
The volume of a cube = a³ cube cm
The volume of rectangular prism = l×b×h cube cm
Now,
The volume of a cube = 5³ cube cm = 125 cube cm
The volume of rectangular prism = 5×25×1 cube cm = 125 cube cm
Hence,
The volume of cube and rectangular prism are same.
Answer:
B
Step-by-step explanation:
1/6x+ 4/6x = -4/6
5/6x= -4/6
x=( -4/6)/ (-5/6)
x= 4/5
Answer:
36/60 =6/10
Step-by-step explanation:
36/60 = 0.6
6/10=0.6
#include <stdio.h> #include <stdlib.h>
// Function to perform division (x / y) of two numbers x and y. // without using division operator in the code. int divide(int x, int y)
{ // handle divisibility by 0. if (y == 0)
{ printf("Error!! Divisible by 0"); exit(1);
} // store sign of the result.
int sign = 1; if (x * y < 0)