Process Overview
Computing helps us solve problems, communicate, and make life easier every day. This flowchart shows how computing connects to daily activities and benefits us step by step.
Jump into concepts and practice - no test required
Computing helps us solve problems, communicate, and make life easier every day. This flowchart shows how computing connects to daily activities and benefits us step by step.
+-------------------+ +---------------------+ +--------------------------+
| Daily Task | ---> | Task Type Check | ---> | Use Computing Tools? |
+-------------------+ +---------------------+ +-----------+--------------+
|Yes |No
v v
+----------------+ +----------------+
| Task Easier & | | Do Task Manually|
| Faster | +----------------+
+-------+--------+
|
v
+--------------------------+
| Productivity & Convenience|
+--------------------------+tasks = ["clean", "shop", "study"]
priority = [2, 1, 3]
organized = []
for i in range(len(tasks)):
organized.append(tasks[priority[i]])
print(organized)