Showing 0–0 of 0 results
| # | Exercise Title | Features | Description | Platform | Keywords |
|---|---|---|---|---|---|
| 1 | Tree Indexing Proficiency Exercise | Question, Battery | Tree-based indexing proficiency exercise. User indicates the number of disk pages visited for a given tree. | OpenDSA | Tree-Based Indexing |
| 2 | Choosing the Best Indexing Method | Question, Battery | Self-test question battery on which is the best indexing choice for a given scenario. | OpenDSA | Tree-Based Indexing |
| 3 | Building a B+ Tree of Degree 5 | Algorithm Visualization | Slideshow showing a series of insert operations in a B+ Tree of degree 5. | OpenDSA | Tree-Based Indexing, B-Tree |
| 4 | Building a B+ Tree of Degree 4 | Algorithm Visualization | Slideshow showing a series of insert operations in a B+ Tree of degree 4. | OpenDSA | Tree-Based Indexing, B-Tree |
| 5 | Deletion from a B+ Tree of Degree 4 | Algorithm Visualization | Slideshow showing a series of delete operations in a B+ Tree of degree 4. | OpenDSA | Tree-Based Indexing, B-Tree |
| 6 | Search in a B+ Tree of Degree 4 | Algorithm Visualization | Slideshow showing a series of search operations in a B+ Tree of degree 4. | OpenDSA | Tree-Based Indexing, B-Tree |
| 7 | Promote Key on Insertion into a 2-3 tree. | Algorithm Visualization | Slideshow showing how keys can be promoted on insertion into a 2-3 tree. | OpenDSA | Tree-Based Indexing, 2-3 Tree |
| 8 | Simple Insertion into a 2-3 tree. | Algorithm Visualization | Slideshow showing simple insertion into a 2-3 tree. | OpenDSA | Tree-Based Indexing, 2-3 Tree |
| 9 | Split on Insertion into a 2-3 tree. | Algorithm Visualization | Slideshow showing how node split on insertion is handled by a 2-3 tree. | OpenDSA | Tree-Based Indexing, 2-3 Tree |
| 10 | Building a 2-3+ Tree Slideshow | Algorithm Visualization | Slideshow showing a series of insertions into a 2-3+ tree. | OpenDSA | Tree-Based Indexing, 2-3 Tree |
| 11 | Deletion from a 2-3+ Tree | Algorithm Visualization | Slideshow showing a series of delete operations in a 2-3+ tree. | OpenDSA | Tree-Based Indexing, 2-3 Tree |
| 12 | Search in a 2-3+ Tree | Algorithm Visualization | Slideshow showing a series of search operations in a 2-3+ tree. | OpenDSA | Tree-Based Indexing, 2-3 Tree |
| 13 | B+ Tree Insertion Proficiency Exercise | Tracing Exercise | Interactive proficiency exercise for insertion into a B+ Tree. User clicks on tree nodes to indicate how the insert process... | OpenDSA | B-Tree, Tree-Based Indexing |
| 14 | Paged BST Slideshow | Algorithm Visualization | Slideshow showing the use of paging with a BST-based index. Updating the BST to require it to remain a complete... | OpenDSA | Tree-Based Indexing |
| 15 | Paged BST with Page Rebalancing For Use on Disk Slideshow | Algorithm Visualization | Slideshow showing the use of paging with a BST-based index. Reorganizing the nodes to be on optimal disk pages reduces... | OpenDSA | Tree-Based Indexing |
| 16 | Recursive Operations in a Binary Tree | Presentation | Slideshow discussing recursive operations on a binary tree. | OpenDSA | Array-Based Stack |
| 17 | Determining When at Least One of the Three Boolean Variables is True | Construct a program that determines whether at least one of the three boolean variables is true based on the inputs... | PCEX | ||
| 18 | Determining When at Least One of the Three Boolean Variables is True | Construct a program that determines whether at least one of the three boolean variables is true based on the inputs... | PCEX | ||
| 19 | Determining When at Least One of the Three Boolean Variables is True | Construct a program that determines whether at least one of the three boolean variables is True based on the inputs... | PCEX | ||
| 20 | Determining When at Least One of the Three Boolean Variables is True | Construct a program that determines whether at least one of the three boolean variables is True based on the inputs... | PCEX | ||
| 21 | Determining When at Least One of the Three Boolean Variables is False | Construct a program that determines whether at least one of the three boolean variables is false based on the inputs... | PCEX | ||
| 22 | Determining When at Least One of the Three Boolean Variables is False | Construct a program that determines whether at least one of the three boolean variables is false based on the inputs... | PCEX | ||
| 23 | Determining When at Least One of the Three Boolean Variables is False | Construct a program that determines whether at least one of the three boolean variables is False based on the inputs... | PCEX | ||
| 24 | Determining When at Least One of the Three Boolean Variables is False. | Construct a program that determines whether at least one of the three boolean variables is False based on the inputs... | PCEX | ||
| 25 | Tree | Python CodeVisualization for demonstrating Tree | JSVEE | binary search, trees | |
| 26 | Tree inorder traversal | Python PredictingFinalResult for demonstrating Tree inorder traversal | QuizPET | binary search, trees | |
| 27 | Tree preorder traversal | Python PredictingFinalResult for demonstrating Tree preorder traversal | QuizPET | binary search, trees | |
| 28 | Tree traversal. | The tree can be traversed by deciding on a sequence to visit each node. There are three traversal algorithms: in-order... | PCEX | ||
| 29 | Tree traversal. | The tree can be traversed by deciding on a sequence to visit each node. There are three traversal algorithms: in-order... | PCEX | ||
| 30 | Tree Node Access | Python CodeVisualization for demonstrating Tree Node Access | JSVEE | binary search, trees | |
| 31 | Tree Implementation Overhead Exercise | Calculation Exercise, Battery | Self-practice questions that require the user to calculate overhead fractions for various binary tree node implementations. | OpenDSA | Binary Tree, Overhead |
| 32 | Tree Timeline Slideshow | Algorithm Visualization | Slideshow showing the concept of marking a timeline for the values stored in a BST. This will be contrasted with... | OpenDSA | Trie |
| 33 | KD Tree Visualization | Algorithm Visualization | Algorithm Visualization illustrating the KD Tree. | OpenDSA | KD Tree |
| 34 | Binary Tree Chapter Summary Questions | Question, Battery | Self-practice questions for the full Binary Tree chapter. | OpenDSA | Binary Tree, Binary Search Tree, Heap, Huffman Coding Tree |
| 35 | Binary Tree Definition Calculation Questions | Question, Battery, Calculation Exercise | Self-practice questions about binary tree terminology that require calculation of quantities such as node counts and tree heights. | OpenDSA | Binary Tree |
| 36 | Binary Tree Traversal Summary Questions | Question, Battery | Self-practice questions about binary tree traversals. | OpenDSA | Binary Tree Traversal |
| 37 | Binary Tree Terminology Practice Questions | Question, Battery | Self-practice questions about binary tree terminology that require calculation of quantities such as descendants and tree heights. | OpenDSA | Binary Tree |
| 38 | General Tree Sequential Representation Proficiency Exercise | Tracing Exercise | User must show the sequential representation for a given general tree. | OpenDSA | Sequential Representation, General Tree |
| 39 | Binary Tree Sequential Representation Proficiency Exercise | Tracing Exercise | User must show the sequential representation for a given binary tree. | OpenDSA | Sequential Representation, Binary Tree |
| 40 | Recursive Tree Processing: Value Summation | Tracing Exercise | A question related to tree processing in a functional programming language: Value summation. | OpenDSA | Functional Programming |
| 41 | Recursive Tree Processing: Substitution | Question | A question related to tree processing in a functional programming language: Substitution. | OpenDSA | Functional Programming |
| 42 | Recursive Tree Processing: Substitution 2 | Question | A question related to tree processing in a functional programming language: Substitution 2. | OpenDSA | Functional Programming |
| 43 | Recursive Tree Processing: Mystery Function | Tracing Exercise, Battery | A collection of self-practice questions related to tree processing in a functional programming language: Mystery Function. | OpenDSA | Functional Programming |
| 44 | Traverse an expression tree | Algorithm Visualization, Code Tracing Presentation | Slideshow demonstrating traversal of an expression tree. The primary point is to highlight the node implementation for a full binary... | OpenDSA | Expression Tree, Binary Tree Traversal, Full Binary Tree |
| 45 | General Tree Postorder Traversal Slideshow | Algorithm Visualization | Slideshow showing postorder traveral of a general tree, and demonstrates the general tree ADT. | OpenDSA | General Tree |
| 46 | General Tree Preorder Traversal Slideshow | Algorithm Visualization, Code Tracing Presentation | Slideshow showing preorder traveral of a general tree, and demonstrates the general tree ADT. | OpenDSA | General Tree |
| 47 | General Tree Serialization Slideshow | Algorithm Visualization | Slideshow how to reconstruct a general tree from a serialized representation of its node values. | OpenDSA | Serialization, Binary Tree |
| 48 | Binary Tree Serialization Slideshow: Internal Node Mark Bits | Algorithm Visualization | Slideshow how to reconstruct a binary tree from a serialized representation of its node values. Alternative representation using mark bits... | OpenDSA | Serialization, Binary Tree |
| 49 | Binary Tree Serialization Slideshow | Algorithm Visualization | Slideshow how to reconstruct a binary tree from a serialized representation of its node values. | OpenDSA | Serialization, Binary Tree |
| 50 | Parse Tree Example: Enforcing Order of Operations | Algorithm Visualization | Slideshow visualizing a parse tree from a grammar that enforces the correct order of operations. | OpenDSA | Parse Tree |
| 51 | Parse Tree Example for a Math Expression | Algorithm Visualization | Slideshow visualizing generation of a parse tree for a simple math expression. | OpenDSA | Parse Tree |
| 52 | Ambiguous Parse Tree Example for a Math Expression | Algorithm Visualization | Slideshow visualizing how generation of a parse tree from a grammar might be ambiguous. | OpenDSA | Parse Tree |
| 53 | Ambiguous Parse Tree Example for a Math Expression: 2 | Algorithm Visualization | Slideshow visualizing a second example of how generation of a parse tree from a grammar might be ambiguous. | OpenDSA | Parse Tree |
| 54 | Constructing a Binomial Tree | Algorithm Visualization | Slideshow showing a small example of building a binomial tree. | OpenDSA | Binomial Tree |
| 55 | q_py_tree_inorder_traverse_es | Python PredictingFinalResult for demonstrating q_py_tree_inorder_traverse_es | QuizPET | ||
| 56 | q_py_tree_preorder_traverse_es | Python PredictingFinalResult for demonstrating q_py_tree_preorder_traverse_es | QuizPET | ||
| 57 | Inserting binary tree | In a BinaryTree, adding new nodes to the tree is an important capability to have.\nConstruct a simple implementation of a... | PCEX | ||
| 58 | Inserting binary tree | In a BinaryTree, adding new nodes to the tree is an important capability to have.\nConstruct a simple implementation of a... | PCEX | ||
| 59 | Binary Search Tree Insert Proficiency Exercise | Tracing Exercise | Interactive exercise to demonstrate proficiency with BST insert. | OpenDSA | Binary Search Tree |
| 60 | Binary Search Tree Remove Proficiency Exercise | Tracing Exercise | Interactive exercise to demonstrate proficiency with BST remove. | OpenDSA | Binary Search Tree |
| 61 | Binary Search Tree Search Proficiency Exercise | Tracing Exercise | Interactive exercise to demonstrate proficiency with BST search. | OpenDSA | Binary Search Tree |
| 62 | Huffman Coding Tree Build Visualization | Algorithm Visualization, User Supplied Data | Visualization for building a Huffman Coding Tree from a set of weights supplied by the user. | OpenDSA | Huffman Coding Tree |
| 63 | Kruskal's Minimal-Cost Spanning Tree Proficiency Exercise | Tracing Exercise | Proficiency exercise for Kruskal's minimal-cost spanning tree. User must indicate the order in which nodes are visited by clicking on... | OpenDSA | Minimal-Cost Spanning Tree |
| 64 | Prim's Minimal-Cost Spanning Tree Proficiency Exercise | Tracing Exercise | Proficiency exercise for Prim's minimal-cost spanning tree. User must indicate the order in which nodes are visited by clicking on... | OpenDSA | Minimal-Cost Spanning Tree |
| 65 | Binary Search Tree Summary Questions | Question, Battery | Self-practice questions about Binary Search Trees. | OpenDSA | Binary Search Tree |
| 66 | Complete Binary Tree Calculation Questions | Calculation Exercise, Battery | Self-practice questions requiring user to calcuate node positions and values in an array representation for a complete binary tree. | OpenDSA | Linked List |
| 67 | Determining Number of Parse Tree Nodes Exercise: Alternate | Calculation Exercise, Battery | User determines the number of nodes in a parse tree generated by a given string on a given grammar. Alternative... | OpenDSA | Context-Free Grammar, Parse Tree |
| 68 | Alternative Binary Tree Sequential Representation Proficiency Exercise | Tracing Exercise | User must show the sequential representation for a given binary tree. This representation marks internal nodes. | OpenDSA | Sequential Representation, Binary Tree |
| 69 | Full Binary Tree Sequential Representation Proficiency Exercise | Tracing Exercise | User must show the sequential representation for a given full binary tree. The representation uses a bit vector to deduce... | OpenDSA | Sequential Representation, Full Binary Tree |
| 70 | Determining Number of Parse Tree Nodes Exercise | Calculation Exercise | User determines the number of nodes in a parse tree generated by a given string on a given grammar. | OpenDSA | Context-Free Grammar, Parse Tree |
| 71 | Typical Mistakes During Tree Traversal | Code Tracing Presentation | Slideshow demonstrating some typical mistakes when writing recursive binary tree traversals. | OpenDSA | Preorder Traversal |
| 72 | Huffman Coding Tree Slideshow: Build | Algorithm Visualization | Slideshow visualizing the Huffman Coding Tree construction algorithm: Building the tree from a collection of weighted elements. | OpenDSA | Huffman Coding Tree |
| 73 | Huffman Coding Tree Slideshow: Setting Codes | Algorithm Visualization | Slideshow visualizing the Huffman Coding Tree code setting step. | OpenDSA | Huffman Coding Tree |
| 74 | Huffman Coding Tree Slideshow: Decoding | Algorithm Visualization | Slideshow visualizing the process of decoding a string of Huffman Codes. | OpenDSA | Huffman Coding Tree |
| 75 | Huffman Coding Tree Slideshow: Label Edges | Algorithm Visualization | Slideshow visualizing the Huffman Coding Tree edge labeling step. | OpenDSA | Huffman Coding Tree |
| 76 | Full Binary Tree Serialization Slideshow: Mark Bits | Algorithm Visualization | Slideshow how to reconstruct a full binary tree from a serialized representation of its node values. All that is needed... | OpenDSA | Serialization, Binary Tree |
| 77 | Kruskal's Minimal-Cost Spanning Tree Algorithm slideshow | Algorithm Visualization | Slideshow demonstrating Kruskal's algorithm for constructing the minimal cost spanning tree for a graph. | OpenDSA | Minimal-Cost Spanning Tree |
| 78 | Prim's Minimal-Cost Spanning Tree Algorithm slideshow | Algorithm Visualization | Slideshow demonstrating Prim's algorithm for constructing the minimal cost spanning tree for a graph. | OpenDSA | Minimal-Cost Spanning Tree |
| 79 | Unambiguous CFG Parse Tree Example | Algorithm Visualization | Visualization for the parse tree generated for a mathematical expression from a non-ambiguouse CFG. | OpenDSA | Context-Free Language, Parse Tree |
| 80 | Lambda Calculus: How to Build a Parse Tree | Algorithm Visualization, Code Tracing Presentation | Slideshow visualizing building a parse tree for lambda calculus expressions. | OpenDSA | Lambda Calculus |
| 81 | Functional Programming Recursion: Summing Elements in a Tree | Algorithm Visualization, Code Tracing Presentation | Slideshow visualizing list-of-list (tree) processing in a functional programming language: sum all values. | OpenDSA | Functional Programming |
| 82 | Parsing an Expression | Algorithm Visualization, User Supplied Data | Algorithm Visualization for generating the parse tree of a user-supplied mathematical expression. Demonstrates that the associated grammar enforces the correct... | OpenDSA | Parse Tree |
| 83 | Huffman Coding Proficiency Exercise | Tracing Exercise | Practice profiency exercise for Huffman Coding Trees. User must do actions like show the codes for a string, or vice... | OpenDSA | Huffman Coding Tree |
| 84 | Determining Whether a Given String is Derivable from Given Grammar Exercise: Alternate | Calculation Exercise, Battery | A collection of self-practice questions where users determine which strings can or cannot be derived from a given grammar: Alternate. | OpenDSA | Context-Free Grammar, Parse Tree |
| 85 | CFG Ambiguity 1 Exercise | Question | A question where users determine whether a given string is parsed ambiguously or not. | OpenDSA | Context-Free Grammar, Parse Tree |
| 86 | Determining Whether a Given String is Derivable from Given Grammar Exercise | Question | A question where users determine which strings can or cannot be derived from a given grammar. | OpenDSA | Context-Free Grammar, Parse Tree |
| 87 | BST Delete Max Slideshow | Algorithm Visualization, Code Tracing Presentation | Slideshow visualizing recursive delete of the maximum value in a BST. | OpenDSA | Binary Search Tree |
| 88 | BST Insert Slideshow | Algorithm Visualization, Code Tracing Presentation | Slideshow visualizing recursive insert in a BST. | OpenDSA | Binary Search Tree |
| 89 | BST Remove Slideshow | Algorithm Visualization, Code Tracing Presentation | Slideshow visualizing recursive remove value in a BST. | OpenDSA | Binary Search Tree |
| 90 | BST Search Slideshow | Algorithm Visualization, Code Tracing Presentation | Slideshow visualizing recursive search in a BST. | OpenDSA | Binary Search Tree |
| 91 | Inefficient Range Query in a BST Slideshow | Algorithm Visualization, Code Tracing Presentation | Slideshow visualizing a range query implementation in a BST, contrasting an inefficient and an efficient implementation. | OpenDSA | Binary Search Tree |
| 92 | Context-Free Language Derivation Trees Example | Algorithm Visualization | Visualization of a derviation tree from a given context-free grammar. | OpenDSA | Context-Free Language |
| 93 | Call Structure for the Fibonacci Sequence Problem | Algorithm Visualization | Slideshow showing the tree structure for calls by a recursive implementation of the Fibonacci sequence calculation. | OpenDSA | Dynamic Programming, Fibonacci Sequence |
| 94 | Call Structure for the Chained Matrix Multiplication Problem | Algorithm Visualization | Slideshow showing the tree structure for calls by a solution to the chained matrix multiplication problem. | OpenDSA | Dynamic Programming, Chained Matrix Multplication Problem |
| 95 | Functional Programming Recursion: BST | Algorithm Visualization, Code Tracing Presentation | Slideshow visualizing list-of-list (tree) processing in a functional programming language: Binary Search Tree Search. | OpenDSA | Functional Programming |
| 96 | Construct an inorder traversal function | Construct an inorder traversal function that recursively traverse a tree from left node, root node and right node. We store... | jsParsons | trees | |
| 97 | Construct a preorder traversal function | Construct a preorder traversal function that recursively traverse a tree from root node, left node and right node. We store... | jsParsons | trees | |
| 98 | Inorder Traversal Shown in Detail | Algorithm Visualization, Code Tracing Presentation | Slideshow presenting a detailed visualization of inorder traversal of a binary tree and how the recursion works. | OpenDSA | Inorder Traversal |
| 99 | Postorder Traversal Shown in Detail | Algorithm Visualization, Code Tracing Presentation | Slideshow presenting a detailed visualization of postorder traversal of a binary tree and how the recursion works. | OpenDSA | Postorder Traversal |
| 100 | Preorder Traversal Shown in Detail | Algorithm Visualization, Code Tracing Presentation | Slideshow presenting a detailed visualization of preorder traversal of a binary tree and how the recursion works. | OpenDSA | Preorder Traversal |
| 101 | PR Quadtree Interactive Visualization | Algorithm Visualization, User Supplied Data | PR Quadtree Visualization that allows the user to click on locations to insert points to be inserted into or deleted... | OpenDSA | PR Quadtree |
| 102 | Union/Find Proficiency Exercise | Tracing Exercise | Proficiency exercise for the Union/Find algorithm to maintain a collection of disjoint sets. User must show the complete sequence of... | OpenDSA | Union/Find Algorithm |
| 103 | Bintree Interactive Visualization | Algorithm Visualization, User Supplied Data | Interactive Algorithm Visualization for the Bintree data structure. User can click to indicate where a point should be inserted or... | OpenDSA | Bintree |
| 104 | Trie Timeline Slideshow | Algorithm Visualization | Slideshow showing the concept of marking a timeline for the values stored in a Trie decomposition version of a BST. | OpenDSA | Trie |
| 105 | booleans.three_booleans | PCEX Set of activities for booleans.three_booleans | PCEX | ||
| 106 | booleans.three_booleans | PCEX Set of activities for booleans.three_booleans | PCEX | ||
| 107 | py_three_booleans | PCEX Set of activities for py_three_booleans | PCEX | ||
| 108 | py_three_booleans_llm | PCEX Set of activities for py_three_booleans_llm | PCEX | ||
| 109 | py_trees_insert_binarytree | PCEX Set of activities for py_trees_insert_binarytree | PCEX | ||
| 110 | py_trees_traversal | PCEX Set of activities for py_trees_traversal | PCEX | ||
| 111 | Given three numbers x, y, z, determine if one of them is the sum of the two others, and then print out the equation. | Code Completion | Given three numbers x, y, z, determine if one of them is the sum of the two others, and then... | CodeCheck | Branches, Branches Without Functions |
| 112 | Given three numbers x, y, z, print out how whether they are all distinct, two are the same, or all three are the same. | Code Completion | Given three numbers x, y, z, print out how whether they are all distinct, two are the same, or all... | CodeCheck | Branches, Branches Without Functions |
| 113 | Given three integers x, y, z, print the sum of the odd integers. | Code Completion | Given three integers x, y, z, print the sum of the odd integers. | CodeCheck | Branches, Branches Without Functions |
| 114 | Given three input strings, print all but the shortest one. | Code Completion | Given three input strings, print all but the shortest one. | CodeCheck | Branches, Branches Without Functions |
| 115 | Given three numbers x, y, z and a Boolean variable <code>strict</code>, return <code>true</code> if <code>strict</code> is false and x ≤ y ≤ z, or <code>strict</code> is true and x < y < z. | Code Completion |
Given three numbers x, y, z and a Boolean variable strict, return true if strict is false and x ≤...
|
CodeCheck | Branches, Branches with Functions |
| 116 | Given three numbers, return true if they are evenly spaced; that is, sorted in ascending or descending order, with the same distance between them. | Code Completion | Given three numbers, return true if they are evenly spaced; that is, sorted in ascending or descending order, with the... | CodeCheck | Branches, Branches with Functions |
| 117 | format with three arguments | Python PredictingFinalResult for demonstrating format with three arguments | QuizPET | string formatting, strings | |
| 118 | Determining When All Three Boolean Variables Are Equal | Construct a program that receives the value of three boolean variables from the user and determines whether all variables have... | PCEX | ||
| 119 | Determining When All Three Boolean Variables Are Equal | Construct a program that receives the value of three boolean variables from the user and determines whether all variables have... | PCEX | ||
| 120 | for_loops.j_for_three | PCEX Set of activities for for_loops.j_for_three | PCEX | ||
| 121 | for_loops.j_for_three | PCEX Set of activities for for_loops.j_for_three | PCEX | ||
| 122 | py_range_three | PCEX Set of activities for py_range_three | PCEX | ||
| 123 | py_range_three_llm | PCEX Set of activities for py_range_three_llm | PCEX | ||
| 124 | Determining When All Three Boolean Variables Are Equal | Construct a program that receives the value of three boolean variables from the user and determines whether all variables have... | PCEX | ||
| 125 | Determining When All Three Boolean Variables Are Equal. | Construct a program that receives the value of three boolean variables from the user and determines whether all variables have... | PCEX | ||
| 126 | Grammar Construction Exercise: Three Strings | Grammar Construction Exercise | Exercise where user must write the grammar for a given language. This language has three strings. | OpenDSA | Language, Grammar |
| 127 | Context-Free Language Derivation Trees Frameset | Programmed Instruction | Programmed Instruction Frameset discussing derivation trees for Context-Free Grammars. | OpenDSA | Context-Free Language |
| 128 | Reduction of True and False using Church Bools | Algorithm Visualization | Slideshow visualizing reduction of true and false using Church bools. | OpenDSA | Lambda Calculus |
| 129 | Determining the Smallest of the Three Integers | Construct a program that determines the smallest of the three integer values entered by the user. | PCEX | ||
| 130 | Determining the Largest of the Three Integers | Construct a program that determines the largest of the three integer values entered by the user. | PCEX | ||
| 131 | Determining the Smallest of the Three Integers | Construct a program that determines the smallest of the three integer values entered by the user. | PCEX | ||
| 132 | Determining the Largest of the Three Integers | Construct a program that determines the largest of the three integer values entered by the user. | PCEX | ||
| 133 | Determining the Smallest of the Three Integers | Construct a program that determines the smallest of the three integer values entered by the user. | PCEX | ||
| 134 | Determining the Largest of the Three Integers | Construct a program that determines the largest of the three integer values entered by the user. | PCEX | ||
| 135 | Given two numbers, return true if they both have the same sign. | Code Completion | Given two numbers, return true if they both have the same sign. | CodeCheck | Branches, Branches with Functions |
| 136 | Given four numbers a, b, c, d, return true if exactly two of them are the same. | Code Completion | Given four numbers a, b, c, d, return true if exactly two of them are the same. | CodeCheck | Branches, Branches with Functions |
| 137 | Given a string, return the string with the middle two characters swapped if it has even length, and the middle three characters swapped if it has odd length. | Code Completion | Given a string, return the string with the middle two characters swapped if it has even length, and the middle... | CodeCheck | Strings, No Loops |
| 138 | csedpad.07.IfElse.no_topic | Find the tallest among three individuals whose heights are given. | PCEX | ||
| 139 | JSON Iterate 2 | Using JSON structure list codes for first three flights | jsParsons | json, json-iterate | |
| 140 | Modulo is Even | Construct a function that will return True if a given number is even, otherwise false. | jsParsons | algorithm analysis, functions, if-else statement | |
| 141 | Crear una función y usar el operador módulo | Construye una funcion que devuelva True si un numero dado es par, de lo contrario False. | jsParsons | functions | |
| 142 | Updating an Element in the Array (Case 1) | Construct a program that initializes an array with three integers, changes the first element in the array, and finally, prints... | PCEX | ||
| 143 | Updating an Element in the Array (Case 1) | Construct a program that initializes an array with three integers, changes the first element in the array, and finally, prints... | PCEX | ||
| 144 | Updating an Element in the List (Case 1) | Construct a program that initializes a list with three values, changes the first element in the list, and finally, prints... | PCEX | ||
| 145 | Updating an Element in the List (Case 1) | Construct a program that initializes a list with three values, changes the first element in the list, and finally, prints... | PCEX | ||
| 146 | Construct a program that creates unique 3 digit combination | Construct a program which creates and prints all three-digit combinations from numbers 1-4 such that each number appears at most... | jsParsons | while loop | |
| 147 | Construir un programa que genere combinaciones únicas de 3 dígitos | Construye un programa que cree e imprima todas las combinaciones de tres digitos de los numeros del 1 al 4... | jsParsons | ||
| 148 | Construct a program that creates unique 3 digit combinations | Construct a program which creates and prints all three-digit combinations from numbers 1-4 such that each number appears at most... | jsParsons | ||
| 149 | Construir un programa que genere combinaciones únicas de 3 dígitos | Construye un programa que cree e imprima todas las combinaciones de tres digitos de los numeros del 1 al 4... | jsParsons | ||
| 150 | Linked List Operations - Contains | In this example, we will implement the contains() method that accepts a value and returns True if the value is... | PCEX | ||
| 151 | Point Class Hierarchy (Case 1) | Suppose we have a class Point and we want to extend it to produce class Point3D. The class Point has... | PCEX | ||
| 152 | Point Class Hierarchy (Case 2) | Suppose we have a class Point and we want to extend it to produce class Point3D. The class Point has... | PCEX | ||
| 153 | Point Class Hierarchy (Case 1) | Suppose we have a class Point and we want to extend it to produce class Point3D. The class Point has... | PCEX | ||
| 154 | Point Class Hierarchy (Case 2) | Suppose we have a class Point and we want to extend it to produce class Point3D. The class Point has... | PCEX | ||
| 155 | Math class 1 (Memphis) | Simple example of how to use Java Math methods. This program shows that the trig identity sin^2(x) + cos^2(x) =... | AnnEx | math | |
| 156 | On a chessboard, positions are marked with a letter between a and h for the column and a number between 1 and 8 for the row. | Code Completion | On a chessboard, positions are marked with a letter between a and h for the column and a number between... | CodeCheck | Branches, Branches with Functions |
| 157 | The Class for Representing a Bank Account (Case 1) | Construct a class that represents a basic bank account. This class should contain data representing the name of the account’s... | PCEX | ||
| 158 | The Class for Representing a Bank Account (Case 1) | Construct a class that represents a basic bank account. This class should contain data representing the name of the account’s... | PCEX | ||
| 159 | The Class for Representing a Bank Account (Case 2) | Construct a class that represents a basic bank account. This class should contain data representing the name of the account’s... | PCEX | ||
| 160 | The Class for Representing a Bank Account (Case 1) | Construct a class that represents a basic bank account. This class should contain data representing the name of the account’s... | PCEX | ||
| 161 | The Class for Representing a Bank Account (Case 1) | Construct a class that represents a basic bank account. This class should contain data representing the name of the account’s... | PCEX | ||
| 162 | The Class for Representing a Bank Account (Case 2). | Construct a class that represents a basic bank account. This class should contain data representing the name of the account’s... | PCEX | ||
| 163 | Search in the linked list. | When using a LinkedList, it is possible that you may want to search through the list to see if a... | PCEX | ||
| 164 | Queue Class - Check if Element Exists | In this example, you will use Queue class from queue provided by python. This class contains methods for adding a... | PCEX | ||
| 165 | Queue Class - Check if Element Exists | In this example, you will use Queue class from queue provided by python. This class contains methods for adding a... | PCEX |