Pinned Repositories
Task-2.-SimpleRace
This application simulates simple race among 10 cars. Each automobile has random speed each second. Race duration is 20 seconds. In the end, we get the top 3 vehicles with their passed distance.
BuilderPattern
BuilderPattern example usage
collections
FactoryMethodPatternExample
Example of usage Factory Method Pattern.
learning-the-javascript-language-4369302
This is a repository for the LinkedIn Learning course Learning the JavaScript Language
Rozetka
Automation tests for Rozetka
SingletonPattern
Example of usage Singleton Pattern
SmallConsolecalculator
This is my first calculator that calculates two numbers. Calculation operations can be one of the following: [*], [/], [+], [-].
Task-1.-ConsoleCalculator
This calculator operates with multiple numbers. It performs addition, subtraction, multiplication and division actions. Additionally, it accepts specific range of numbers (from -20 to 20, if more than 20 or less -20 - it returns a warning message). When the calculation is done the results with all operands and operations are written to a file with date/time of calculation.
Task-3.-Automation-Framework
This is a small Java automation framework
Kateryna-Dashchakivska's Repositories
Kateryna-Dashchakivska/learning-the-javascript-language-4369302
This is a repository for the LinkedIn Learning course Learning the JavaScript Language
Kateryna-Dashchakivska/Task-3.-Automation-Framework
This is a small Java automation framework
Kateryna-Dashchakivska/collections
Kateryna-Dashchakivska/FactoryMethodPatternExample
Example of usage Factory Method Pattern.
Kateryna-Dashchakivska/Rozetka
Automation tests for Rozetka
Kateryna-Dashchakivska/SingletonPattern
Example of usage Singleton Pattern
Kateryna-Dashchakivska/BuilderPattern
BuilderPattern example usage
Kateryna-Dashchakivska/Task-1.-ConsoleCalculator
This calculator operates with multiple numbers. It performs addition, subtraction, multiplication and division actions. Additionally, it accepts specific range of numbers (from -20 to 20, if more than 20 or less -20 - it returns a warning message). When the calculation is done the results with all operands and operations are written to a file with date/time of calculation.
Kateryna-Dashchakivska/SmallConsolecalculator
This is my first calculator that calculates two numbers. Calculation operations can be one of the following: [*], [/], [+], [-].
Kateryna-Dashchakivska/Task-2.-SimpleRace
This application simulates simple race among 10 cars. Each automobile has random speed each second. Race duration is 20 seconds. In the end, we get the top 3 vehicles with their passed distance.
Kateryna-Dashchakivska/UpgradedRace
This application simulates simple race. User can start the race by setting some specific value for total number of cars, total race duration and total winners or use default one. Each automobile has random speed each second. Additionally, user is not allowed to set: - less than 2 total number cars, - race duration less than 1 sec; - total winners bigger than total number of cars. In this case user will receive proper error message.