Hello Sir,
I found a typo in the html section.
Hardvard instead of Harvard
Quiz question 5 of 7 in "Reading Assignment Chapter 1 (page 10-20) - Variables"
Incorrect: What kind of specials numbers do you know in Javascript?
Correct: What kind of special numbers do you know in Javascript?
Change âspecialsâ to âspecialâ by removing the âsâ.
Spelling mistake in Returnning in the title 6 lectures before Javascript next level
In C++, Optional, introduction to computing, MITâs lecture, there is a typo:
said : cimputation
should said: computation
In the c++ (little game project) you define what the game must do. One of the rules is âcount the nr of guessesâ.
You did not create that rule into your solution program.
In the lecture Chapter 4 Exercises the entire content is repeated twice.
Hey Divado - I am struggling with this 1 one question; the first
if(false) {
alert(âtrueâ);
} - solid, got that completed
but when I move forward with
else if (5<3){ alert(âhelloâ) } else{ alert(âhi and hello!â ) } - will not process,
I tried writing out - would work, any suggestions ?
Hey @Joel.OC,
The code
if (false) { alert("true"); } else if (5<3) { alert("hello"); } else { alert("hi and hello!"); }
is working fine for me.
I copied your code in my editor and had to change the quotes (from curly quotes to straight quotes), but otherwise it alerts âhi and helloâ.
Hope it works for you too!
In the part C++
, under Optional: Introduction to Computer Science - MIT Lecture
the following text appears:
This is a wonderful lecture talking about computer science and cimputation. Although this lecture if optional I highly encourage you to watch it to get an overview of the field before we get our hands dirty
The cimputation should be computation.
BTW: this video really made me think again of my first programming courses
My first programming language was Pascal.
Hi I am finding the jquery part of the course very confusing and mixed up. I think the modules are out of sequence.
When I click on Complete and continue ->, it does not work. If I inspect the site, I see the following error message:
I did an empty cache and hard reload and that seemed to work, but my check-boxes disappeared on the stuff I completed already. I just checked through everything again to get it all checked.
This helped for a short period of time, the error is back.
In C++, part âLittle Game Project - Assignmentâ you mentioned as 4th element to deliver the number of guess attempts. In the âLittle Game Project - Solutionâ you defined and initialized a variable numberOfAttempts, but you didnât update nor displayed it afterwards
In the part âJavascript Programmingâ, one of the last sub parts has the title âABSTRACTION and Returnning Values from Functionsâ. Could it be that this should be: ABSTRACTION and Returning Values from Functions. so Returnning -> Returning
In
Structs C++ - Reading Assignments
the first sentence is
Letâs move on and learn about functions!
Shouldnât this be structures, as we saw functions in the previous parts of the course?
In âUnderstanding If-Else Deeperâ => ⌠to False the code inside the if-clause IS not executed⌠(you have there âifâ)âŚ
under the sape page => quiz - first question => What code âwillâ be executed?
in the part: Optional: Introduction to Computer Science - MIT Lecture
it says:
This is a wonderful lecture talking about computer science and cimputation. Although this lecture if optional I highly encourage you to watch it to get an overview of the field before we get our hands dirty.
it should say"âŚcomputation."
in the part of the little game where you have a player 1 and player 2 guessing P1âs number, you didnt add the part that the program counts the amount of attempts. i mean i solved that too but just saying that was also part of the game