Skip to content

Instantly share code, notes, and snippets.

View petkovicm's full-sized avatar
🏠
Working from home

Miloš Petković petkovicm

🏠
Working from home
View GitHub Profile
@petkovicm
petkovicm / interviewQuestions.md
Created August 31, 2017 10:50
Junior Full-Stack Job Interview

Junior Full-Stack Developer

This is a compilation of questions that we have stumbled upon in our job interviews. None of the questions are generic or borrowed from internet, they are real questions. Me and the other authors (@rudiaj, manny) have decided not to log company names, as that would spoil the idea of the interview itself.

Question type

The questions come from multiple interviews for Full-Stack, Front-End and Back-End positions. All interviews were Junior Level. Most of the questions (level 1) deal with pretty basic stuff and serve a functional purpose of eliminating candidates that do not have a certain level of overall and precise knowledge. A smaller amount of questions are harder (level 2), and they are usually meant to test the way you solve problems. These questions are more important in the eyes of the employer, and this part of the test is often performed live or over a video call. These level 2 questions are almost always in the form of a programming task. The idea being that you are

// To set this project up:
// Go to Project -> Manage NuGet Packages
// Install NUnit and NUnit3TestAdapter
// Run any tests on the left in Test Explorer
namespace Kata_Test_Template
{
// User solution
using System;
@petkovicm
petkovicm / index.html
Created August 24, 2017 13:13
fix read-more in index.html
{% if post.content contains '<!--more-->' %}
{{ post.content | split:'<!--more-->' | first }}
{% else %}
<!-- Case for when no excerpt is defined -->
{% endif %}