Documents. Note that electronic document is a type of media too.
Answer:
An author's qualifications are important in determining whether a media source is;
Credible
Explanation:
In order to find out about the credibility of an author, the preface, forward, and or introduction including the book's back cover should be checked for the author's credentials, qualifications and areas where the author is an expert
The author's credential can also be checked by finding out about other books the author has written and also about the author's biography.
Answer:
numbers = []
for i in range(3):
numbers.append(eval(input("Enter number: ")))
print('Sum is:', sum(numbers))
Explanation:
You want to use a loop to prevent repeating your code.
17, 12.5, 6, and 10. HOPE THIS HELPS
Answer:
Hi there! This can be implemented in a simple Python function which uses the "random" module to generate the number.
Explanation:
Using Python as the languge, we can write a the below code in a file called styles.py. The first line imports the randint function from the "random" module. The setStyles() function declares an array or 5 elements (here I have just used numbers but these could be string names of the stylesheets as well). Next, styleNum is assigned the random number and the associated stylesheet is selected from the array of stylesheets.
styles.py
from random import randint
def setStyles():
stylesheets = [1,2,3,4,5];
styleNum = randint(1,5);
stylesheet = stylesheets[styleNum];
print(stylesheet);
setStyles();