I would go with A) Tablet because that's basically a bigger phone and mobile cmp combined, its not D) because that's a synonym for a smartphone and not C) because paper and pencil is not like a smartphone, and not B) because that's like reading online books.
Answer:
Audio files have the ".mp3" file extension and compressed files have the ".zip" file extension.
Explanation:
Answer:
import random
a = random.randint(1,10)
b = random.randint(1,10)
answer = a * b
print(str(b)+" * "+str(a)+" = "+str(answer))
Explanation: So I am guessing you are on Edhesive Module 2.5 Intro to cs. Sorry it took so long but hopefully this works.
Answer:
The answer is "White space".
Explanation:
The textual messaging is a method for name, that consists of choosing verses, a chapter, or even the part of a chapter as a text. This method includes whitespace.
- It is the area between the items on a website page. Generally, those items are pictures, typeface, and symbols.
- It is often used to align elements on a website by providing a smooth flow via the material for all the readers to move across.
Answer:
Explanation:
n = eval(input('Enter # of number you want to enter: '))
list_=[]
for i in range(n):
number = eval(input("enter number: "))
list_.append(number)
if i == n-1:
maximum = max(list_)
minimum = min(list_)
print("maximum : "+str(maximum))
print("minimum : "+str(minimum))