Answer:
I believe this is a graph question which would be impossible to do on brainly. Butttt, if so, -4x means you would go to the right 4, and the 6 means you would go up 6
Hope this helps:)
if you want to further explain question I'd be glad to help :))
<h3>
Answer:</h3>
To obtain you class E Learner License, you'll need to <u>Pass a literacy Test</u>
<h2> </h2><h2> Can you
Brainliest me?</h2>
Answer:
The correct option is B.
Explanation:
Memory hierarchy is the ordering of storage systems according to their speed, capacity and cost.
The hierarchy consist of Register as the top, followed by cache, then main memory, secondary memory and external storage. As you go down the hierarchy, the speed decreases, the size increases and the cost decreases also.
Memory hierarchy diagram is attached for reference.
Answer:
Data-profiling software
Explanation:
Data-profiling software -
It refers to the software , that helps to collect the data or information from a particular existing source and performed it analysis , is referred to as a Data-profiling software .
The software helps to determine information about a topic , or analyse the pattern , for the process of comparison etc.
Hence , from the given information of the question ,
The correct answer is Data-profiling software .
Answer:
Following are the program in the Python Programming Language.
#declare variables and initialize to 0
s=0
n=0
avg=0
#set the infinite while loop
while(True):
#get input from the user
score=input()
#set if statement to break loop
if(score =="stop"):
break
#otherwise, perform calculation
else:
n+= 1
s=s+ int(score)
avg= s/n
#print average of the input
print ('average: ',avg)
<u>Output</u>:
58
96
34
15
stop
average: 50.75
Explanation:
<u>Following are the description of the program</u>.
- Firstly, set three variable that is 's' for sum, 'n' for count and 'avg' for average and initialize them to 0.
- Set the infinite while loop and inside it, set variable 'score' that get input from the user then, set the if conditional statement for break the loop, otherwise we calculate the sum of the user input and calculate its average.
- Finally, we print the result with message.