Recent Changes in CenterForComputing Web retrieved at 16:18 (GMT)
2nd Repetition Lab: Monthly Calendar: Fall 2024 Learning Objective(s) Learn about count controlled loops Understand the difference between path coverage...
Getting the spacing nice 1. One option (but a very poor option) would be to use an if statement (if the number is less than 9, output with an extra space, else...
Hint for getting a valid value Use a priming read with an event controlled loop See the class examples As long as the value is not valid Display...
Hints for lab 3 about working with strings and characters 1. To get a character, read in a string and then use the charAt() function. See the class example for...
Hint2 for Lab 3 on switch statements Common mistakes: 1. forgetting the {}`s or not placing them correctly. See class example 1. forgetting the ()`s. See class...
Hint 2 on syntax issues for Lab 2 (Fall 2024) Compound statements need both { and } Indentation is VERY helpful Constant declarations go between the...
Hint 4 for Lab 01: changing the outputting of the results 1. Remove two of the output lines. 1. Change the first of the remaining line so that within the ()...
Hint 3 for Lab 03: Calculating the total price 1. Change the declaration for difference to total 1. Compute the total (after computing the interest) to be price...
Hint 2 for Lab 01: computing the interest 1. Remove three of the lines in the calculation section 1. Change the declaration for sum to interest 1. Remove...
Lab 01: Hint 1 (changing the input) 1. Overall changes a. The first prompt about doing simple arithmetic should be changed to describe this program 1....
First Program: Spring 2024 Learning Objective(s) 1 Get the environment up and working 1 Enter your first program Overview of the Program This lab has two parts...
CSC 113: Digital Citizen of the 21st Century CSC 121: Programming 1 Control Structures CSC 310: DevOps CSC 312: Introduction to Cloud Computing...
Classes: Final version of Mastermind At the end of this lab, you will have a complete mastermind game Learning Objective(s) 1 Finish the mastermind game 1 End...
Review arrays: Mastermind part 1 Learning Objective(s) 1 Improving programming and working with arrays Overview of the program 1. The user inputs an array...
Details Professor: Dr. Cathy Bareiss Office SB 31 Class Time: 11:00 11:50 MR Lab Time: 11:00 11:50 TF Class Location: S 025 Textbook: Student...
Details Professor: Dr. Cathy Bareiss Office SB 31 Class Time: 11:00 11:50 W Class Location: S 025 Textbook: Student membership in ACM. Resources...
Details Professor: Dr. Cathy Bareiss Office SB 31 Class Time: 2:00 2:50 MF Lab Time: 2:00 2:50 TR Class Location: S 025 Textbook: Student...
CSC 121: Programming 1: Control Structures CSC 150: Seminar 1 CSC 210: Database CSC 221: Programming 2: Design and Object Oriented Programming...
Details Professor: Dr. Cathy Bareiss Office SB 31 Class Time: 2:00 3:20 TR Class Location: S 025 Textbook: Student membership in ACM. Resources...
Sorting homework Using the following data: 36, 42, 17, 8, 13, 29, 5, 19, 25, 14, 7, 28, 21 1. Sort it by hand using the selection sort. Show your work after each...
Final Project: Spring 2024 Learning Objective(s) 1 Use all (or almost) all that you have learned this semester. Overview of the Program Create a system that will...
Concurrency Lab: Dining Philosophers: Spring 2024 Learning Objective(s) 1 Learn about the Dining Philosopher problem 1 Learn to program with threads 1 Experience...
Linked List: Spring 2024 Learning Objective(s) 1 Learn to implement and use linked lists Overview of the Program This lab will help with the final lab. You...
Inventory updates: Improvement with arrays: Spring 2024 Learning Objective(s) 1 Learn about arrays and how to use arrays 1 Do more abstraction Overview of...
Inventory Final Version: Spring 2024 Learning Objective(s) 1 Complete the project 1 See the advantages of using classes 1 Solidify ability to program Overview...
Inventory almost done: Help from classes: Spring 2024 Learning Objective(s) 1 Learn about object and classes 1 Learn about unit testing Overview of the Program...
Arrays (2D): Bin Packing Learning Objective(s) 1 Learn to use two dimensional arrays 1 Be introduced to an NP Complete problem Overview of the program This...
Algorithm for placing one item This algorithm should be sent the 2D array and one item. Assume there there is space available Start with the 0`th ship...
Just search or sort then search? Learning Objective(s) 1 Implement an n^2 sort 1 Implement the sequential and binary search 1 Confirm Big O of your searches...
Help to load a file into an array Because you don`t know the size, you need to read until the end of the file (no longer has.next()) Because you need to...
Inventory updates: Improvement with arrays: Fall 2023 Learning Objective(s) 1 Learn about arrays and how to use arrays 1 Do more abstraction Overview of the...
Details Professor: Dr. Cathy Bareiss Office SB 31 Class Time: 2:00 2:50 W Class Location: S 025 Textbook: Student membership in ACM. Resources...
Inventory updates: Methods, files and command line arguments: Spring 2024 Learning Objective(s) 1 Learn to use command line arguments 1 Do more abstraction...
Inheritance Lab: Adding Additional Games: Spring 2024 Learning Objective(s) 1 Learn to use inheritance. 1 Learn more about programming in groups Overview...
Exceptions: Quiz program using exceptions: Spring 2024 Learning Objective(s) 1 Continue to improve methods 1 Continue to work with files 1 Become more confident...
SQL Lab 3 This lab uses the enrollment data. Only turn in the sql statements (not the results of the query). You may test your queries out online. (But remember, just...
Development hint for lab 6 1. Write the method to get a specified value in a file (such as the third number). It should be sent a string representing that...
Methods 2: Inventory control with files: Spring 2024 Learning Objective(s) 1 Improving methods skill 1 Work with files 1 Use constants Overview of the...
GUI Lab: Tic Tac Toe Game: Spring 2024 Learning Objective(s) 1 Learn to implement GUI`s in java Overview of the Program Create a GUI environment for the Tic...
SQL Homework 3 This homework uses the sailors data Only turn in the sql statements (not the results of the query). You may test your queries out online. (But remember...
Homework Number Systems Part A: Convert from base 2 to base 10 1. 101101 1. 110111 Part B: Convert from base 8 to base 10 1. 463...
Algorithm hint for displayMonth method get the number of days in a month (from another method) ( numDays ) display the title of the month (using another...
Methods: A month`s calendar a better way: Spring 2024 Learning Objective(s) 1 Learn about methods 1 Understand some benefits of abstraction Overview of the...
Objects Lab: Tic Tac Toe Game: Spring 2024 Learning Objective(s) 1 Design and develop a program using objects 1 Abstract i/o into only one class Overview...
Repetition 2: A month`s calendar: Spring 2024 Learning Objective(s) 1 Improving repetition skills 1 Learn the for loop 1 Become independent when using...
Proper spacing of numbers A simple way to think about it is to display an extra space if a number is less than 10. This will not work if dealing with negative...
Algorithm hint for second repetition lab (Spring 2024) banner comment import`s declare your class declare the main method declare your...
The overall objective of the Engine Internship is to provide a real world experience for students in the innovation, commercialization, and entrepreneurship space...
Switch hint for first repetition lab (Spring 2024) Don`t forget your breaks!
Repetition: Spring 2024 Learning Objective(s) 1 Learn to use repetition with a priming read 1 Learn to use a switch statement Overview of the Program For this...
Show
10,
20,
50,
100,
500,
1000 results per page, or
show all.
Related topics:
RSS feed,
ATOM feed,
WebNotify,
site changes,
site map
This topic: CenterForComputing
> WebChanges
Topic revision: r1 - 2006-11-15 - TWikiContributor