Recent Changes in CenterForComputing Web retrieved at 14:40 (GMT)
Additional course goals Learn C/C Develop Linux skills Details Professor: Dr. Cathy Bareiss Office SB 31 Class Time: 12:30 1:50 TR...
CSC 322 Lab 3 Objectives 1. Improve Linux skills 1. Code at least two hash routines and two collision handling algorithms for hashing 1. Study the time implications...
Inheritance Lab: Adding Additional Games: Spring 2024 Learning Objective(s) 1 Learn to use inheritance. 1 Learn more about programming in groups Overview...
Color Frequency Counter Objectives 1. Learn about arrays Assignment 1. Create a clean program that will count the number of occurrences of each color and display...
Time to be an actor Objectives 1 Be creative 1 Build a complex program using a lot of techniques from before Assignment 1 Come up with a script for your...
Tag along Objectives 1. Reinforce parallel programming skills 1. Enhance use variables 1. Experience the pair programming technique Assignment 1. Create...
Objects Lab: Tic Tac Toe Game: Spring 2025 Learning Objective(s) 1 Do simple inheritance Overview of the Program Finish the restaurant program Specifics...
GUI Lab: Tic Tac Toe Game: Spring 2025 Learning Objective(s) 1. implement GUI`s in java 1. Simpler to do lab Overview of the Program Create a GUI environment...
CSC 322 Lab 3 Objectives 1. Improve Linux skills 1. Code merge sort, heap sort, and external sort 1. Study the time implications of the sort Problem...
Don`t fall Objectives 1. Start to learn parallel programming 1. Reinforce repetition 1. Reinforce selection 1. Experience proper pair programming Assignment...
Playing a song Objectives 1. Reinforce repetition 1. Reinforce selection 1. Be creative and have fun Assignment 1. Create a clean program that will play...
Geometric drawing Objectives 1. Learn to use repetition 1. Learn to use variables 1. Reinforce selection skills 1. Reinforce reading from the brick Assignment...
Details Professor: Dr. Cathy Bareiss Office SB 31 Class Time: Class Location: Textbook: https://ortop.org/wiki/index.php?title Programming Using...
CSC 322 Lab 2 Objectives 1. Improve C and linux skills 1. Work with binary trees 1. Implement algorithms to encode and decode via huffman codes 1. Work...
Introduction to Objects: Finite State Machines Learning Objectives 1 Refresh programming skills including use of arrays 1 Learn about objects 1 Learn about...
CSC 322 Lab 1 Objectives 1. Learn C (not C ) 1. Start to learn Linux and vi 1. Implement stacks and queues 1. Use arrays and linked lists Problem Write...
Displaying a string on the brick You need to change the display block to get the data via `wired` not a set string. This will allow you to connect the text block...
To get sensor data to a string For this problem, you will need to use a `wire`. Make sure you are reading the correct type of data from the sensor.
Working with sensors Objectives 1. Learn about selection 1. Be able to read sensors 1. Be able to respond to the brick buttons 1. Work with text...
Objects Lab: Tic Tac Toe Game: Spring 2025 Learning Objective(s) 1 Design and develop a program using objects 1 Abstract i/o into only one class Overview...
Details Professor: Arisoa Randrianasolo Office: Online via Zoom. Office hours MWF:1 4pm Class Time: Online Class Location: Online Textbook...
CSC 102: Introduction to Programming CSC 221: Programming 2: Design and Object Oriented Programming CSC 310: Dev Ops 2 CSC 314: ML and Data...
Details Professor: Scott Dempsey Office Class Time: TBA Class Location: Textbook: Course Content Policies Assignments Computing work...
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...
Details Professor: Dr. Cathy Bareiss Office SB 31 Class Time: 9:30 10:50 R Class Location: S 025 Textbook: Student membership in ACM Course...
Details Professor: Dr. Cathy Bareiss Office SB 31 Class Time: 11:00 11:50 MWF Class Location: S 025 Textbook: Student membership in ACM Course...
Details Professor: Dr. Cathy Bareiss Office SB 31 Class Time: 2:00 2:50 MW Lab Time: 2:00 3:20 TF Class Location: S 025 Textbook: Student...
More methods: Shopping lists: Fall 2024 Learning Objective(s) Improve skills with methods Improve skills with files (and exceptions) Learn the need...
Homework Assignment: Converting Between Bases Instructions: 1. Converting Binary to Decimal: 1010 #8322; 11011 #8322; 111100 #8321;...
Introduction to methods: Yearly Calendar: Fall 2024 Learning Objective(s) Appreciate the use of methods/abstraction to add clarity to a larger program Be...
Repetition well done: Yearly Calendar: Fall 2024 Learning Objective(s) Strengthen skills with repetition Experience with lot`s of details and the need for...
Repetition Lab: Calculator: Fall 2024 Learning Objective(s) Enhance skills with constants Learn about event controlled loops (and use a priming read)...
Hint 3 on random numbers for Lab 2 (Fall 2024) Here is program that will print a random integer between 0 and 10: import java.io. ; import java.util. ; public class...
Selection Lab Program: Fall 2024 Learning Objective(s) Learn to use constants Learn to use selection statements Learn to use random numbers Learn...
First Program: Fall 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...
Expected Classroom Etiquette It is assumed that everyone in the room (live and virtual) are there to share in the learning that is happening. Therefore major underlying...
Dr. Bareiss` Philosophy about Education General idea: We are a team working together to learn the material and we are here because we want to engage in that activity...
Details Professor: Dr. Cathy Bareiss Office SB 31 Class Time: TBA Class Location: S 025 Textbook: Student membership in ACM Course Content...
Details Professor: Scott Dempsey Office Class Time: TBA Class Location: Textbook: Course Content Policies Assignments Computing work...
It is expected that any coursework (including, but not limited to, essays, papers, exams, projects, and lab reports) submitted by a student will be a product of their...
Unofficial teaching schedule Year Fall Teaching Hours Professor Spring Teaching hours Professor 2023 CSC 113: Digital...
Bethel`s 2024 Workshop for Interns Basic information Instructor: Dr. Cathy Bareiss Location: Bethel University: Science Building 027 Original Date...
GUI Lab: Quiz: Fall 2024 Learning Objective(s) Learn to develop a GUI based program Overview of the Program Adapt lab 10 (the quiz program) to work with a GUI...
Just search or sort then search? Learning Objective(s) 1 Understand how to sort 1 Be able to search sequentially and with the binary search 1 Start to develop...
Hint 2: Quiz with arrays: Repeating wrong answers 1. Create a boolean array (the size of the number of questions) and initialize all to false. 1. When a question...
Nested Loops Lab: Quiz: Fall 2024 Learning Objective(s) Improve skill with arrays Work with 2d arrays Overview of the Program Adapt lab 5 (the quiz program...
Arrays: Shopping lists: a better way: Fall 2024 Learning Objective(s) Learn to use arrays Overview of the Program Adapt the program from the previous lab to...
Dealing with strings (esp. leading spaces and/or end of line) Leading spaces The easiest way to remove leading spaces (such as a tab or blank) is to use the trim...
Hint: working with files for lab 08 Reading a file There are plenty of class examples of this. Be sure to use a FileReader (as covered in class as opposed to any...
Nested Loops Lab: Quiz: Fall 2024 Learning Objective(s) Implement nested loops Work with a sequential text file Implement exceptions Overview of the...
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