A: SSD, HDD, CPU or RAM
Whether you go with the faster SSD or slower but larger HDD, keep in mind you may end up needing a drive large enough to run a dual boot system if you plan on coding in multiple environments. Virtualization of other operating systems is another option, but that requires a fast CPU and a large amount of RAM to work well.
B: Ram because its larger than the others, and will work better.
C: i don't really have a suggested system but here
You may appreciate the seamless experience iOS offers, the flexibility of Android or the familiarity of Windows with your everyday PC. It might take some time to acclimate to a new system, so it may be best to stick with what you know.
Please consider marking brainliest.. thx
You should change the font of that specific word to another colour. And you can also make it bold and italic. Furthermore, you may even italicize it and make the font larger.
Hope it helps :)
Answer:
numbers = []
for i in range(3):
numbers.append(eval(input("Enter number: ")))
print('Sum is:', sum(numbers))
Explanation:
You want to use a loop to prevent repeating your code.
Answer:
C. 4
Explanation:
typedef enum{
red,orange,yellow,green,blue
}
color_t;
defines an enumeration type color_t with the values red,orange,yellow,green,blue.
If we print out the values of these individual elements they will be as follows:
red : 0
orange : 1
yellow: 2
green: 3
blue: 4
Note that the integer values are dependent on the position in the definition.