Answer:
¿???????????? SORRY..........
The area of the system that you need to go to identify and confirm your suspicions is Dump files.
<h3>What is a dump file?</h3>
Memory Dump Files is known as .dmp files. They are called the the quick shots of a specific memory of a program that is often taken at a particular point in time, such as in a crash.
Note that Dump files are also called special type of files that saves information regarding your computer such as the video crash. So the right place to check is the dump files.
Learn more about video driver from
brainly.com/question/13835124
In your "count spaces method" before the for loop, you want to declare an int variable (let's call it spc)
then, each time you find that charat, spc++.
also, the string must be declared in the main method, not the spaces count method.
The actual code:
public class CountSpaces{
public static void main(String[] args){
String instring = "(your quote here)";
int spaces = calculateSpaces(instring);
System.out.println("The number of spaces is " + spaces);
}
public static int calculateSpaces(String in){
int spc = 0;
for(int i= 0; i<in.length; i++){
if(in.charAt(i)== ' '){
spc++;
}
}
return spc;
}
}
that should be it. If you have any questions, feel free to reach out.
Answer:
all of the above.
Explanation:
Your digital footprint is a sum total of the digital activity carried out by you while online. This generates a lot of data about you and is potentially permanent. Once generated it is very difficult to alter it and you are not in control of the data that has been generated. The digital footprint can be used to profile your behavior and has privacy related implications. So it is very important to be conscious of your digital footprint while working online.