About 38,100,000 results
Open links in new tab
  1. Arrays - IGCSE Computer Science Revision Notes - Save My Exams

    Apr 8, 2025 · Pseudocode. Python. Create. Declare a 2D array with name and number for 3 people. Creates a 3x2 blank array (3 people, each with name and number) DECLARE …

  2. Data input to a two dimensional array in pseudo code

    May 19, 2012 · The problem is that I am not sure how to load the data from keyboard to a two dimentional array when column number is unknown. Specifically, I need a program to store …

  3. How do you define a two-dimensional array in pseudocode?

    To define a two-dimensional array in pseudocode, you would first declare the array and then specify its dimensions. For instance, you might write something like "Declare an array A[5][5]" …

  4. Pseudocode Mastery

    Arrays come in various dimensions, with the most common being 1D (one-dimensional) and 2D (two-dimensional) arrays. This guide will break down arrays, starting from simple examples …

  5. PseudoCode Cheat Sheet by mason via cheatography.com/35063/cs/11011/ String Manipu l ation There are two functions that look things up in the ASCII character set table for you: ASCII( cha …

  6. Declaring an array in pseudocode - Stack Overflow

    May 24, 2021 · How can I declare the instantiation of an array of int of length 8 in pseudocode? this means, how can I write the following code(Java) in pseudocode? int[] array = new int[8];

  7. PseudoCode Cheat Sheet - Zied

    PseudoCode Cheat Sheet Updated some Syntaxes to match the cambridge CS syntax Syntax. Data types. STRING (a string of characters) CHAR (a single character) ... 2D Array 1. …

  8. 8.2 ARRAYS (CIE) - COMPUTER SCIENCE CAFÉ

    Declaring an array involves specifying its type and the number of elements it will hold. This process can vary significantly between programming languages. Below, we expand on how to …

  9. 2D Arrays - Computer Science GCSE GURU

    The pseudocode to declare a 2D array might look like this: DECLARE ExamMark : ARRAY[1:10, 1:3] OF INTEGER Our example array called ExamMark[] has ten elements where we can …

  10. While a one-dimensional array is like a list, a two-dimensional array is like a grid. If A is a two-dimensional array, A[i][j] refers to the value in row i, column j of the grid.