IGCSE Computer Science C8 - Programming (Live Coding + Free Code file)

preview_player
Показать описание
#igcsecomputerscience #coding

Purchase the slides I used in my videos here:

Timestamp:
1:14 Variables and Constants
7:19 Data Types
12:17 Input and Output
18:59 Solve Programming Questions
24:02 Programming Fundamentals (1) - Sequencing
26:09 Programming Fundamentals (2) - Selection (If-else, if-elif-else)
34:45 Programming Fundamentals (3) - Iteration
43:30 Solve Programming Questions
54:10 Totalling and Counting
55:30 String Handling (length, substring, upper and lower case)
1:01:35 Arithmetic, Logical and Boolean Operators
1:06:07 Nested Selection (if-else)
1:07:27 Nested Iteration (iteration)
1:10:14 Procedures, functions and parameter
1:19:22 Solve Programming Questions
1:25:01 Library Routines
1:28:58 Tips for writing maintainable program
1:31:53 One-dimensional array
1:35:51 Two-dimensional array
1:41:10 Solve Programming Questions
1:44:35 Reading from a file (.txt) in Python
1:46:43 Writing to a file (.txt) in Python
Рекомендации по теме
Комментарии
Автор

Can we take a minute to appreciate how much effort he puts into it, tomorrow is my exam and I am very thankful to him for this video.
Subscribed!

ibrahimsehgal
Автор

I love the layouts and the designing of the slides used, thank you for spending so much time so that students all over the world can revise computer science 🙏

balaraajsubaangi
Автор

mr Gan kindly drop your skin care routine

DawoodKhan-kniu
Автор

Genuinly one of the best people on youtuber deserves a million subs, helped over 16 thousand students 👏

therockyago
Автор

youre a great help sir please keep going

hajra
Автор

man, you're awesome! thanks for your work!

RomanTecDev
Автор

Oh my godddd thank you so much 😭😭 I understand everything now !!!

alis
Автор

Thank you so much! This video helped me sooo muchhh!!!😭 now I understand this topic very well!!💗

yokiiii
Автор

Yo, so i just wanted to ask if that video you made about chapter seven was enough of an explanation for pseudocode to do the exam, other than that thanks for everything youve done so far.

alexanderfernando
Автор

Thank you soo soo much for theses videos you just saved my computer sciencce grades :D

chopztick
Автор

Sir thnx a lot sir for your vedios . Really helpful sir. I am going through all your vedios only from the 1st vedio . Plz let me know if it is enough to study your vedio only (cz reading the text book and vedio is really difficult and have no time cz my exam is this Friday and the main exam is on April. @sir James

areebashroff
Автор

This is the code i wrote for the exam marks, and I made it to be suitable for any marks range. Can you check this?
marks = [[76, 65, 67], [32, 90, 75], [66, 77, 31]]
max_phy = marks[0][0] # I want this program to be suitable for any marks range, so I did not give max = -1
max_chem = marks[0][1]
max_bio = marks[0][2]
max_average = 0 # gave here so that it's a global variable
for student in range(0, 3):
total = 0 # to calculate average at the end
for subject in range(0, 3):
if subject == 0: # for phy
if max_phy <= marks[student][subject]:
max_phy = marks[student][subject]
elif subject == 1: # for chem
if max_chem <= marks[student][subject]:
max_chem = marks[student][subject]
elif subject == 2: # for bio
if max_bio <= marks[student][subject]:
max_bio = marks[student][subject]
total += marks[student][subject]
average = total / 3
if student == 0:
max_average = average # Gave this incase average < 0 so that there is no error
if max_average <= average:
max_average = average
print(max_average)
print(max_phy)
print(max_chem)
print(max_bio)

nolife
Автор

A weak away for paper 2 of mine sire and totally I was indeed dependent on your lectures for both physics and computer sir please tell me some important tips for paper 2

yousufahmed
Автор

Can we have more programming problems?

YOTY-sswn
Автор

Wohoooo look @ James go! Jokes aside, great content!

muhdhyqel
Автор

could we open multiple files at the same time

randomstuff-mdxr
Автор

From where to get the software u are doing programming on in python kindly guide???

ashnaimtiaz
Автор

I don't understand how to do task 2 on arrays

cipicql
Автор

Hello Mr. James ....
Is it necessary to learn python for IGCSE o level exam or only Pseodocode ???

hudabourini
Автор

Hey everyone, thanks for watching, hope the video helps! :)

By the way, you can purchase the slides I use here for personal revision (students) or teaching (teachers) 😉

Thank you!

jamesganleongyi