|
|
הוסיפו מידע על מעסיק
|
מתכנת C++ / C
|
|
שאלות מראיונות עבודה לתפקיד
|
|
|
|
|
Theworker >
תוכנה
>
פירוט שאלות מראיונות עבודה לתפקיד מתכנת C++ / C
פירוט שאלות מראיונות עבודה לתפקיד מתכנת C++ / C
650 - 641 מתוך 1042
|
|
|
|
ראיון לתפקיד מתכנת C++ / C בחברת אטיוניטי
יולי 2018
|
01.08.2018
|
|
|
פרטים לגבי התהליך |
ראיון טלפוני ולאחר מכן ראיון מול צוות טכנולוגי |
|
שאלות מתוך הראיון |
כתיבת פונקציה בC |
|
|
|
|
הוסף מידע על החברה
|
עוד מידע על אטיוניטי :
|
|
|
ראיון לתפקיד מתכנת C++ / C בחברת בלומברג
מרץ 2018
|
31.07.2018
|
|
|
פרטים לגבי התהליך |
היה מאוד ארוך, המראיין איחר בחצי שעה |
|
שאלות מתוך הראיון |
לבנות מערכת ששומרת פרטים של עובדי חברה, עם פונקציות כמו להוסיף, להדפיס, להעביר לבוס אחי |
|
|
|
|
הוסף מידע על החברה
|
עוד מידע על בלומברג :
|
|
|
ראיון לתפקיד מתכנת C++ / C בחברת מטריקס
יולי 2018
|
24.07.2018
|
|
|
פרטים לגבי התהליך |
תכנית אינפיניטי |
|
שאלות מתוך הראיון |
לסובב מחרוזת
להחליף ערך של משתנה בזיכרון |
|
|
|
|
הוסף מידע על החברה
|
עוד מידע על מטריקס :
|
|
|
ראיון לתפקיד מתכנת C++ / C בחברת גוגל
פברואר 2016
|
23.07.2018
|
|
|
פרטים לגבי התהליך |
ראיון ראשון, מבחן מול מחשב |
|
שאלות מתוך הראיון |
Given a non-negative number represented as an array of digits,
add 1 to the number ( increment the number represented by the digits ).
The digits are stored such that the most significant digit is at the head of the list. |
|
תשובות |
הוסף תשובה
|
לצפיה בתשובות
|
|
|
|
|
אפריל 2020
|
|
רמז: שימו לב שאם כל הספרות הן 9, המערך צריך לגדול ב-1 או לעשות overflow ל-0
|
|
|
|
|
|
|
הוסף מידע על החברה
|
עוד מידע על גוגל :
|
|
|
ראיון לתפקיד מתכנת C++ / C בחברת דל
יולי 2015
|
19.07.2018
|
|
|
פרטים לגבי התהליך |
ראיון לאחר שיחה טלפונית |
|
שאלות מתוך הראיון |
מימוש הדפסת סדרת פיבונאצ'י |
|
|
|
|
הוסף מידע על החברה
|
עוד מידע על דל :
|
|
|
ראיון לתפקיד מתכנת C++ / C בחברת אינטל
ינואר 2018
|
15.07.2018
|
|
|
פרטים לגבי התהליך |
אין מה לפרט אין מה לפרט |
|
שאלות מתוך הראיון |
זוכר שאלה אחת על הוצאת מספרים רנדומליים בין -50 ל 50 |
|
|
|
|
הוסף מידע על החברה
|
עוד מידע על אינטל :
|
|
|
ראיון לתפקיד מתכנת C++ / C בחברת TandemG
יוני 2018
|
10.07.2018
|
|
|
פרטים לגבי התהליך |
I have seen this question at codility exam at tandemG company, Lod, Israel.
It was coding challenge.
I think the difficulty is medium.
I think it's a good array and understanding question. |
|
שאלות מתוך הראיון |
The winter summer problem:
Given an array of T of Temperatures(specified as integer numbers), partition the array into winter and summer that meets the condition that all temperatures in winter subarray is less than all the temperatures at summer subarray and makes the winter subarray shortest as possible.
You should return the length of winter subarray. Both winter and summer have to be at least one value. You can assume that there at least one partition that satisfies the condition.
Examples:
Given T = [ 5, -2, 3, 8, 6 ] the function should return 3 as after partitioning the array into winter: [5, -2, 3] and summer: [8, 6]. Because all temperatures in winter < all temperatures in summer.
Given T = [ -5, -5, -5, -42, 6, 12 ] the function should return 4 as after partitioning the array into winter: [-5, -5, -5, -42] and summer: [6, 12]. |
|
תשובות |
הוסף תשובה
|
לצפיה בתשובות
|
|
|
|
|
יולי 2018
|
|
The idea is:
When we iterate the array from right to left,
we fill another array, lets call it minRight, with all the minimum temperatures at right sub-array at index i, the we iterate through original array from left to right, and save the max value of left part of array and compare it to min value of left array, we stop when max(left) > min(right).
https://leetcode.com/playground/D94n2BTG
|
|
|
|
|
|
|
הוסף מידע על החברה
|
עוד מידע על TandemG :
|
|
יש לכם מה להוסיף ?
|
|
|
|
|
|