Docsity
Docsity

Prepare for your exams
Prepare for your exams

Study with the several resources on Docsity


Earn points to download
Earn points to download

Earn points by helping other students or get them with a premium plan


Guidelines and tips
Guidelines and tips

CIS 3023 - Exam I: Problem Solving Techniques and Examples, Exams of Computer Science

Various problem solving techniques discussed in cis 3023 exam i, including write down the problem, re-write the problem, identify auxiliary variables, make the problem concrete, make the problem simpler, make the problem harder, iterative refinement, and partitioning the problem and recursive partitioning. Each technique is accompanied by an example.

Typology: Exams

Pre 2010

Uploaded on 03/11/2009

koofers-user-lup-1
koofers-user-lup-1 🇺🇸

10 documents

1 / 1

Toggle sidebar

Related documents


Partial preview of the text

Download CIS 3023 - Exam I: Problem Solving Techniques and Examples and more Exams Computer Science in PDF only on Docsity! CIS 3023 – Exam I Review Exercises Question #10: State each of the problem solving techniques discussed and show an example of how each would be used. Technique: Example discussed in lecture Write Down the Problem: Calculating the square root of a number. Re-Write the Problem in Your Own Words: Calculating the square root of a number. Identify Auxiliary Variables: Determine whether two circles overlap, what are the values (variables) necessary to represent the circles. Make the Problem Concrete: Determine whether two circles overlap, look for specific circles. Make the Problem Simpler: Determine whether two circles overlap, look for circles with a radius of 0. Make the Problem Harder: Determine whether two circles overlap, look for whether two spheres overlap. Iterative Refinement: Calculating the square root of a number. Partitioning the Problem and Recursive Partitioning: Looking for palindromes within a field of study. Working Backwards: Jug pouring problem.