Answer:
B. Almanac 110%
Explanation:
b. central processing unit.
c. input device.
d. output device.
Answer:
I thinks its False, because it kinda doesn't make since for that to be a technology skill. Hope this helps!
Explanation:
Answer:
The correct question is as follows:
" Click on this link to bring up a flowchart in a new browser window. Based on this flowchart, would a D-Link 3347 Gateway with an Xbox 360 Multiplayer problem be In Scope or Out Of Scope ( see quiz 2 flowchart)". The answer is OUT OF SCOPE.
Explanation:
The flowchart as seen in the attached file shows that for a network related issue, a D-Link Gateway with an Xbox 360 Multiplayer problem would be out of scope. The flowchart clearly indicated that after confirming from the customer if the networking device is a router or gateway, then the next step is to confirm if it is a D-LINK gateway then what type of D-Link in order to confirm if it is 3347 Gateway. After it is confirmed that it is the type 3347 Gateway then we need to confirm from the customer if the it is connected to another smc router and what the issue may be, i.e if it is port forwarding-related or not. Then, we confirm if it is xbox 360 and if the problem is multi-layer game issue, and if this is correct then the issue is regarded as Out of Scope.
See the attachment again for clearer picture of the explanation in the flowchart.
Line 1 System.out.print("*"); //
Line 2 System.out.println(); //
Line 3 System.out.println("*"); //
Line 4 The code segment is intended to produce the following output, but may not work as intended. ** *
Which line of code, if any, causes an error?
Answer:
Lines 1 and 3
Explanation:
For line 1, without putting the asterisk in single or double quote marks, the compiler will assume that the asterisk is the multiplication sign. This causes the error since no numbers are being multiplied. If an argument (in this case the asterisk) is passed into the print function, given that it is not a method, string or character, in most cases, the compiler assumes it is an arithmetic operation
For line 3, to print an empty space, you can use System.out.println(' ') or System.out.println(" "). Writing line 3 the way you did gives an error because nothing was passed in the print argument, so the compiler will not be able to identify what you are trying to print.