Skip to content

WilliamFlo1231/corecode-webdevfrom0

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 

Repository files navigation

corecode-webdevfrom0

Core Code Web Developer Course From Scratch

Week 1

Tuesday

2. Search and answer the question: Java language is compiled or interpreted? Java is an interpreted language

3. Create an algorithm to calculate the equivalent of your local currency to USD:

  1. Get local currency amount to be converted.
  2. Obtain the USD price in your country (preferably from a reliable source).
  3. Multiply the local currency amount by the USD price.

5. Anwser to the question: Why is pseudocode helpful? It helps us to sketch our ideas in a programmed way.

6. Create a pseudocode to calculate the aproximated age of a user base on the year they born, (you can define a variable with the actual year if you need it, like for example i could define Y <-- 2022)

userYearBorn is getUserYearBorn()
currentYear is getCurrentYear()
approximateAge is currentYear minus userYearBorn

8. Answer to the question: Why are flowcharts important to us as developers? It helps us to have a visual version of the algorithm (processes, conditionals, loops)

Wednesday

2. Translate the year you where born to binary, decimal and hexadecimal

  • Binary: 11111001111
  • Decimal: 1999
  • Hex: 7CF

3. Translate 51966 into hexadecimal and binary

  • Hex: CAFE
  • Binary: 1100101011111110

About

Core Code Web Developer From Scratch

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors