Object Oriented Programming (OOP) Mock Test | Part 1

preview_player
Показать описание
A practice test covering for OOP (Object Oriented Programming) in Delphi for the Grade 12 Information Technology subject. This video covers part 1 of the Mock Test which involves defining the methods that interact with attributes for our class. Links to the data files and the other videos are listed below.

Data files:

#MrLongEducation #Delphi #OOP
Рекомендации по теме
Комментарии
Автор

Thank you for the mock test Mr Long 🙏

I did my ToString a little differently but it still worked, here it is:


stemp:= fNamesList;
for iloop2 := 1 to fStudents do
BEGIN

iComma:= pos(', ', sTemp);
sname:= copy(sTemp, 1, iComma-1);

for iloop := 1 to length(sname) do
begin
if sname[iloop] = '+' then
begin
delete(sname, iloop, 9);
sname:= sname + ' with partner';
end;
end;

sline:= sline + #13+ sname;
delete(sTemp, 1, iComma);

END;

nafe
Автор

i wish all this was as easy as you make it look

jameysrevenge
Автор

What's the thingie you out at precisely 5:36?

mbaliyethudube