Answer:
High level Language
understand
Explanation:
rocket is 0...4433456u888
The two main
capabilities involved in visual literacy are:
<span>1) </span>Communication through use of visual elements.
<span>2) </span>Interpret meaning from visual elements.
<span>Visual literacy is the
capacity to decipher, arrange, and make significance from data displayed as a
picture, broadening the importance of proficiency, which means understanding of
a composed or printed content.</span>
Answer:
import random
a = random.randint(1,10)
b = random.randint(1,10)
answer = a * b
print (str(a) + " X " + str(b) + " = " + str(answer))
Explanation:
Happy to help you mate
The answer is <span>Unified Communications. </span><span>You step out of your office and miss a telephone call. when you sit at your desk you notice that the voicemail light is blinking on your phone, you have a new email, and you have a transcribed instant message on your computer screen in the form of an instant message. your organization has most likely adopted Unified Communications type of technology. </span>
According to the given question, sales is a two-dimensional array and contains 10 rows and 7 columns wherein each component is of type integer and the variables sum and j are also of integer type.
<u>Explanation:</u>
In order to find the sum of the elements of the fifth row of sales, the correct piece of code should be:
sum=0;
for(j=0;j<7;j++)
sum=sum+sales[4][j];
The indexing in an array always starts from zero, therefore, to calculate the sum of the fifth row, the user has to write 4 in the index to point to the fifth row.