Answer:WiFi or hotspots
Explanation:you will have to turn on your WiFi or hotspots on your smart phone and allow your friend to also turn his WiFi or hotspot after you will search for your WiFi and connect there he can use the internet
Answer:
while True:
number = int(input("Enter a number: "))
product = number * 10
if product > 100:
break
print(str(product))
Explanation:
Create a while loop that iterates until a specific condition is created inside
Ask the user for the input
Multiply the input and put the result in product
Check if the product is greater than 100. If it is, stop the loop using break keyword
When the loop is done, print the product
Answer:
Selecting the Tiled windows arrangement option places the windows in a(n) Grid pattern on the screen.
Explanation:
Answer:to add a column to existing table.
to rename any existing column.
to change datatype of any column or to modify its size.
to drop a column from the table.
Explanation:
hope this help