February 22, 2026

Week 22 - PseInt, Programming learning tool

CLASS OBJECTIVE

To know for the first time the programming learning tool named PSeInt and its working environment by creating two algorithms using different data types: characters and floating point numbers.


INTRODUCTION

As you learned last class, before you start programming you have to know some basic rules of the programming languages: declare different variables types, the using of delimiters, the recongnition of sentences or code lines.

Today we'll start using PSeInt which is a very helpful tool to start learning programming languages. By the way, it works in spanish.

This is the PSeInt main window.


  1. This is the tool bar. In here you'll find tools like the save, save as, new, do and undo buttons. There are also two very important buttons here, the execute and the flowchart buttons.
  2. The main working area. This is where you're going to create the program by typing commands or operation names, right between the start and end algorithm points.
  3. The list of the available operations for data processing. For example: the basic mathematical operators, comparison operators, character operators, etc.
  4. The commands and programming structures. This is a helpful guide to remember how to interact with the user, how to analyze the information and how to use selections or loops in an algorithm.
To create an algorithm you'll have to type every sentence (code line) between "Algoritmo" and "Fin Algoritmo". Don't forget to name your program where the algorithm starts.


Variables

When using PSeInt, before you use variables you'll have to declare them. This means you have to reserve and name a memory space before you use it. How to do it? You´ll use the word "Definir", type the name and select data type.


  • Caracter is used to save letters and some symbols.
  • Entero is used to save integer numbers.
  • Lógico is used to save "true" or "false" answers.
  • Real is used to save decimal numbers.

There's only one way to learn how to use PSeInt, by creating programs.



ACTIVITY 1

Start naming the algorithm, its name will be Contador_de_caracteres. As you can see, you can´t use spaces.

Now try to type the next algorithm, I'm sure you'll have to correct some mistakes, it always happen the first time. For example, if you miss the semi-colon delimiter or the quotation marks PSeInt will inform you.

  • Escribir and Leer are "well known for you" commands (reserved words), to show information or to ask for information to the user.
  • Longitud is an operator to count letters in a string.



After you finish, press the "play" button to test it.

Save the file and, before you turn it in,  press the "flowchart" button. I hope it could be familiar for you.



ACTIVITY 2

For the second activity, you'll try to create the next by your self. 

The only different thing you'll need is a small arrow in the assignment formula. 

To get it, type <- (less than and dash)


Once again, after you finish, press the "play" button to test it.
Save the file and, before you turn it in,  press the "flowchart" button.


CLASS NOTES

Write down in your notebook the title of the class, the objective and answer the next questions.

  • What does "declare variables" means?
  • What are the four data types in PSeInt?
  • Which of those were used in today's activities?
  • What is the semicolon used for?
  • What are the Quotation marks used for?
  • How did you type the assignment arrow?

Show your answers to your teacher.



HOMEWORK

THIRD PERIOD COVER
To get started, you'll create the cover for Period 3, in no more than 10 minutes. The requirements are the following:

  • Period III written in  large size font
  • Technology III written below the period title
  • Your name, list number and group
  • A drawing allusive to Programming languages


February 15, 2026

Week 21 - Pseudocode practice

CLASS OBJECTIVE

Create and execute a program using pseudocode (algorithm written in your own words) to perform a specific task inside the classroom, so we can write our first program using words and statements.

To reinforce the concepts from our last class, today we'll begin creating our first programs. Before you start, there are a few key points and guidelines to understand.

  • First, you need to know the goal of the task—what the program is supposed to accomplish.
  • Next, take a sheet of paper and design the procedure, using program structures such as decision-making statements and loops, with a minimal set of instructions. Keep in mind that you should only include actions the program is capable of performing.
  • Once you've completed your program, you won’t be running it yourself; another entity, the Interpreter, will handle its execution.


ACTIVITY

PHASE 1. PROGRAMMER

  1. Pick a sheet of paper, select one of the next goals and write it on the paper as a title.
    • Open/Close window. Select the windows by its number.
    • Turn on/off the fan.
  2. Now, write the pseudocode using natural English, but structured in a way that reflects programming logic. Use the next reserved words list:
    • START
    • END
    • ACTIONS
      • Step_forward
      • Step_back
      • Turn_left
      • Turn_Right
      • Switch_on
      • Switch_off
      • Open
      • Close
    • IF condition DO
      • Action 1
      • Action 2
      • Action n
        • ELSE
          • Action 1
          • Action 2
          • Action n
    • (LOOP) WHILE condition DO
      • Action 1
      • Action 2
      • Action n
    • (LOOP) REPEAT UNTIL
      • Action 1
      • Action 2
      • Action n
  1. You can stand up (respectfully) to test your program
  2. Once it's finished, write your name and student number and give it to your teacher.


PHASE 2. INTERPRETER

To grade the pseudocodes, some students will take on the role of an Interpreter. This means they will follow the program’s instructions to evaluate its design.

  • The teacher will call on students one by one to stand up and execute a randomly selected program.
  • If the program doesn’t achieve the desired goal, the sheet will be returned to the programmer for corrections. 
  • If it works as expected, the programmer will simply add their name.



CLASS NOTES

As usual, write down the class title, the class objective, and answer the following questions:

  • Is this activity written in a programming language? Why or why not? What’s the difference?
  • When writing the program, did you use statements and delimiters? Provide an example.
  • Did you identify any reserved words? If so, name three of them.
  • Were there any variables in this activity? Was any data necessary to complete the task? If so, list it.

February 08, 2026

Week 20- Programming Languajes Theory

 CLASS OBJECTIVE 

Establish the bases for the work of the next phase, whose main topic will be the Programming Languages, through a research that will be resumed in plenary with brainstorming.


RESEARCH ACTIVITY

THEORY OF PROGRAMMING LANGUAGES
You'll research the following concepts on the Internet and later we will return them in plenary with brainstorming.
In Classroom you will receive a document to recover the investigated information .

  • What does pseudocode mean?
  • What are programming languages?
  • What are statements in a programming language?
  • What are delimiters in a programming language?
  • What are "reserved words" in a programming language?
  • What is a variable in programming?
  • What are the data types in programming?


CLASS NOTES
As always, you will write down the title of this class, the objective and the above questions, but in this activity you will use your own words to describe what you understood about each concept.


HOMEWORK
Write down the answers to the following instructions in your notebook:

  • Research on the Internet What is PseInt?
  • Also look for an image of the main PseInt work screen and draw it.