Answer:
global information system (GIS)
Explanation:
A global information system (GIS) is an information system that works across national borders, facilitates communication between headquarters and subsidiaries in other countries, and incorporates all the technologies and applications found in a typical information system to gather, store, manipulate, and transmit data ...
Answer:
import pandas as pd
filename = input("Enter file name with the extension included: ")
data = {}
with open("filename", "r") as file:
content = file.readlines()
for line in content:
line_list = line.strip().split(" ")
data[line_list[0]] = line_list[1] * line_list[2]
del line_list
report = pd.DataFrame(list(data.items()), columns = ["lastname", "wages paid"])
print(report)
Explanation:
The python module prompts the user for the file name and opens the text file to extract the employee data with the python open function. It iterates over the file content and saves the last name and the wages paid to the employees ( the hours worked multiplied by the hourly rate) in the dictionary "data".
The dictionary is converted to a dataframe with the Pandas python package and displays the data in tabular format on the screen.
Answer:
The correct answer for the given question is "source code"
Explanation:
When you writing a code in any programming language that code is known as source code.The source code is also known as primary code, when source code is compiles it produce runtime code.
The source code is created by the compiler it can be easily understood by the human being.
for example in c language we write a source code after compilation it produces object code .
Answer:
Differences between arrays and linked list are as following:-
- Arrays store elements in contiguous memory location while the linked list does not store elements at contiguous memory location it connects nodes at different memory location.
- Array has index to directly access the elements there are no indexes in linked list to directly access the elements.
- Linked list contains Nodes which contains the data and the address of the next Node while the array contains only the data in the block.
- Traversal over the arrays is easy while the traversal over the linked list is difficult as compared to arrays.