Answer:
Probably "compress", but these days the common answer is "upload to cloud".
Explanation:
Compressing the files is an easy way to reduce their size, unless most of the size is in already compressed, high-entropy formats (like mp3, jpeg or mp4).
The common compression format is .ZIP - you've probably seen it countless times, but other ways like RAR, 7Z are also popular, while Linux users mostly deal with tar.gz, tar.bz2 or tar.xz
On the other hand, the standard practice these days is to upload the presentation to a cloud service, like GSheets or Office PowerPoint 365, which gets rid of the limits of email filesize, while providing a convenient web-app way to view the presentation without downloading (and it doesn't clutter their inbox space or hard drives)! Alternatively, one other way to email any large file (not just a presentation) includes uploading it to some service like DropBox, GDrive or anything similar.
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.
The type of document should she create is baseline document. Check more about the term Baseline below.
<h3>What is a Baseline document?</h3>
A Baseline document is known to be a kind official or legalized document that has passed through some measures of start approval and was used for its purpose.
Note that for Lin to be able to make the template for the configuration of Windows servers, the type of document that she can create is baseline document.
Learn more about Windows servers from
brainly.com/question/14526761
#SJ1
"start", "control panel", "administrative tools", "computer management" thats it
It's Binary code simple as that its made of 8 1's and 0's