|
|
הוסיפו מידע על מעסיק
|
מתכנת JAVA
|
|
שאלות מראיונות עבודה לתפקיד
|
|
|
|
|
Theworker >
תוכנה
>
פירוט שאלות מראיונות עבודה לתפקיד מתכנת JAVA
פירוט שאלות מראיונות עבודה לתפקיד מתכנת JAVA
410 - 401 מתוך 1216
|
|
|
|
ראיון לתפקיד מתכנת JAVA
בחברת הרמן
אוקטובר 2018
|
01.02.2021
|
|
|
פרטים לגבי התהליך |
לא הרבה ראיונות. קצר ולעניין |
|
שאלות מתוך הראיון |
דיזיין של מערכת שמפעילה כמה פרוססים על מידע. חלקם יכול להיות כבד ולקחת הרבה זמן |
|
תשובות |
הוסף תשובה
|
לצפיה בתשובות
|
|
|
|
|
פברואר 2021
|
|
חלוקה למיקרוסרביסים ושימוש ב- kafka
|
|
|
|
|
|
|
הוסף מידע על החברה
|
עוד מידע על הרמן :
|
|
|
ראיון לתפקיד מתכנת JAVA
בחברת GTH
ינואר 2021
|
14.01.2021
|
|
|
פרטים לגבי התהליך |
מבחן של שעה וחצי. אם עברתי אז ראיון עם ראש צוות. |
|
שאלות מתוך הראיון |
מה ההבדל בין מחלקה אבסטרקטית לממשק? האם יש שינוי בJava8?
לממש מחסנית שהפעולות הכנסה/הוצאה/קבלת המקסימום יהיו ב O(1).
שאלות על servlet.
מה זה http filter?
שאלת sql שהתשובה היא שימוש ב where+group by+having עם count. |
|
|
|
|
הוסף מידע על החברה
|
עוד מידע על GTH :
|
|
|
ראיון לתפקיד מתכנת JAVA
בחברת טאבולה
ינואר 2021
|
12.01.2021
|
|
|
פרטים לגבי התהליך |
שאלה בטלפון
ראיון:
- סיפור משעמם ומיותר על ההסטוריה של החברה
- שאלה |
|
שאלות מתוך הראיון |
לממש מתודה שמקבלת מספר ומחזירה אם הוא חזקה של 2 |
|
תשובות |
הוסף תשובה
|
לצפיה בתשובות
|
|
|
|
|
ינואר 2021
|
|
public boolean isPowerOf2(int n) {
return n > 0 && (n&(n-1)) == 0;
}
|
|
|
|
|
|
|
הוסף מידע על החברה
|
עוד מידע על טאבולה :
|
|
|
ראיון לתפקיד מתכנת JAVA
בחברת אמדוקס
דצמבר 2020
|
10.01.2021
|
|
|
פרטים לגבי התהליך |
הסבר על התפקיד ותרגיל למשך שעה, ולאחר מכן מדברים על הפיתרון |
|
שאלות מתוך הראיון |
Create application that represents Taxi station with 10 taxies.
Taxi station enables:
· Order taxi
· Cancel taxi
· Be aware when taxi gets available
Person that orders a taxi may be regular customer or VIP customer.
If a VIP orders a taxi, he/she should be first in line regardless the time he requested the service.
Where no taxi is available, person should be kept on waiting list.
When taxi becomes available, person according to priority gets the free taxi.
Print to console every reservation accepted / queued.
Execute:
1. Create taxi station with 10 taxis
2. Order taxi for 9 regular persons
3. Order taxi for 1 VIP person
4. Order taxi for 2 regular person
5. Order taxi for 1 VIP person
6. 1 Taxi is back in station
7. Order taxi for 1 VIP person
8. Second taxi is back in station
9. Third taxi is back in station |
|
תשובות |
הוסף תשובה
|
לצפיה בתשובות
|
|
|
|
|
ינואר 2021
|
|
PART OF SOLUTION
public void placeOrder(Order order) {
synchronized (lock) {
orders.add(order);
System.out.println("reservation queued: " + order.getDestiny() );
}
}
private class Taxi implements Runnable {
Order order;
@Override
public void run() {
while(true) {
try {
synchronized (lock) {
order = orders.poll();
if(order != null)
System.out.println("reservation accepted: " + order.getDestiny() );
}
if(order == null)
Thread.sleep(500);
else
drive();
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
private void drive() {
try {
System.out.println("driving to: " + order.getDestiny());
Thread.sleep(1000);
System.out.println("I'm done with " + order.getDestiny());
} catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
|
|
|
|
|
|
|
הוסף מידע על החברה
|
עוד מידע על אמדוקס :
|
|
|
ראיון לתפקיד מתכנת JAVA
בחברת זרטו
דצמבר 2020
|
06.01.2021
|
|
|
פרטים לגבי התהליך |
Fast interview. questions about multithreading, kafka and spring boot |
|
שאלות מתוך הראיון |
hibernate - explain get load difference?
what are triggers and did i work with them?
Tell about your project and where you used hibernate?
RestMapping / @RestController - where to use these annotations
what is heapTable, where is used
?mysql where used and asked to write structure of database |
|
|
|
|
הוסף מידע על החברה
|
עוד מידע על זרטו :
|
|
יש לכם מה להוסיף ?
|
|
|
|
|
|