Answer:
Detailed solution is given in attached diagram and the answers are given below:
Explanation:
(a) 4 bits are devoted for line sizing.
(b) 2 bits are devoted for indexing
(c) 1 bit is devoted for the tag
Fragmented would be the answer
Answer:
semantic
Explanation:
The description provided is describing the practice known as semantic HTML. This is basically code that provides both the user and the developer a description on what the code was originally supposed to do. For example, a method that calculates the total cost of a set of prices could be called calculateTotal(). By doing so you are describing the intention of the method clearly so that the individual using the method does not need to look at anything else to know what it does.
Answer:
d. Company WAP has SSID broadcast disable
Explanation:
The most likely reason the user cannot find the company WLAN from her own device is that company WAP has SSID broadcast disable.
Answer:
user_num >= 1
while true do
print "user_num/2"
Explanation:
First, you write that the user_num is equal to or is greater than 1. Then you write in the while loop that while that's true, print user_num divided by two.