About 178,000 results
Open links in new tab
  1. 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 …

  2. 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 …

  3. Pseudocode Mastery

    This guide will break down arrays, starting from simple examples and progressing to more complex usage with different data types. We'll cover how to declare, initialize, and use arrays, …

  4. PseudoCode Cheat Sheet - Zied

    DECLARE file: STRING // takes the path of the file for example "file.txt" 2. DECLARE variable: STRING // this will take the values of each line read from the file

  5. 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]" …

  6. Arrays - 0478 IGCSE Tutorial - Pseudocode Pro

    Below we declare and assign to a 1D array of strings, with 5 elements - a 1D array is a simple list of elements. While sometimes a 1D array is appropriate, sometimes we might want a 2D array …

  7. Declaring an array in pseudocode - Stack Overflow

    May 24, 2021 · DECLARE NameOfArray: ARRAY [1st row: Last row] OF Datatype. example: DECLARE ListOfBuyers : ARRAY [0:1] OF STRING

  8. the convention for declaring arrays in pseudocode

    What is the right standard convention to use for declaring arrays? I understand that for a simple declaration of a variable as an integer, this is the convention: DECLARE myVar : INTEGER

  9. Declaring 2D Arrays • Declare a local variable rating that references a 2D array of int: • Declare a field family that reference a 2D array of GiftCards: • Create a 2D array with 3 rows and 4 …

    Missing:

    • Pseudocode

    Must include:

  10. 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 …