Answer:
13: 1101
5: 0101
10: 1010
2: 0010
Explanation:
The binary system, on the other hand, is a base-2 number system. That means it only uses two numbers: 0 and 1. When you add one to one, you move the 1 one spot to the left into the twos place and put a 0 in the ones place
what is done with the dice is to have an example of how binary numbers are made until 15
Answer:
true
Remember to drink water!!
Answer:
import math
x = float(input("Input a decimal number of your choice: "))
y=int(x)
x=x-y
print(math.fabs(x))
Explanation:
Answer:
And is the correct answer for the above question.
Explanation:
- And operator is an operator in the programming language which described two decisions in a single statement and it gives true if both the condition defined in the statement is true and it gives false if any of the conditions defined in the statement gives the false result.
- The above question-statement asked about that operator by which the user can write the two conditions in a single statement. Then the answer is And operator. One example for And operator in c language with if statement is-- if(a>=5&&a<=10), in which && symbols represents AND operator.
Answer:
Layer 4
Explanation:
MAC address works at the data link layer (layer 2) of the OSI model. Mac address allows computers to uniquely identify themselves in the network
IP Address is a logical address that works at the network layer of OSI model (layer 3) (actually the IP layer of TCP/IP model).
The port number works at the transport layer of the OSI model (layer 4).The port number uses sequence number to send segments to the correct application thereby ensuring they arrive in the correct order.