Skip to content

ShedaGit/Mindbox-Test-Assignment

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 

Repository files navigation

Here is my implementation of Mindbox's test assignments.

Assignments:

Write a C# library

Write a C# library for delivery to external clients that can calculate the area of a circle from its radius and a triangle from three sides.

Opptional

  1. Unit tests;

  2. Ease of adding other figures;

  3. Calculating the area of a figure without knowing the type of figure in compile-time;

  4. Checking if the triangle is right-angled.

Write an SQL query

MS SQL Server database has products and categories. One product can have many categories, and one category can have many products. Write an SQL query to select all pairs of "Product Name - Category Name". If a product has no categories, then its name should still be displayed.

SELECT p.ProductName, c.CategoryName
FROM Products p
LEFT JOIN ProductCategories pc ON p.ProductID = pc.ProductID
LEFT JOIN Categories c ON pc.CategoryID = c.CategoryID;

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages