Interns are required to fork this repo, finish the question
Question 0: Fork this repo
Question 1: Complete this question in 2 different programming language:
Write a short program that prints each number from 1 to 100 on a new line. For each multiple of 3, print "Fizz" instead of the number. For each multiple of 5, print "Buzz" instead of the number. For numbers which are multiples of both 3 and 5, print "FizzBuzz" instead of the number.
Question 2: Zip your solutions in Q1 and name it as solution.zip. Write a client code upload to this url: internship.clearsmile.asia
. Commit your client code into the repo folder 'question2'
Question 3: Download the data here [url], write a script to transform data into this form. Commit your client code into the repo folder 'question3'
Question 4: Fix the css code in this page, so the final result will look like this. Commit your fixed solution into the repo folder 'question4' [sample]
Question 5: This code suppose to give this result [url]. Trace and fix parts of the code, commit your solution into the repo folder 'question5' [sample].
Question 6: Refactor this code so input can be passed into the code based from main(). [url]
Question 7: There is a memoryleak issue in this code. Fix it so the memory leak solved(without changing the code structure).
Question 8: Write a client code to download a file from API.