Showing 0–0 of 0 results
| # | Exercise Title | Features | Description | Platform | Keywords |
|---|---|---|---|---|---|
| 1 | 2D Arrays 1 | Java PredictingFinalResult for demonstrating 2D Arrays 1 | QuizJET | 2d arrays, arrays | |
| 2 | 2D Arrays 2 | Java PredictingFinalResult for demonstrating 2D Arrays 2 | QuizJET | 2d arrays, arrays | |
| 3 | 2D Arrays 4 | Java PredictingFinalResult for demonstrating 2D Arrays 4 | QuizJET | 2d arrays, arrays | |
| 4 | 2D Arrays Review Questions | Question, Battery | CS1-level introduction to 2D arrays review questions. | OpenDSA | Array |
| 5 | Using 2D Arrays | C++ BehaviorExample for demonstrating Using 2D Arrays | AnnEx | ||
| 6 | q_py_2d_arrays1_es | Python PredictingFinalResult for demonstrating q_py_2d_arrays1_es | QuizPET | 2d list | |
| 7 | q_py_2d_arrays2_es | Python PredictingFinalResult for demonstrating q_py_2d_arrays2_es | QuizPET | 2d list | |
| 8 | q_py_2d_arrays3_es | Python PredictingFinalResult for demonstrating q_py_2d_arrays3_es | QuizPET | 2d list | |
| 9 | q_py_2d_arrays4_es | Python PredictingFinalResult for demonstrating q_py_2d_arrays4_es | QuizPET | 2d list | |
| 10 | Iterating with 2D Arrays Review Questions | Question, Battery | CS1-level interating with 2D arrays review questions. | OpenDSA | Array |
| 11 | 4-02_Arrays2D | Java BehaviorExample for demonstrating 4-02_Arrays2D | AnnEx | 2d arrays | |
| 12 | (Two-dim arrays) Matrix multiply - CSEdPad | This program demonstrates the multiplication of two matrices using a two-dimensional array | AnnEx | 2d arrays | |
| 13 | Arrays 3 | Java PredictingFinalResult for demonstrating Arrays 3 | QuizJET | 2d arrays, arrays, classes, objects | |
| 14 | Arrays 4 | Java PredictingFinalResult for demonstrating Arrays 4 | QuizJET | 2d arrays, arraylist, arrays, loops, overloading | |
| 15 | Arrays 5 | Java PredictingFinalResult for demonstrating Arrays 5 | QuizJET | 2d arrays, arrays, classes, objects | |
| 16 | Create 2D Array | Create 2D Array | AnnEx | 2d arrays, arrays, variables | |
| 17 | Use 2D Array | Use 2D Array | AnnEx | 2d arrays, arithmetic operations, arrays, variables | |
| 18 | 2D array Demo | Java CodeVisualization for demonstrating 2D array Demo | JSVEE | 2d arrays, arrays | |
| 19 | Use 2D Array | Java CodeVisualization for demonstrating Use 2D Array | JSVEE | 2d arrays, arrays | |
| 20 | Given two two-dimensional arrays a and b of integers with the same number of rows and columns, return a list of the same size where each element is the greater of the corresponding elements in the two arrays. | Code Completion | Given two two-dimensional arrays a and b of integers with the same number of rows and columns, return a list... | CodeCheck | Two-Dimensional Arrays, Producing 2D Arrays |
| 21 | Given two two-dimensional arrays of integers with the same number of rows and columns, return the first position where they do not match, as a list of length 2. | Code Completion | Given two two-dimensional arrays of integers with the same number of rows and columns, return the first position where they... | CodeCheck | Two-Dimensional Arrays, Producing 2D Arrays |
| 22 | Given two two-dimensional arrays with the same number of rows, return a list that places them side by side. | Code Completion | Given two two-dimensional arrays with the same number of rows, return a list that places them side by side. | CodeCheck | Two-Dimensional Arrays, Producing 2D Arrays |
| 23 | 4-02_TicTacToe | Java BehaviorExample for demonstrating 4-02_TicTacToe | AnnEx | 2d arrays | |
| 24 | Problem 7 | Java PredictingFinalResult for demonstrating Problem 7 | QuizJET | 2d arrays, arrays | |
| 25 | Problem 5 | Java PredictingFinalResult for demonstrating Problem 5 | QuizJET | 2d arrays, arrays | |
| 26 | Problem 6 | Java PredictingFinalResult for demonstrating Problem 6 | QuizJET | 2d arrays, arrays | |
| 27 | Enhanced For Loop | Java PredictingFinalResult for demonstrating Enhanced For Loop | QuizJET | 2d arrays, arrays, loops | |
| 28 | Array Declaration | Array Declaration | AnnEx | 2d arrays, arrays | |
| 29 | Enhanced For Loop Demo | Java BehaviorExample for demonstrating Enhanced For Loop Demo | AnnEx | 2d arrays, arrays | |
| 30 | For-Each 2 | For-Each 2 | AnnEx | 2d arrays, arrays | |
| 31 | For-Each | For-Each | AnnEx | 2d arrays, arrays | |
| 32 | For-each with char array | For-each with char array | AnnEx | 2d arrays, arrays | |
| 33 | Multidimensional Array Iteration | Multidimensional Array Iteration | AnnEx | 2d arrays, arrays | |
| 34 | For-each with break | For-each with break | AnnEx | 2d arrays, arrays | |
| 35 | Tic-Tac-Toe | Java BehaviorExample for demonstrating Tic-Tac-Toe | AnnEx | 2d arrays, arrays | |
| 36 | Using an Array2 | Using an Array2 | AnnEx | 2d arrays, arrays | |
| 37 | Using an Array1 | Using an Array1 | AnnEx | 2d arrays, arrays | |
| 38 | Array Demo | Java CodeVisualization for demonstrating Array Demo | JSVEE | 2d arrays, arrays | |
| 39 | Enhanced For Loop Demo | Java CodeVisualization for demonstrating Enhanced For Loop Demo | JSVEE | 2d arrays, arraylist, arrays, for loop | |
| 40 | For-Each | Java CodeVisualization for demonstrating For-Each | JSVEE | 2d arrays, arraylist, arrays, loops | |
| 41 | For-each with break | Java CodeVisualization for demonstrating For-each with break | JSVEE | 2d arrays, arraylist, arrays, loops | |
| 42 | Using an Array2 | Java CodeVisualization for demonstrating Using an Array2 | JSVEE | 2d arrays, arrays | |
| 43 | Given an integer n, produce the array <pre>0 1 2 3 . | Code Completion |
Given an integer n, produce the array 0 1 2 3 ... n 1 2 3 4 ... 0 ......
|
CodeCheck | Two-Dimensional Arrays, Producing 2D Arrays |
| 44 | Repeat the preceding exercise where the array dimensions need not match, filling positions that exist in neither array with 0. | Code Completion | Repeat the preceding exercise where the array dimensions need not match, filling positions that exist in neither array with 0. | CodeCheck | Two-Dimensional Arrays, Producing 2D Arrays |
| 45 | Repeat where the row lengths don't have to match. | Code Completion | Repeat where the row lengths don't have to match. Fill the shorter array with zeroes. | CodeCheck | Two-Dimensional Arrays, Producing 2D Arrays |
| 46 | Given a two-dimensional array a, return a list whose [i][j] element is the average of the neighbors of a[i][j] in the N, E, S, W direction. | Code Completion | Given a two-dimensional array a, return a list whose [i][j] element is the average of the neighbors of a[i][j] in... | CodeCheck | Two-Dimensional Arrays, Producing 2D Arrays |
| 47 | DEPRECATED_Create 2D Array | Java BehaviorExample for demonstrating DEPRECATED_Create 2D Array | AnnEx | ||
| 48 | DEPRECATED_Use 2D Array | Java BehaviorExample for demonstrating DEPRECATED_Use 2D Array | AnnEx | ||
| 49 | Two-dimensional List 1 | Python PredictingFinalResult for demonstrating Two-dimensional List 1 | QuizPET | 2d list, list | |
| 50 | Two-dimensional List 2 | Python PredictingFinalResult for demonstrating Two-dimensional List 2 | QuizPET | 2d list, algorithm analysis, list | |
| 51 | Two-dimensional List 3 | Python PredictingFinalResult for demonstrating Two-dimensional List 3 | QuizPET | 2d list, list | |
| 52 | Two-dimensional List 4 | Python PredictingFinalResult for demonstrating Two-dimensional List 4 | QuizPET | 2d list, algorithm analysis, classes, data structures, list, stacks | |
| 53 | q_py_nested_for_while_es | Python PredictingFinalResult for demonstrating q_py_nested_for_while_es | QuizPET | 2d list | |
| 54 | Two-dimensional List | Construct a program that prints out [[0, 1, 2], [3, 4, 5], [6, 7, 99]] | jsParsons | 2d list, classes, data structures, list, stacks | |
| 55 | Practicar indexación de listas | Construye un programa que primero imprima [[1, 2, 3], [4, 5, 6]], luego [4, 5, 6], y finalmente 6. | jsParsons | 2d list, list | |
| 56 | Age Checking | Python CodeVisualization for demonstrating Age Checking | JSVEE | 2d list, list | |
| 57 | Programmed Instruction: Induction Proof For Two Coloring | Programmed Instruction | Programmed Instruction Frameset examples of induction proof for two-coloring the 2D plane. | OpenDSA | Proof by Induction |