From d37f759beb79c0212ad1faadf3aeaf43bc79f141 Mon Sep 17 00:00:00 2001 From: Kathy Perry Date: Wed, 8 Nov 2023 14:54:17 -0500 Subject: [PATCH] added outcomes to OOP project --- _data/assignments.yaml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/_data/assignments.yaml b/_data/assignments.yaml index e1bbbb3..af826a3 100644 --- a/_data/assignments.yaml +++ b/_data/assignments.yaml @@ -10,15 +10,18 @@ # image_caption: 'Among Us character' blah topics: [ 'Creating Objects', 'API usage', 'Inheritance' ] outcomes: - - { verb: 'Apply', outcome: ' ' } - - { verb: 'Apply', outcome: ' '} + - { verb: 'Understand', outcome: 'Explain the relationship between a class and an object' } + - { verb: 'Understand', outcome: 'Describe: signature, parameter list, formal parameter, actual parameter' } + - { verb: 'Apply', outcome: 'Use a constructor (with or without parameters) of a class in order to create an object of that class' } + - { verb: 'Apply', outcome: 'Call methods (with or without parameters) on objects' } + - { verb: 'Create', outcome: 'Use above learned skills in order to display a design of shape objects' } java: student_files: - { name: 'Intro to OOP with Shapes', link: 'https://docs.google.com/document/d/12seZwHIOxuwScLttgTWX9ud4YlRpfriSSGMVjH9Qk74/edit#heading=h.gjdgxs' } - { name: 'RobotMaker.java', link: 'https://drive.google.com/file/d/1r38K-VpnSiMEMTKExYLe5M2Rf0-4rwK2/view?usp=drive_link'} - { name: 'Rec.java', link: 'https://drive.google.com/file/d/1re4Vek1X_ZF_i2BxqrIeoFv80EpVs2P4/view?usp=drive_link'} - { name: 'Circ.java', link: 'https://drive.google.com/file/d/1NFUQs5xYI_s4PRIDeCdHmyd2SLU2uoEn/view?usp=drive_link'} - teacher_files: [ 'Answer Key', 'OOPwShapes.java' ] + teacher_files: [ 'RobotMaker.java', 'Rec.java', 'Circ.java' ] documentation: [ 'Bridges', 'SymbolCollection', 'Symbol', 'Circle', 'Rectangle' ]