J'ai postulé en ligne. Le processus a pris 2 semaines. J'ai passé un entretien chez Jitera (Jakarta)
Entretien
Developer lead was asking me about my experience as a frontend developer, asked my knowledge in server nodejs. He also asked few question about software development life cycle and the process of it.
Interview was great for a frontend developer . Was asked to create a checkout page for a shopping store and it went smooth. After that , it was some technical questions about the frontend stack and general full stack development questions
Questions d'entretien [1]
Question 1
i was asked to explain the general flow for developing a complex CMS from frontend's perspective
J'ai postulé en ligne. Le processus a pris 2 semaines. J'ai passé un entretien chez Jitera (Berlin) en nov. 2023
Entretien
You will be given an automated assesment that you will have 3 hours to complete.
It consists of
String Challenge
Parse two arrays. get the intersection and sort it.
Backend Challenge
get JSON from an API, removes recursively any null, undefined or '' values, and sorts attributes alphabetically.
Frontend Challenge
write a Tic Tac Toe game
Math Challenge
Write equation solver like 6*(4/2)+3*1
SQL Challenge
write a query with join and inner select
Questions d'entretien [2]
Question 1
Math Challenge
Have the function MathChallenge(str) take the str parameter being passed and evaluate the mathematical expression within in. For example, if str were "2+(3-1)*3" the output should be 8. Another example: if str were "(2-0)(6/2)" the output should be 6. There can be parenthesis within the string so you must evaluate it properly according to the rules of arithmetic. The string will contain the operators: +, -, /, *, (, and ). If you have a string like this: #/#*# or #+#(#)/#, then evaluate from left to right. So divide then multiply, and for the second one multiply, divide, then add. The evaluations will be such that there will not be any decimal operations, so you do not need to account for rounding and whatnot.
Examples
Input: "6*(4/2)+3*1"
Output: 15
Input: "6/3-1"
Output: 1
Have the function StringChallenge(str1,str2) take both parameters being passed and return the string true if a portion of str1 characters can be rearranged to match str2, otherwise return the string false. For example: if str1 is "rkqodlw" and str2 is "world" the output should return true. Punctuation and symbols will not be entered with the parameters.
Examples
Input: "cdore" & str2 = "coder"
Output: true
Input: "h3llko" & str2 = "hello"
Output: false
Browse Resources