0
0
EV Technologyknowledge~30 mins

Computing platform requirements in EV Technology - Mini Project: Build & Apply

Choose your learning style9 modes available
Computing Platform Requirements
📖 Scenario: You are planning to build a simple computing platform for a small business. You need to organize the basic requirements clearly to ensure the platform will meet the business needs.
🎯 Goal: Create a clear list of computing platform requirements including hardware, software, and network needs.
📋 What You'll Learn
Define a dictionary named hardware_requirements with exact keys and values
Create a variable named minimum_ram_gb to specify minimum RAM
Use a list named software_list to hold required software names
Add a dictionary named network_requirements with exact keys and values
💡 Why This Matters
🌍 Real World
Organizing computing platform requirements is essential when planning IT infrastructure for businesses or projects to ensure all necessary components are included.
💼 Career
IT planners, system administrators, and project managers use such requirement lists to communicate needs clearly to vendors and technical teams.
Progress0 / 4 steps
1
Define hardware requirements
Create a dictionary called hardware_requirements with these exact entries: 'CPU': 'Intel i5', 'Storage': '256GB SSD', 'GPU': 'Integrated'.
EV Technology
Need a hint?

Use curly braces {} to create a dictionary with key-value pairs.

2
Set minimum RAM requirement
Create a variable called minimum_ram_gb and set it to the integer 8 to specify the minimum RAM in gigabytes.
EV Technology
Need a hint?

Assign the number 8 directly to the variable minimum_ram_gb.

3
List required software
Create a list called software_list containing these exact strings: 'Operating System', 'Office Suite', 'Antivirus'.
EV Technology
Need a hint?

Use square brackets [] to create a list of strings.

4
Define network requirements
Create a dictionary called network_requirements with these exact entries: 'Bandwidth': '100Mbps', 'WiFi': '802.11ac', 'Ethernet': 'Gigabit'.
EV Technology
Need a hint?

Use curly braces {} to create a dictionary with the given key-value pairs.