If there are 10 people in a meeting and each one shakes their hands once, how many handshakes there was?
Senior Linux Engineer Interview Questions
1,889 senior linux engineer interview questions shared by candidates
Preguntas técnicas básicas y piden mucho compromiso
Can you explain the purpose of the 'sudo' command in Linux, and how is it used for privilege escalation?
What would you do if your co-worked didn't do his job
Tell me about a time when you had to step outside of your role to solve an important problem, how did you do it and what was the result?
Only one developer asked coding question related to strings, to detect palindrome. Test lead asked questions on syntax, semantics of C-code, git-squash, static code analysis and run-time analysis.
What is IPC? What are the various schemes available? The term IPC (Inter-Process Communication) describes various ways by which different process running on some operating system communicate between each other. Various schemes available are as follows: Pipes: One-way communication scheme through which different process can communicate. The problem is that the two processes should have a common ancestor (parent-child relationship). However this problem was fixed with the introduction of named-pipes (FIFO). Message Queues : Message queues can be used between related and unrelated processes running on a machine. Shared Memory: This is the fastest of all IPC schemes. The memory to be shared is mapped into the address space of the processes (that are sharing). The speed achieved is attributed to the fact that there is no kernel involvement. But this scheme needs synchronization. Various forms of synchronisation are mutexes, condition-variables, read-write locks, record-locks, and semaphores.
Questions were mostly about C/C++ e.g. pointers, Memory Management, Operating Systems, and OOPs in C++ such as virtual functions.
Asked me to describe my project
Compare and contrast an array and a linked list. Which operates faster in a loop? Why?
Viewing 141 - 150 interview questions