├── README.md ├── junior └── readme.md ├── mid └── readme.md └── senior ├── fizzbuzz └── readme.md ├── nested-folders-and-files └── readme.md ├── readme.md ├── sales-and-commissions └── readme.md ├── short-questions └── README.md ├── sql-design-question └── readme.md └── valet-parking ├── CarFactory.cs ├── Cars ├── BMW.cs ├── ICar.cs ├── Mazda.cs ├── Mercedes.cs └── Toyota.cs ├── ParkingLots ├── IParkingLot.cs ├── NorthParkingLot.cs └── SouthParkingLot.cs ├── Program.cs ├── Valets ├── IValet.cs ├── JackValet.cs └── MichealValet.cs ├── project.json ├── readme.md └── result.png /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarikguney/interview-questions/HEAD/README.md -------------------------------------------------------------------------------- /junior/readme.md: -------------------------------------------------------------------------------- 1 | # Junior Level Software Engineer 2 | -------------------------------------------------------------------------------- /mid/readme.md: -------------------------------------------------------------------------------- 1 | # Mid-Level Software Engineer 2 | -------------------------------------------------------------------------------- /senior/fizzbuzz/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarikguney/interview-questions/HEAD/senior/fizzbuzz/readme.md -------------------------------------------------------------------------------- /senior/nested-folders-and-files/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarikguney/interview-questions/HEAD/senior/nested-folders-and-files/readme.md -------------------------------------------------------------------------------- /senior/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarikguney/interview-questions/HEAD/senior/readme.md -------------------------------------------------------------------------------- /senior/sales-and-commissions/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarikguney/interview-questions/HEAD/senior/sales-and-commissions/readme.md -------------------------------------------------------------------------------- /senior/short-questions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarikguney/interview-questions/HEAD/senior/short-questions/README.md -------------------------------------------------------------------------------- /senior/sql-design-question/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarikguney/interview-questions/HEAD/senior/sql-design-question/readme.md -------------------------------------------------------------------------------- /senior/valet-parking/CarFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarikguney/interview-questions/HEAD/senior/valet-parking/CarFactory.cs -------------------------------------------------------------------------------- /senior/valet-parking/Cars/BMW.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarikguney/interview-questions/HEAD/senior/valet-parking/Cars/BMW.cs -------------------------------------------------------------------------------- /senior/valet-parking/Cars/ICar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarikguney/interview-questions/HEAD/senior/valet-parking/Cars/ICar.cs -------------------------------------------------------------------------------- /senior/valet-parking/Cars/Mazda.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarikguney/interview-questions/HEAD/senior/valet-parking/Cars/Mazda.cs -------------------------------------------------------------------------------- /senior/valet-parking/Cars/Mercedes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarikguney/interview-questions/HEAD/senior/valet-parking/Cars/Mercedes.cs -------------------------------------------------------------------------------- /senior/valet-parking/Cars/Toyota.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarikguney/interview-questions/HEAD/senior/valet-parking/Cars/Toyota.cs -------------------------------------------------------------------------------- /senior/valet-parking/ParkingLots/IParkingLot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarikguney/interview-questions/HEAD/senior/valet-parking/ParkingLots/IParkingLot.cs -------------------------------------------------------------------------------- /senior/valet-parking/ParkingLots/NorthParkingLot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarikguney/interview-questions/HEAD/senior/valet-parking/ParkingLots/NorthParkingLot.cs -------------------------------------------------------------------------------- /senior/valet-parking/ParkingLots/SouthParkingLot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarikguney/interview-questions/HEAD/senior/valet-parking/ParkingLots/SouthParkingLot.cs -------------------------------------------------------------------------------- /senior/valet-parking/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarikguney/interview-questions/HEAD/senior/valet-parking/Program.cs -------------------------------------------------------------------------------- /senior/valet-parking/Valets/IValet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarikguney/interview-questions/HEAD/senior/valet-parking/Valets/IValet.cs -------------------------------------------------------------------------------- /senior/valet-parking/Valets/JackValet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarikguney/interview-questions/HEAD/senior/valet-parking/Valets/JackValet.cs -------------------------------------------------------------------------------- /senior/valet-parking/Valets/MichealValet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarikguney/interview-questions/HEAD/senior/valet-parking/Valets/MichealValet.cs -------------------------------------------------------------------------------- /senior/valet-parking/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarikguney/interview-questions/HEAD/senior/valet-parking/project.json -------------------------------------------------------------------------------- /senior/valet-parking/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarikguney/interview-questions/HEAD/senior/valet-parking/readme.md -------------------------------------------------------------------------------- /senior/valet-parking/result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tarikguney/interview-questions/HEAD/senior/valet-parking/result.png --------------------------------------------------------------------------------