So, this is an answer of your choice. What it is trying to ask is tell us what your dream home, job, husband, and so on. For example: My dream home is a mansion in Mississippi by the beach. My dream job is a doctor. Those are prime examples of a dream home and job. Now your answer shouldn't be the same as mine. Your's should be something different. Unless, you want a mansion in Mississippi by the beach and you would like to be a doctor. In other words it is asking you to tell us what you want you home, lifestyle, job, friends, and possibly your DREAM pet. Hope this helps.
Answer:
<h2>
<em><u>Mark</u></em><em><u> me</u></em><em><u> as</u></em><em><u> a</u></em><em><u> Brainliest</u></em><em><u> pls</u></em></h2>
Explanation:
1)
- removing cache and tmp files
- Changing the processor
- Upgrading the ram
- Removing the maximum Graphics of the computer
- could make to a CPU to make a computer work faster.
2)
- Input source
- output source
I hope this answer is helpful to you
Answer:
Layer 7: Application Layer
Explanation:
Layer 7 is the Application layer and the website that causing issue is used through an app. Making it Layer 7 Application.
Answer:
Explanation:
The following code is written in Java. The function takes in the random object and creates a random number where it generates a random number and prints out the * characters, if the random number and the input num are the same it prints out both values and ends the function.
import java.util.Random;
class Brainly {
public static void main(String[] args) {
Random r = new Random();
randomStar(r, 12);
System.out.println();
randomStar(r, 19);
}
public static void randomStar(Random r, int num) {
while (true) {
int randomNum = r.nextInt(19) + 5;
if (randomNum != num) {
for (int x = 0; x < randomNum; x++) {
System.out.print("*");
}
System.out.print("\n");
} else {
for (int x = 0; x < randomNum; x++) {
System.out.print("*");
}
System.out.print("\n");
System.out.println("Random Number: " + randomNum);
System.out.println("Input Number: " + num);
break;
}
}
}
}