Answer:
Kg to g, multiply by 1000
Therefore, 5 Kg = 5000 gms
Explanation:
Answer:
because it stores the data and downloads and prevent overheating
Explanation:
Answer: A
Explanation: Been asked before.
Answer:
of which std this question is
Answer:
//package CountByFives.java;
import java.util.*;
import java.io.*;
class Main{
public static void main(String[] args)
{
System.out.println("Enter the maiximum number of numbers");
Scanner sq1=new Scanner(System.in);
int num =sq1.nextInt();
int i=0,n=0,a=10;
while(i <=num)
{
System.out.print(i);
i+=5;
if(n==a)
{
System.out.println('\n');
n=0;
}
n=n+1;
}
}
}
Explanation:
Please check the answer section.