Answer:
CMYK
Explanation:
Monitors typically use RGB color (additive model — adding to make white), but offset printing uses CMYK pigments (subtractive color — subtracting from the existing white). Printed images have less visual range, saturation, and contrast than digital images, so in print, colors will usually appear darker and less vibrant.
 
        
             
        
        
        
False i doesnt  shows anything like this
        
             
        
        
        
Answer:
a) AL will contains 0011 1100
Explanation:
In assembly language, shifting bits in registers is a common and important practice. One of the shifting operations is the SHR AL, x where the x specifies that the bits be shifted to the right by x places. 
SHR AL, 2 therefore means that the bits contained in the AL should be shifted to the right by two (2) places. 
For example, if the AL contains binary 1000 1111, the SHR AL, 2 operation will cause the following to happen
Original bit =>                                        |   1   |  0  |  0  |  0  |  1  |  1  |  1  |  1  | 
Shift once to the right =>                |  1  |   0  |  0  |  0  |  1  |  1  |  1  |  1  | (0) |
Shift once to the right =>          |  1  |  0  |  0  |  0  |  1  |  1  |  1  |  1  | (0) | (0) |
Notice; 
(i) that there are two shifts - one at a time. 
(ii) that the bits in bold face are the bits in the AL after the shift. Those that in regular face are those in the carry flag.
(iii) that the new bits added to the AL after a shift are the ones in bracket. They are always set to 0.
 
        
             
        
        
        
Answer:
Did you mean layer 3 switch? Because a router always operates at layer 3
Explanation:
If the answer is yes, then a layer 3 is a switch that combines the functions of a switch and a router. So it is capable of operate layer 2 and layer 3. Some of its benefits are: Support routing between VLAN, decrease network latency because the packets don’t have to make extra hops to go through a router and reduce security management. But they are really expensive and lack of WAN functionality so they are used mostly for large intranet environments.
 
        
             
        
        
        
Answer:
String date = "21/05/2020";
String dayStr = date.substring(0,2);
int day = Integer.parseInt(dayStr);
System.out.println(day);
Explanation:
Create a variable called <em>date</em> which holds the current date
Create a variable called <em>dayStr</em>. Initialize it to the day part of the <em>date</em> using the substring method
Create a variable called <em>day</em>. Parse the <em>dayStr</em> and assign it to the <em>day</em> 
Print the <em>day</em>