Answer:
public class Digits
{
public static boolean allDigitsOdd(int num)
{
boolean flag=true;
int rem;
while(num>0)
{
rem=num%10;
num=num/10;
if(rem%2==0) // if a even digit found immediately breaks out of loop
{
flag=false;
break;
}
}
return flag; //returns result
}
public static void main(String args[])
{
System.out.println(allDigitsOdd(1375)); //returns true as all are odd digits
}
}
OUTPUT :
true
Explanation:
Above program has 2 static methods inside a class Digits. Logic behind above function is that a number is divided by 10 until it is less than 0. Each time its remainder by 0 is checked if even immediately breaks out of the loop.
Answer:
Graduated Drivers License process
Explanation:
It gradually develops skills, just using logic. Hope it helped!
Answer:
No you do not need a interent browzer to get to the internet.
Explanation:
Jsjsjsoos I jdkkskso I iDisks I iiddikdk I ididkkd
Answer: Software Application
Explanation: Application software is a group of programs that is designed for end users. While system software is made up of low-level programs that interact with computers at a basic level, application software is above system software and it includes applications like word processors and spreadsheets.