
DCS1101 - Week 12 (Structures)
Presentation
•
Computers
•
University
•
Practice Problem
•
Easy
Yasmin Basiran
Used 1+ times
FREE Resource
30 Slides • 8 Questions
1
2
Learning Contents
Introduction to structures
Structure syntaxes
The application of syntaxes
3
4
5
6
7
Multiple Choice
A structure in C++ is best described as:
8
Multiple Choice
Which keyword is used to declare a structure?
9
Multiple Choice
A structure can contain:
Only integers
Only floating numbers
Any combination of data types
Only characters
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
Multiple Choice
What is the output of the following code?
struct Box { int w; int h; };
int main() {
Box b = {5, 8};
cout << b.w + b.h;
}
27
Multiple Choice
What is the error of the following?
struct Person {
int age;
string name;
};
int main() {
cout << Person.age;
}
28
Multiple Choice
What is the output of this?
struct Num { int n; };
int main() {
Num x = {7};
Num y = x;
y.n = 20;
cout << x.n;
}
29
Multiple Choice
What is the error of this code?
struct Item {
string name;
float price;
};
Item item("Soda", 2.5);
30
Previous Topic | Relation to Structures |
|---|---|
Variables | Structures contain multiple variable types. |
Arrays | Structures allow arrays as members, and arrays of structures. |
Functions | Structures can be passed to functions by value or reference. |
Loops | Often used to process structure arrays (for, while). |
Selection (if/switch) | To compare structure members (e.g., highest price). |
File Processing | Structures store data that can later be written to files. |
31
Real Programming Uses
To group different info about one item (student, car, book).
To create arrays of objects easily.
To pass related data into functions without many parameters.
To create more complex data types before learning classes/objects.
32
Real Programming Uses
Games (player stats)
Finance apps (transaction records)
University systems (student database)
Inventory systems (products)
File handling records
33
34
The first inventory systen
35
Material Requirements Planning (MRP) – Late 1960s
Developed by IBM and large manufacturing companies.
Used on early mainframe computers.
Helped factories track inventory, production schedules, and materials needed.
Companies like Black & Decker were among the first major adopters (1964).
36
Timeline for MRP
Year | System | Notes |
|---|---|---|
Pre-1960s | Manual, paper forms | No software; physical cards & ledgers. |
1960s | MRP (Material Requirements Planning) | First computerized inventory system on mainframes. |
1970s | MRP II (Manufacturing Resource Planning) | Added scheduling, capacity planning. |
1990s | ERP (Enterprise Resource Planning) | Integrated inventory with HR, finance, logistics (SAP, Oracle). |
2000s–Today | Cloud-based inventory tools | QuickBooks, Zoho Inventory, Odoo, etc. |
37
Open Ended
Imagine your college needs a system to keep track of student attendance.
How could structures and functions be used together to simplify the program design?
38
Thank you!
Show answer
Auto Play
Slide 1 / 38
SLIDE
Similar Resources on Wayground
32 questions
Plant structure
Presentation
•
KG
34 questions
UNIT 2 INVENTORY
Presentation
•
University
34 questions
5E-Protein Synthesis
Presentation
•
University
33 questions
operator overloading
Presentation
•
KG - University
34 questions
IntroDatabases
Presentation
•
University
35 questions
M0dule2 CPE4O8
Presentation
•
University
31 questions
Cost Accounting
Presentation
•
University
Popular Resources on Wayground
24 questions
PBIS-HGMS Day 10
Quiz
•
6th - 8th Grade
10 questions
HCS SCI 03 Summer School Review 3
Quiz
•
3rd Grade
11 questions
Home Scope
Quiz
•
7th - 8th Grade
15 questions
HCS SCI 05 Summer School Assessment 3 Review
Quiz
•
5th Grade
35 questions
Lufkin Road Middle School Student Handbook & Policies Assessment
Quiz
•
7th Grade
18 questions
Geo 11.3 Area of Circles and Sectors
Quiz
•
9th - 11th Grade