and Spreadsheet Logic (Qs & As)
Save
Terms in this set (52)
What is the focus of Lecture 15 in CS Review of upcoming assignments, MVC - View
3500? Discussion, Event Handling, and more Blazor.
What should you ensure regarding the Use the most recent .editorconfig file from the
.editorconfig file? course Canvas page.
What is required in every project stylecop.json must be present and have the property
related to StyleCop? 'C# Analyzer Additional File'.
What is the difference between ThrowsExactly is more precise and should be used to
ThrowsExactly and ThrowsException? avoid analyzer errors.
What is the main task of Assignment Extending spreadsheet logic.
Six?
What does the SetContentsOfCell A list of all cells that have been updated, including
method return? the cell that was just updated.
What are the major requirements for GetCellValue, Read/Write files in JSON, Formula
the new assignment? Evaluate Delegate from Spreadsheet.
What should be included in the code Diagrams for Spreadsheet, Whiteboard, etc.
architecture diagrams for the new
requirements?
What is the structure of the example A dictionary of cells with properties like 'StringForm'.
JSON output for cells?
, Where does Visual Studio save files by In the bin/Debug/net8.0 directory of the project.
default?
What is the purpose of the Lookup To evaluate and return the values of cells.
method in the spreadsheet class?
What should be considered when Empty cells should not be treated as zero, and
updating a cell's value? strings should not be treated as zero.
What is the focus of Assignment Constructing the front end of a spreadsheet
Seven? (Spreadsheet GUI).
What is the expected outcome of the Students will work in pairs to develop the GUI for the
GUI assignment? spreadsheet.
What improvements are suggested for Commenting/documentation, variable naming, and
the Tip Calculator code? error checking.
What does the HandleBillChanged It updates the BillAmount based on the input value
method do? and computes the tip.
What is the significance of the It logs the changed input value for debugging
Debug.WriteLine in the purposes.
HandleBillChanged method?
What is the role of partners in Students are expected to work with partners on the
Assignment Seven? assignment.
What is a key aspect of Human- Designing effective and user-friendly graphical user
Computer Interaction (HCI) in the interfaces.
context of this course?
What is the purpose of the To handle button click events and execute
clickHandler in the GUI? associated code.