omg a computer program
i love it
okay so i will assume taht you want the program to be in python
here we go
a = int(input("Enter a number ")
b = int(input("Enter another number ")
sum = a + b
def Digits(sum):
count = 0
while sum != 0:
sum //= 0
count += 1
return count
print(f"Sum is {sum} \nnumber of digits are {Digits(sum)}")
Answer:
Virtualization is the technology that is used to create virtual representation and version of the different devices like software, many storage devices and server.
It also help in organize the working framework where the structure isolates the asset into at least one execution situations.
The benefits of using the virtualization on the single machine are:
- The virtualization increased the productivity when it used in the cluster environment.
- We can able to access the different resources faster.
- The data center management is simple while using the virtualization in the cluster environment.
The drawback of using virtualization on single machine are:
- The virtual machine is less efficient as compared to the real machines.
- The virtual machine indirectly access the computer hardware system so that is why it is less efficient and also consume more power to run the system.
Answer:
CIDR is based on a variable-length subnet masking technique, which allows a new method of representation for IP addresses. Routing prefix is written with a suffix number of bits of the name, such as 123.0.0.0/8, as the CIDR network has the smallest possible amount of hosts.
Explanation:
CIDR ( Class Inter-Domain Routing ) It is a method that is allocating IP addresses and routing the IP. CIDR is introduced in 1933 and replace the architecture of network design on the internet. CIDR slows down the growth of the routing across the web and helps to slow the IP addresses such as IPv4 addresses.
CIDR consists of two groups of bits in the address. In the new age, the network prefix identifies the whole network. This is used as the basis of routing between IP networks and allocation policies.
IPv4 in-network prefix is 8-bit groups.
A typical IPv4 address is 192.168.0.5 the lowest value is 0, and the highest value is 255
In the given choices, 123.0.0.0 / 8 of the possible smallest number of hosts.
Extensible Hypertext Markup Language.