Influencers are trusted above many other information sources because of their perceived Authenticity and Transparency.
<h3>Who is an influencer?</h3>
An influencer is known as a person that does the work of exerting their influence on a product or services.
Note that they help or act as guides or they inspire the actions of others and as such Influencers are trusted with lots of information sources because of their perceived Authenticity and Transparency.
See options below
Influencers are trusted above many other information sources because of their perceived ______ and ______.
a. Authenticity.
b. Transparency.
c. Expertise.
d. A & B.
e. A & C.
Learn more about Influencers from
brainly.com/question/26242633
Primary storage refers to the main storage of the computer or main memory which is the random access memory or RAM. Secondary storage, on the other hand, refers to the external storage devices used to store data on a long-term basis.
Answer:
print(total) => 45
Explanation:
# smells like Python...
val = 0 #initialize incrementor named 'val' at 0.
total = 0 #initilize accumulator named 'total' at 0.
while (val < 10): #look to execute while val is less than 10.
val = val + 1 #increment val (val++) by 1
total = total + val #increment total by val (val+=total)
# Step: val = 0
## val => 1, total => 1
# Step: val = 1
## val => 2, total => 3
# Step: val = 2
## val => 3, total => 5
# Step: val = 3
## val => 4, total => 9
# Step: val = 4
## val => 5, total => 14
# Step: val = 5
## val => 6, total => 20
# Step: val = 6
## val => 7, total => 27
# Step: val = 8
## val => 9, total => 36
# Step: val = 9
## val => 10 (END_LOOP), total => 45
print(total) #print variable 'total'