Answer:
name = []
price = []
for i in range(0,8):
 item_name = input('name of item')
 item_price = input('price of item')
 name.append(item_name)
 price.append(item_price)
 
for i in range(0, 8):
 print(name[i], '_____', price[i])
Explanation:
Python code
Using the snippet Given :
Apples 2.10 
Hamburger 3.25 
Milk 3.49 
Sugar 1.99 
Bread 1.76 
Deli Turkey 7.99 
Pickles 3.42 
Butter 2.79
name = []
price = []
#name and price are two empty lists
for i in range(0,8):
#Allows users to enter 8 different item and price choices 
 item_name = input('name of item')
 item_price = input('price of item')
#user inputs the various item names and prices 
#appends each input to the empty list
 name.append(item_name)
 price.append(item_price)
 
for i in range(0, 8):
 print(name[i], '_____', price[i])
# this prints the name and prices of each item from the list. 
 
        
             
        
        
        
Answer:
- Information services and support
 
- Programming and software development
 
- Network systems administration
 
Explanation:
The company has finished designing a software program, but users aren’t sure how to use it. <u>interactive media</u>
Several people in the human resources department need new software installed. <u>information services and support</u>
An employee has an idea for a software program that can save the company time, but doesn’t know how to write it. <u> programming and software development</u>
A new branch of the company is opening soon, and the computers there need to be connected to the Internet. <u>network systems administration</u>
<u>OAmalOHopeO</u>
 
        
             
        
        
        
Computer hardware is the physical components that a computer system requires to function. 
Have a gr8 day ahead ✌️
 
        
             
        
        
        
The code that remove duplicate is as follows:
def remove_duplicate(mylist):
     mylist = list(dict.fromkeys(mylist))
     return mylist
print(remove_duplicate([1, 1, 2, 3, 3, 5, 6, 7]))
<h3>Code explanation</h3>
The code is written in python.
- we defined a function named "remove_duplicate" and it accept the parameter "mylist".
 - The variable "mylist" is used to store the new value after the duplicate vallues has been removed.
 - Then, wed returned mylist.
 - Finally, we call the function with the print statement . The function takes the required parameter.
 
learn more on python here: brainly.com/question/21126936