An open API service indexing awesome lists of open source software.

https://github.com/sergeiown/beetrooteducationlesson30

Data types
https://github.com/sergeiown/beetrooteducationlesson30

html5 javascript rwd scss

Last synced: 3 months ago
JSON representation

Data types

Awesome Lists containing this project

README

          

# BeetRootEducation

**_LMS Beetroot Academy progress_**

### TASKS

**Minimum**

1. Perform the addition of 0.1 and 0.2 to get a mathematically correct answer.
2. Perform the addition of the string "1" and the digit 2 (both operands must be in variables), get a mathematically correct answer.
3. The user specifies the size of the flash drive in GB. The program should calculate how many files of size 820 MB can be placed on the flash drive.

**Normal**

1. The user enters the amount of money in the wallet and the price of one chocolate bar. The program prints how many chocolates the user can buy and how much change he will have left.
2. Ask the user for a three-digit number and print it backwards. To solve the problem, you will need the % operator (remainder of division).

**Maximum**

1. The user enters the amount of a deposit in the bank for 2 months, with an interest rate of 5% per annum. Print the amount of accrued interest.
2. What will the expressions return:

- 2 && 0 && 3

- 2 || 0 || 3

- 2 && 0 || 3

![image](https://github.com/sergeiown/BeetRootEducationLesson30/assets/112722061/2965cf16-423c-4a8b-87e6-22c6abc5b82e)