הראיון היה בזום מול שני אנשים אחד מנהל הסוק והשני איש צוות
שאלות מתוך הראיון
1.תן רשימה של פורטים ידועים
2.מה ההבדל בין fw ל AV
3. מה זה ids ips
4. תרחיש מה היית עושה אם עמדה נדבקת בוירוס.
5. תרחיש בחיבור מרחוק ב vpn איך היית מקשיח את החיבור.
6. איזה פגיעויות אתה מכיר מהשנה האחרונה?
Minimal Squares in a Rectangle Given a rectangle of dimensions a and b, we want to divide it into the minimal number of covering squares. The following rectangle has a dimensions of 5 x 3. It can be cut into 4 squares: [ 3x3, 2x2, 1x1, 1x1 ] Implement a function that will take two numbers representing the sides of the rectangle and will return an array containing the dimension of each resulting square.
var sqrs = squaresInRect(5, 3); console.log(sqrs); // [3, 2, 1, 1]
sqrs = squaresInRect(3, 5); console.log(sqrs); // [3, 2, 1, 1]
sqrs = squaresInRect(5, 5); console.log(sqrs); // [5]
Write a function that will take two sorted array of numbers and will return a new array containing only those numbers that are
(unique(appear only once
הגשת מועמדות דרך האתר. ריאיון טלפוני קצרצר לאמת נתונים וזימון ליום מיונים (אצלי זה התקיים בזום). מבחן מעשי בSQL. מי שעובר ממשיך לריאיונות HR ולריאיון מקצועי.
שאלות מתוך הראיון
ריאיון HR מאוד סטנדרטי - ספר.י לי על עצמך. איך הגעת אלינו? למה מעניין אותך להיכנס למסלול וכו'.
ריאיון מקצועי מספר על אופי ההמסלול ומוצגת שאלת SQL נוספת.