See the following video on a basic introduction to tracking changes.
© 2023 Vedesh Kungebeharry. All rights reserved.
See the following video on a basic introduction to tracking changes.
© 2023 Vedesh Kungebeharry. All rights reserved.
See the short demo on how to download an attachment from a google classroom post (Naparima College)
Steps:
© 2023 Vedesh Kungebeharry. All rights reserved.
Download this tutorial file and use it to practice the skills shown in the video below:
https://youtu.be/0I3PCQSJ99Y
© 2023 Vedesh Kungebeharry. All rights reserved.
The hardware components of a computer will not operate on it’s own due to the nature of it’s design.
Computers are designed to be instructed by software.
The operating system is the software just above the firmware level which provides a user interface to the user so that they may indirectly interact or command the hardware. The OS manages hardware resources that must be used by the various running processes of the computer system.
Discussion:
Consider the feedback loop where the user attempts to print a word processing document
-Graphics on screen
-application software
-what happens if 2 apps need to print at the same time?
Thinking about the operating system as a Resource Manager
The OS mainly manages :
© 2023 Vedesh Kungebeharry. All rights reserved.
Note, All videos were made private.
© 2023 Vedesh Kungebeharry. All rights reserved.
The main difference between a stack and a queue is how data is inserted and removed from each of them. In a stack, the last element inserted is the first to be removed as compared to a queue where the first element inserted is the first to be removed.
The enqueue(element) adds an element to the end of the list of elements which represent the queue. If the list of elements is empty, it adds it at the first location or head of the queue.
The dequeue(element) removes an element to the front of the list of elements which represent the queue. If the list of elements is empty, no element is removed.
//Assumptions: The following state is used
#define MAX_SIZE 100
int stack[MAX_SIZE];
int top = -1;
void push(int *stack, int value) {
if (top >= MAX_SIZE - 1) {
// Stack is full
printf("Stack is full, element was not added!\n");
return;
}
top++;
stack[top] = value;
}
© 2023 Vedesh Kungebeharry. All rights reserved.
Now you have set up the sprites and costumes for the cat crossing the street scenario in Scratch. You can continue by adding scripts to animate the sprites and make the cat look left and right before crossing the street.
Follow along with the video below:
https://youtu.be/q4TzNKMy63s
Scratch project: https://scratch.mit.edu/projects/848541187
© 2023 Vedesh Kungebeharry. All rights reserved.
© 2023 Vedesh Kungebeharry. All rights reserved.
There was an issue with the programming marking – students are advised to come see me immediately.
There was an issue with the programming marking – students are advised to come see me immediately.
© 2023 Vedesh Kungebeharry. All rights reserved.