Answer:
b. High-end CPU, lots of RAM, and high-end graphics card
Explanation:
Based on the information provided within the question it can be said that the priorities that would best benefit Mykel would be first high-end cpu, ram, and then high-end graphics card. This is because the cpu and ram will allow Mykel to speed up his processing speeds which will allow for a smoother time when running multiple VM's while developing software. Then the high end graphics card will allow him to play the nest and most graphical intense games out there.
Answer:
The operation of 6*x only executes if x is greater or equal to 0, since x=-10 and -10 is less than 0, the operation does not execute. For this reason, the value of y using this code is None.
Explanation:
In python a function is defined with the syntaxis:
def function(x):
the operation to execute (x)
value to return
In this case, the function is foo and the parameter is x:
def foo(x):
if x>= 0:
return 6*x
The code starts by assigning a value to x. Then, the code asks if the value of x is grater or equal to 0, if this condition is meet, then the code returns the value of 6 times x, if not, then the code does not return a value. In this case, x is -10 and this value is not grater or equal to 0. Given that the condition is not met, then the code stops executing and the value of y is none.
Answer is "Web Designer".
Web Designers are the "artists" of the website. They conceptualize the layout and functionality of the site, from features to format. They may do little coding, and are mostly involved in the creative elements of web design. The Web Developer is less big-picture, and more knitty-gritty building of the website. She is the one who does the coding and actually builds the website, using the web designer's model.