Skip to content

Instantly share code, notes, and snippets.

@medJemmoudi
medJemmoudi / interviewQuestions.md
Created May 12, 2022 14:24 — forked from alan2207/interviewQuestions.md
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

class ClipPath {
/**
* Checks if css property clip-path supports 'polygon()' attribute
* @return {Boolean} Return TRUE if browser has support
*/
hasSupportToPolygon = (function () {
var testEl = document.createElement('div');
var propValue = 'polygon(0 0, 0 0, 0 0, 0 0)';
package net.wwls.dimarabah;
import android.app.AlertDialog;
import android.content.Context;
import android.content.DialogInterface;
import android.net.ConnectivityManager;
import android.net.NetworkInfo;
import android.os.Bundle;
import android.os.PersistableBundle;
import android.os.Vibrator;