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:
It uses simple words and symbols to communicate the design of a program
Explanation:
A software can be defined as a set of executable instructions (codes) or collection of data that is used typically to instruct a computer on how to perform a specific task and solve a particular problem.
A software development life cycle (SDLC) can be defined as a strategic process or methodology that defines the key steps or stages for creating and implementing high quality software applications. There are seven (7) main stages in the creation of a software and these are;
1. Planning.
2. Analysis.
3. Design.
4. Development (coding).
5. Testing.
6. Implementation and execution.
7. Maintenance.
 A pseudocode refers to the description of the steps contained in an algorithm using a plain or natural language. Also, a pseudocode gives a summary of the steps adopted during a software development process using simple (concise) words and symbols.
This ultimately implies that, a pseudocode uses simple words and symbols to communicate the design of a program. 
 
        
                    
             
        
        
        
The four game elements that will give you  a detailed description about the challenges that the player will face is option D: objective.
<h3>What goals does game development have?</h3>
To bring about creativity and originality in task completion and issue solving. to prepare pupils for group collaboration.
Note that giving the player a clear objective gives them something to aim for. Make sure the player can relate to this motivation.
Therefore, The most crucial component of a game can be its objectives, which determine how the game is won or lost, what the player is instructed to perform in-game, and what the player must do to gain optional <em>Achievements</em>.
Learn more about objective from
brainly.com/question/18516671
#SPJ1 
 
        
             
        
        
        
Answer:
<h3>Rules for Naming Variables</h3><h3>The first character must be a letter or an underscore (_). You can't use a number as the first character. The rest of the variable name can include any letter, any number, or the underscore. You can't use any other characters, including spaces, symbols, and punctuation marks.</h3>
<em><u>#</u></em><em><u>M</u></em><em><u>a</u></em><em><u>r</u></em><em><u>k</u></em><em><u>a</u></em><em><u>s</u></em><em><u>b</u></em><em><u>r</u></em><em><u>a</u></em><em><u>i</u></em><em><u>n</u></em><em><u>l</u></em><em><u>e</u></em><em><u>s</u></em><em><u>s</u></em><em><u>p</u></em><em><u>l</u></em><em><u>e</u></em><em><u>a</u></em><em><u>s</u></em><em><u>e</u></em><em><u>✅</u></em>
 
        
             
        
        
        
Answer:
What will I have to sacrifice if I buy this laptop
Explanation:
Emma by asking herself this question will scale her preference as well as compare her opportunity cost in determining if purchasing the laptop is importance to her at the moment and of what other thing will she be willing to sacrifice just so she could buy herself a laptop, and how the purchase would still be within her projected budget.