Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Submit a pseudocode or flow chart solution for finding concern students in BIT 1 4 0 0 if all students and their grades were written

Submit a pseudocode or flow chart solution for finding concern students in BIT 1400 if all students and
their grades were written in an excel spreadsheet (ie a big grid of students and their grades).
name A1 A2 L1 L2 L3 L4
David 2015 false False true False
Jinay 8065 True True false True
Alexis 7075 True True false False
A student is considered a concern student if:
1. they didnt attend at least 2 of the 4 labs so far and
2. they failed either assignment 1 or assignment 2. A fail is <50%
Accessing the Data:
On each row of the spreadsheet is a students information. Rows can be referenced by row
number. For example table[3] is row 3 in the table. Table[3][4] would be the cell at row 3
column 4(in yellow above)
Columns in the table will be student name, assignment 1 grade (%), assignment 2 grade (%),
and 4 lab attendance grades (listed as true/false) in that order. This makes 7 columns. A
particular column can be referenced by column (student name), column[L1] or some other
unambiguous naming convention.
You can write subroutines. For each subroutine, just refer to it and define it later. For example, if
you had a subroutine checkLabs, you might call checkLabs(myTable,2) to check the labs for row
2 of the table named myTable. You would then need to define the pseudocode for checkLabs.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions

Question

Describe the Indian constitution and political system.

Answered: 1 week ago

Question

Explain in detail the developing and developed economy of India

Answered: 1 week ago

Question

Problem: Evaluate the integral: I = X 52+7 - 1)(x+2) dx

Answered: 1 week ago

Question

What is gravity?

Answered: 1 week ago

Question

What is the Big Bang Theory?

Answered: 1 week ago