I would try going to pcpartpicker.com and build your pc from there, and after you’ve done that take your remaining budget to find whatever else you need for your setup
        
             
        
        
        
Answer:
?
Explanation:
these are instructions to a question?
 
        
             
        
        
        
Netiquette is a form of communication done correctly online. Good netiquette involves respecting others privacy, using correct grammar, and not doing anything online that will annoy or disrupt others. It is important to have netiquette while online, because communication online is non verbal and you can’t tell how someone is reacting. Having netiquette is important. It implies that you have polite behaviors, and want to build up relationships with people in your work space or at a party you plan on attending. Netiquette is one way to show respect to a person, and to show that you deserve respect. It improves how you organize your writing, and shows how productive you can be. By helping you to become polite online and respectful to other users of the internet, Netiquette is especially important for future letters, emails, or other writing forms.
 
        
                    
             
        
        
        
Answer:
Explanation:
The following is written in Java. It continues asking the user for inputs until they enter a -1. Then it saves all the values into an array and calculates the number of values entered, the highest, and lowest, and prints all the variables to the screen. The code was tested and the output can be seen in the attached image below.
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Scanner;
class Brainly {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        int count = 0;
        int highest, lowest;
        ArrayList<Integer> myArr = new ArrayList<>();
        while (true) {
            System.out.println("Enter a number [0-10] or -1 to exit");
            int num = in.nextInt();
            if (num != -1) {
                if ((num >= 0) && (num <= 10)) {
                    count+= 1;
                    myArr.add(num);
                } else {
                    System.out.println("Wrong Value");
                }
            } else {
                break;
            }
        }
        if (myArr.size() > 3) {
            highest = myArr.get(0);
            lowest = myArr.get(0);
            for (int x: myArr) {
                if (x > highest) {
                    highest = x;
                }
                if (x < lowest) {
                    lowest = x;
                }
            }
            System.out.println("Number of Elements: " + count);
            System.out.println("Highest: " + highest);
            System.out.println("Lowest : " + lowest);
        } else {
            System.out.println("Number of Elements: " + count);
            System.out.println("No Highest or Lowest Elements");
        }
    }
}