What are the choices?
Message Boarding is the asynchronous electronic that is know as a forum.
Answer:
Following are the code to this question:
x = int(input())#defining a variable x for user input value
if(x>=20 and x<=98):#defining an if block that checks value is in between 20 to 98
while(not(x%10==x//10)):#defining while loop that seprate numbers and checks it is not equal
print(x)#print value
x-=1# decrease value by subtracting 1
print(x)# print value
else:#defining else block
print("The input value must lie in 20-98")#print message
Output:
36
36
35
34
33
Explanation:
- In the above python program code, a variable x is declared, which is used to input the value from the user end.
- In the next step, a conditional statement is used in if block, it checks the input value is lie in 20 to 98, and to check its uses and logic date, if it is false it will goto else section in this, it will print a message.
- If the given value is true, inside if block a while loop is declared, that separately divide the value and check it is identical or not, if it is not identical it will print the value and checks its less value similarly.
Answer:
The fifth-generation wireless broadband technology based on the 802.11ac standard is called the
5G.
Explanation:
The 5G is the newest baby in town in the area of wireless broadband technology. The technology is based on the IEEE 802.11ac standard. 5G operates with a 5Ghz signal and is set to offer out-of-this-world speeds of up to 1 Gb/s. This implies massive connectivity for everyone and everything. However, its trial has been fraught with many challenges. Questions have been raised, especially relating to some health concerns about the technology. However, many advantages have been ascribed to this wireless technology. They include more reliability, massive network capacity, increased availability, more uniform user experience, higher performance. and improved efficiency.
<span>The technical relationship between inputs and outputs, which is needed to understand the difference between the short run and the long run, is called a production function.
Hope I helped ;)
</span>
<span>If using excel, you can use this formula:
DATEDIF(start_date, end_date, unit)
For instance,
DATEDIF(9/1/2014, today, "d")
or
DATEDIF(B10, today, "d")</span>