Answer: B. MCSE
Explanation:
Microsoft offers various courses and certifications for different careers in the IT industry. One such career is system engineering where the MCSE which stands for Microsoft Certified Solutions Expert is offered.
This certification proves that one is proficient with technologies such as server infrastructure, data platforms and business intelligence. Prospective careers apart from sound engineering include Network management and Database Analysis.
The factors which should be considered by Daniel are the RAM capacity and the Processor Core of the computer.
Computer games especially racing and football games are usually memory intensive and as such will require a good amount of RAM in other to ensure that the game runs smoothly as the RAM provides a temporary storage required for applications or programs to run smoothly.
Also, the processor core has to be put into consideration, Daniel will need a multi - core processor in other to aid the smooth running of his racing game.
Therefore, the factors that should be considered are the RAM and processor core.
Learn more :brainly.com/question/25010930
Answer:
The solution code is written in Python:
- itemsOSS = ""
- userItem = input("Enter an item: ")
-
- while(item != "Exit"):
- itemsOSS += userItem + " "
- userItem = input("Enter an item: ")
-
- print(itemsOSS)
Explanation:
Firstly, we create a variable itemsOSS (intialized it with empty string) and use it as output string stream (Line 1).
Next use input function to prompt user to enter first item (Line 2)
While the item value is not "Exit" (Line 4), append userItem to variable itemsOSS.
When the user enter "Exit", use print function to print the itemsOSS string (Line 8).