Answer:
NTFS (New Technology File System) or FAT(File Allocation Table) are used to direct read/write arm of hard drive to where data exists and access it upon user's request
Explanation:
Both NTFS and FAT are used but NTFS is fast and optimal and superseed the FAT and supported by windows NT 3.1 and later versions.
The set Canvas.PaintColor to block is a code that sets the paint color for the: D. canvas.
<h3>What is a canvas?</h3>
In Computer technology and graphics design, a canvas can be defined as a container that is literally used to hold various drawing elements in a graphics design software such as:
In conclusion, the set Canvas.PaintColor to block is a code that is typically used to set the paint color for the canvas in a graphic design software.
Read more on graphic design here: brainly.com/question/25299426
#SPJ1
Answer:
Explanation:
El siguiente codigo esta escrito en Java. Le pide al usario que marque la edad. Despues el programa analiza la edad y imprime a la pantalla si el usario es mayor de edad o menor de edad. El programa fue probado y el output se puede ver en la imagen abajo.
import java.util.Scanner;
class Brainly
{
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
System.out.println("Cual es tu edad?");
int age = in.nextInt();
if (age > 18) {
System.out.println("Mayor de Edad");
} else {
System.out.println("Menor de Edad");
}
}
}
Answer:
it would show What is your name? on the screen and you would be able to input your name
Explanation: