<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://cs.indstate.edu/web/index.php?action=history&amp;feed=atom&amp;title=Python_Assessment</id>
	<title>Python Assessment - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://cs.indstate.edu/web/index.php?action=history&amp;feed=atom&amp;title=Python_Assessment"/>
	<link rel="alternate" type="text/html" href="https://cs.indstate.edu/web/index.php?title=Python_Assessment&amp;action=history"/>
	<updated>2026-04-14T21:46:25Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.44.0</generator>
	<entry>
		<id>https://cs.indstate.edu/web/index.php?title=Python_Assessment&amp;diff=365&amp;oldid=prev</id>
		<title>Jkinne: 1 revision imported</title>
		<link rel="alternate" type="text/html" href="https://cs.indstate.edu/web/index.php?title=Python_Assessment&amp;diff=365&amp;oldid=prev"/>
		<updated>2025-08-17T13:22:22Z</updated>

		<summary type="html">&lt;p&gt;1 revision imported&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;col class=&quot;diff-marker&quot; /&gt;
				&lt;col class=&quot;diff-content&quot; /&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;2&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Revision as of 13:22, 17 August 2025&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;4&quot; class=&quot;diff-notice&quot; lang=&quot;en&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(No difference)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;
&lt;!-- diff cache key wiki2:diff:1.41:old-364:rev-365 --&gt;
&lt;/table&gt;</summary>
		<author><name>Jkinne</name></author>
	</entry>
	<entry>
		<id>https://cs.indstate.edu/web/index.php?title=Python_Assessment&amp;diff=364&amp;oldid=prev</id>
		<title>wiki_previous&gt;Jkinne: Created page with &quot;The C assessment exam has used questions on specific topics, often those in the following list.  # Simple and nested loops.  # Functions # Bit operations # Linked list  # Bina...&quot;</title>
		<link rel="alternate" type="text/html" href="https://cs.indstate.edu/web/index.php?title=Python_Assessment&amp;diff=364&amp;oldid=prev"/>
		<updated>2021-03-13T13:21:44Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;The C assessment exam has used questions on specific topics, often those in the following list.  # Simple and nested loops.  # Functions # Bit operations # Linked list  # Bina...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;The C assessment exam has used questions on specific topics, often those in the following list. &lt;br /&gt;
# Simple and nested loops. &lt;br /&gt;
# Functions&lt;br /&gt;
# Bit operations&lt;br /&gt;
# Linked list &lt;br /&gt;
# Binary trees&lt;br /&gt;
&lt;br /&gt;
This page is an attempt to identify such a set of topics for Python. The focus is on fundamentals, not modules. No imports allowed. &lt;br /&gt;
For each problem type, some topics are listed. Then example problems are given (or will be someday), and split into three categories: Easy, Medium, and Hard. A typical exam might use one each from the Easy and Hard categories, and three from the Medium category. &lt;br /&gt;
&lt;br /&gt;
= Basic (BASIC) level programs =&lt;br /&gt;
== Topics == &lt;br /&gt;
# Basic data types: string, numeric (not Complex), Boolean &lt;br /&gt;
# Reading and writing: input and print. &lt;br /&gt;
# Type conversions: string to/from numeric. &lt;br /&gt;
# Algebraic expressions. Assignment statements. &lt;br /&gt;
== Problems ==&lt;br /&gt;
# Easy: Celsius to Fahrenheit conversion. &lt;br /&gt;
# Medium: Temperature conversion with inputs like: 30F, 40C, etc. &lt;br /&gt;
# Harder: Real solutions to quadratic equations. &lt;br /&gt;
&lt;br /&gt;
= Fundamental Data Structures =&lt;br /&gt;
List, tuple, set, frozenset, dictionary&lt;br /&gt;
== Topics == &lt;br /&gt;
# Creation of, and basic operations on, all five data structures. &lt;br /&gt;
# Slicing. &lt;br /&gt;
# Selecting the appropriate data structure. &lt;br /&gt;
# Comprehensions. &lt;br /&gt;
== Problems ==&lt;br /&gt;
# Easy: Find words common to two lists, read from 2 column data .le. &lt;br /&gt;
# Medium: Find words common to two of three lists. &lt;br /&gt;
i# Medium: Multiple choice? A few scenarios, pick the data structure: Example: Look­ing up words in a foxed list of words. Which of the five do we use? Or, looking up words in a changing list of words. Looking up and counting frequencies for a list of words. &lt;br /&gt;
# Harder (Code golf with comprehensions?) Sort, max, min problems. Example: Sort a list of words by the number of vowels in the word. Example: Find the number (in a list) with the most one bits in its binary representation. &lt;br /&gt;
&lt;br /&gt;
= Functions =&lt;br /&gt;
== Topics ==&lt;br /&gt;
# Basic definition. &lt;br /&gt;
# Test knowledge of builtin functions. &lt;br /&gt;
# Recursion. &lt;br /&gt;
# Decorators? Move this to classes? &lt;br /&gt;
== Problems ==&lt;br /&gt;
# Easy: Defining simple functions. Position and named parameters. &lt;br /&gt;
# Medium: Recursion with memoization (functools not allowed). &lt;br /&gt;
# Hard: Functions returning functions: return a linear or quadratic function given coefficients. &lt;br /&gt;
&lt;br /&gt;
= Iterators and Generators =&lt;br /&gt;
== Topics ==&lt;br /&gt;
# Using iterators: for, next, iter. &lt;br /&gt;
# Common iterators: lists, tuples, dictionaries, range, zip, enumerate, .le descriptors, et cetera. &lt;br /&gt;
# Creating iterators: class-based iterations (move to classes?). &lt;br /&gt;
== Problems ==&lt;br /&gt;
# Easy: nested loops, one of Rob’s patterns of characters. &lt;br /&gt;
# Medium: nested loops, one of Rob’s harder patterns. &lt;br /&gt;
# Medium: Given class definition: write a method to do something. &lt;br /&gt;
# Hard: (generators) Construct generator for words from text .le. &lt;br /&gt;
&lt;br /&gt;
= Classes =&lt;br /&gt;
== Topics ==&lt;br /&gt;
# Basic definition. &lt;br /&gt;
# Dunder methods, class based iterators. &lt;br /&gt;
# Inheritance. Decorators. &lt;br /&gt;
# Privacy conventions. &lt;br /&gt;
== Problems ==&lt;br /&gt;
# Easy: De.ne a Point class; add a few methods for distance, norms. &lt;br /&gt;
# Medium: Binary tree class, with the usual methods, a couple dunders (in, len, str, add, eq, invert). &lt;br /&gt;
# Hard: Subset frequency counting trie. Given a big set, .nd all subsets that appear as subsets in at least r of the sets.&lt;/div&gt;</summary>
		<author><name>wiki_previous&gt;Jkinne</name></author>
	</entry>
</feed>