Frontend software engineer sollicitatievragen
4K
Sollicitatievragen voor Frontend Software Engineer gedeeld door sollicitantenMeest gestelde sollicitatievragen

Easy quant and java questions
7 antwoorden↳
How long do they take to announce results of quiz round?
↳
As soon as you submit the quiz u will get the mail... May be if you get shortlisted otherwise i don't know Minder
↳
Ty for your response. Do they confirm if I'm selected or not selected by mail?

1. about 2. javascript typescript babel es5 es6 3. test driven development, unit-testing, continuous integration 4. react-redux, modern JS frameworks, JS closures 5. function sum(){/*add code here*/};console.log (sum(3)(5)(7)(3)()); // 18
4 antwoorden↳
function sum(x) { return function(y) { return function(z){ return function(w){ return function(){ return x + y + z + w; } } } } } Minder
↳
var sum = (n) => { let result = n; const fn = (n) => { if (n == null) { return result; } result += n; return fn; } return fn; } Minder
↳
const sum = (n, res = 0) => ( n == null ? res : (x) => sum(x, res + n) ); Minder

Experiences in angular and bootstrap
3 antwoorden↳
Positive
↳
Only that's been asked ;) you even did not read the resume.
↳
Thanks for highly interesting in my skills

Q What if I use var inside Contstructor function? function Person(firstName, lastName, age){this.firstName=firstName;this.lastName = lastName; var a = 5;}; What will console.log(a); print?
2 antwoorden↳
It will give compile time error, as you are using a variable outside of its scope. Minder
↳
I was not able to answer this

The interview followed a standard format, where an input was given, and certain outputs expected. The inputs were presented in a file on the disk. As a javascript engineer, this was awkward, as javascript is rarely used to read/write directly to the hard drive. Due to NDA, I cannot disclose the specifics of the question itself.
2 antwoorden↳
I explained that although the challenge ideally required writing to/from disk for a "perfect solution", Javascript typically gets it's data input via HTTP, and displays its output via the browser, so that was how I would proceed with my solution. Minder
↳
Node

Build a custom UI and debug.
2 antwoorden↳
There's quite an extended back and forth in actual interviews for questions like this, so nothing quite like real practice. The Prepfully Atlassian Frontend Software Engineer experts have actually worked in this role, so they're able to do an honest-to-God accurate mock, which really puts you through the paces. prepfully.com/practice-interviews Minder
↳
Do projects with a framework for your choice. Understand how to use the debugger and browser tools. Minder

Are you available to travel to and from the airport regularly (on a weekly basis)?
2 antwoorden↳
I was not able to meet this requirement because of my current location.
↳
Yes...

Write a polyfill (fallback function) for filter method for arrays
2 antwoorden↳
Array.prototype.myFilter = function(callback){ var filteredArray = []; for(var i=0;i{ return el % 2 === 0 }) console.log(filteredArray) Minder
↳
While adding answer to this question it was added incompletely. Hence adding here again Array.prototype.filter = null; if (!Array.prototype.filter) { Array.prototype.filter = function (callback) { var filtered = []; for (var i = 0; i el % 2 === 0); console.log(filteredArr) Minder

In JS in an AND condition if the first part is false, would the second get evaluated?
2 antwoorden↳
No
↳
No for AND both conditions should be true.

What is CSS Specificity?
2 antwoorden↳
It's a rule in CSS to provide priority of interpretation to blocks of style. For example, if you have a DIV element with an ID "example" and a class name "example", and in the stylesheet you have: #example{ background-color: red; } .example{ background-color: green; } The DIV's background color would be red, violating the natural reading flow of the stylesheet (top down), because IDs have higher specificity than classes, which could not override the previous style selected by an ID. Minder
↳
It is used to give the styles to the web page