Answer:
C. real time web access
Explanation:
Real time web access can be used to demonstrate how to do something special on the web, such as displaying articles found on websites that support your topic.
It can also be used to it provide a sense of immediacy to your speech.
It involves employing a live internet feed as a visual media or information resource during a speech, that is using a real time video online to deliver your speech.
Answer:
The BASIC program is as follows:
SUM = 0
FOR I = 1 TO 20
INPUT SCORES
SUM = SUM + SCORES
NEXT I
AVERAGE = SUM/20
PRINT AVERAGE
Explanation:
This initializes sum to 0
SUM = 0
This iterates through 20
FOR I = 1 TO 20
This reads each score
INPUT SCORES
This calculates the total scores
SUM = SUM + SCORES
NEXT I
This calculates the average
AVERAGE = SUM/20
This prints the calculated average
PRINT AVERAGE
Answer:
Following are the program in the Python Programming Language.
import json #import package
#define function
def read_json(info):
return json.loads(info)#load data in variable
#call and print the function
print(read_json('[{'A': 10}, {'Y': 16}, {'U': 28}]'))
<u>Output</u>:
[{'A': 10}, {'Y': 16}, {'U': 28}]
Explanation:
following are the description of the code
- Define function "read_json()" and pass an argument "info" inside it.
- Return the data inside from the "load()" function .
- Call the function i.e "read_json" and passing the value to that function.
- Print function print the data which is inside the "read_json" function.
According to you have to http://windows.microsoft.com/en-PH/windows-8/sign-in-out-of-windows
you have to click on the account picture on the upper right hand corner to
access the backstage view and you have to tap or click the account tab to view
the account gallery and sign out from the account. You may also want to check
this link as well: https://support.office.com/en-us/article/Sign-out-of-your-Microsoft-account-268b49c8-398f-4057-8a3f-e376789f273a
<span> </span>
Answer:
Constant variable
Explanation:
Constant variable is a data item whose value cannot change