Build a Payment Gateway and a mock bank client.
Sr Software Engineer Interview Questions
67,436 sr software engineer interview questions shared by candidates
How do you deploy to the cloud?
All the interviews where a different version of "talk about your experience" talking to different levels of engineers (e.g. Tech leads, Engineering managers, Engineering Director)
Interviewer shared his screen with me, opened a web browser window, typed “google.com”, hit <enter>, and asked me to describe in as little or as much detail as I wanted: what happened?
How would you improve your solution?
Given an array of integers and a target N, find all those pairs in that array whose sum is equal to N.
Design an scheduler
write a program to sort an array of random number in an array without using methods, only by using loops and conditions
print the middle of linked list struct Node { int data; struct Node* next; }; /* Function to get the middle of the linked list*/ void printMiddle(struct Node *head) { struct Node *slow_ptr = head; struct Node *fast_ptr = head; if (head!=NULL) { while (fast_ptr != NULL && fast_ptr->next != NULL) { fast_ptr = fast_ptr->next->next; slow_ptr = slow_ptr->next; } printf("The middle element is [%d]\n\n", slow_ptr->data); }
Give me a summary of your current job description.
Viewing 2451 - 2460 interview questions