Skip to content

Commit c90afd4

Browse files
Merge pull request arialdomartini#4 from ferhatelmas/typos
Fixed some typos
2 parents 3e6475e + e636584 commit c90afd4

File tree

1 file changed

+22
-23
lines changed

1 file changed

+22
-23
lines changed

README.md

Lines changed: 22 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
Back-End Developer Interview Questions
22
======================================
33

4-
I'm not a big fan of asking technical questions in job interviews: I'd rather prefer to sit together with candidates in front of some real code, facing a real problem, and have a full day of pair programming rotating with all the team members. Yet, some technical questions could be used to start a deep and nice conversation, and this can be useful to get a deeper knowledge of eachothers.
4+
I'm not a big fan of asking technical questions in job interviews: I'd rather prefer to sit together with candidates in front of some real code, facing a real problem, and have a full day of pair programming rotating with all the team members. Yet, some technical questions could be used to start a deep and nice conversation, and this can be useful to get a deeper knowledge of each other.
55

66
This repo contains a number of backend interview questions that can be used when vetting potential candidates. It is by no means recommended to use every single question here on the same candidate (that would take hours). Choosing a few items from this list should help you vet the intended skills you require.
77

88
This project is admittedly inspired by [Front-end Job Interview Questions](https://github.com/darcyclarke/Front-end-Developer-Interview-Questions) by [@darcyclarke](https://github.com/darcyclarke)
99

10-
**Note:** Keep in mind that many of these questions are open ended and could lead to interesting discussions that tell you more about the person's capabilities than a straight answer would. Again, I stress that just asking question is hardly sufficient. Complete the interview with a long pair programming session with your candidates: it is one of the best opportunities to know eachothers' style and approach and to let candidates know some details about their future dayjob.
10+
**Note:** Keep in mind that many of these questions are open ended and could lead to interesting discussions that tell you more about the person's capabilities than a straight answer would. Again, I stress that just asking question is hardly sufficient. Complete the interview with a long pair programming session with your candidates: it is one of the best opportunities to know each other's style and approach and to let candidates know some details about their future day job.
1111

1212

1313
## <a name='toc'>Table of Contents</a>
@@ -26,7 +26,7 @@ This project is admittedly inspired by [Front-end Job Interview Questions](https
2626
1. [Questions about Software Lifecycle and Team Management](#management)
2727
1. [Questions about logic and algorithms](#algorithms)
2828
1. [Questions about Software Architecture](#architecture)
29-
1. [Questions about Service Oriented Architecture and Microservics](#soa)
29+
1. [Questions about Service Oriented Architecture and Microservices](#soa)
3030
1. [Questions about Security](#security)
3131
1. [Bill Gates Style Questions](#billgates)
3232
1. [Questions based on snippets of code](#snippets)
@@ -43,7 +43,7 @@ This project is admittedly inspired by [Front-end Job Interview Questions](https
4343
* What is a real-time system and how is it different from an ordinary system?
4444
* What's the relationship between real-time languages and heap memory allocation?
4545
* Immutability is the practice of setting values once, at the moment of their creation, and never changing them. How immutability can help writing safer code?
46-
* Pro and cons of mutable and unmutable values.
46+
* Pro and cons of mutable and immutable values.
4747
* What's the Object-Relational impedence mismatch?
4848
* Which principles would you apply to define the size of a cache?
4949
* What's the difference between TCP and HTTP?
@@ -59,7 +59,7 @@ This project is admittedly inspired by [Front-end Job Interview Questions](https
5959
* Say your Company gives you one week you can use to improve your and your colleagues' lifes: how would you use that week?
6060
* What did you learn this week?
6161
* There is an aesthetic element to all design. The question is, is this aesthetic element your friend or your enemy?
62-
* List the last 5 books you read.
62+
* List the last 5 books you read.
6363
* How would you introduce Continue Delivery in a multi million waterfall shop?
6464
* Let's have a conversation about "*Reinventing the wheel*", the "*Not Invented Here Syndrome*" and the "*Eating Your Own Food*" practice
6565
* What's the next thing you would automate in your current workflow?
@@ -71,7 +71,7 @@ This project is admittedly inspired by [Front-end Job Interview Questions](https
7171
* Defend the monolithic architecture.
7272
* What does it mean to be a "Professional Developer"?
7373
* Is developing software an art, a craftsmanship or an engineering endeavour? Your opinion.
74-
* "People who like this also like... ". How would you implement this feature in an e-commerce shop?
74+
* "People who like this also like... ". How would you implement this feature in an e-commerce shop?
7575
* Why are corporations slower than startups in innovating?
7676

7777

@@ -110,9 +110,9 @@ This project is admittedly inspired by [Front-end Job Interview Questions](https
110110
* Tell me the 3 worse defects of your preferred language
111111
* Why is there a rising interest about Functional Programming?
112112
* What is a closure, and what is useful for? What's in common between closures and classes?
113-
* What are generics useful for?
114-
* What are high-order functions? What are they useful for? Write one, in your preferred language.
115-
* Write a loop, then transform it into a recursive function, avoiding mutability. Discuss.
113+
* What are generics useful for?
114+
* What are high-order functions? What are they useful for? Write one, in your preferred language.
115+
* Write a loop, then transform it into a recursive function, avoiding mutability. Discuss.
116116
* What does it mean when a language treats functions as first-class citizens?
117117
* Show me an example where an Anonymous Function can be useful
118118
* What is Dynamic Method Dispatch?
@@ -163,7 +163,7 @@ This project is admittedly inspired by [Front-end Job Interview Questions](https
163163
####[[]](#toc) <a name='concurrency'>Questions about Concurrency:</a>
164164

165165
* Why do we need Concurrency, anyway? Explain.
166-
* Why is testing multithreading / concurrent code so difficult?
166+
* Why is testing multithreading / concurrent code so difficult?
167167
* What is a Race Condition? Code an example, using whatever language you like.
168168
* What is a Deadlock? Explain using code.
169169
* What is Process Starvation?
@@ -175,10 +175,10 @@ This project is admittedly inspired by [Front-end Job Interview Questions](https
175175
* In which case whould you apply asynchronously communication between two systems?
176176
* What are the general pitfalls of Remote Procecure Call?
177177
* If you are building a distributed system for scalability and robustness, what are the different things you'd think of in the case you are working in a closed and secure network environment or in geographically distributed and public system?
178-
* How to manage Fault Tolerance in a Web application? And in a Desktop one?
178+
* How to manage Fault Tolerance in a Web application? And in a Desktop one?
179179
* How to deal with failures in Distributed Systems?
180180
* Let's talk about the several approaches to Reconciliation after network partitions
181-
* What are the Fallacies of Distributed Computing?
181+
* What are the Fallacies of Distributed Computing?
182182
* When would you use Request/Reply and when Publish/Subscribe?
183183

184184

@@ -195,18 +195,17 @@ This project is admittedly inspired by [Front-end Job Interview Questions](https
195195
* Are Program Managers useful?
196196
* Organize a development team using flexible schedules (that is, no imposed working hours) and "Take as you need" vacation policy
197197
* How would you manage a very high turn over and convince developers not to leave the team, without increasing compensation?
198-
* What are the top 3 qualities you look for in colleagues, beyond their code?
198+
* What are the top 3 qualities you look for in colleagues, beyond their code?
199199
* What are the top 3 things you wish non-technical people knew about code?
200200

201-
202201
####[[]](#toc) <a name='algorithms'>Questions about logic and algorithms:</a>
203202

204203
* Make a FIFO Queue using only LIFO Stacks. Then build a LIFO Stack using only FIFO Queues.
205-
* Write a snippet of code affected by a Stack Overflow
204+
* Write a snippet of code affected by a Stack Overflow
206205
* Write a tail-recursive version of the factorial function
207206
* Using your preferred language, write a REPL that echoes your inputs. Evolve it to make it an RPN calculator.
208207
* How would you design a "defragger" utility?
209-
* Write a programs that builds random mazes.
208+
* Write a program that builds random mazes.
210209
* Write a sample code that produces a memory leak
211210
* Generate a sequence of unique random numbers
212211
* Write a simple Garbage collection system
@@ -225,7 +224,7 @@ This project is admittedly inspired by [Front-end Job Interview Questions](https
225224
* Scale out vs scale up: how are they different? When to apply one, when the other?
226225
* How to deal with failover and user sessions?
227226
* What is CQRS (Command Query Responsibility Segregation)? How is it different from the oldest Command-Query Separation Principle?
228-
* What is Three-Tier architecture?
227+
* What is Three-Tier architecture?
229228
* How would you design a software system for scalability?
230229
* What are the strategies to deal with the C10k problem?
231230
* How would you design a decentralized (that is, with no central server) P2P system?
@@ -247,7 +246,7 @@ This project is admittedly inspired by [Front-end Job Interview Questions](https
247246
* Why, in a SOA, long-lived transactions are discorauged and Sagas are suggested instead?
248247
* What are the differences between Soa and Microservices?
249248
* Let's talk about web services versioning, version compatibility and breaking changes.
250-
* What's the difference between a transaction and a compensation operation in a saga, in SOA?
249+
* What's the difference between a transaction and a compensation operation in a saga, in SOA?
251250
* When is a Microservice too micro?
252251
* What are the pros and cons of MicroService architecture?
253252

@@ -262,7 +261,7 @@ This project is admittedly inspired by [Front-end Job Interview Questions](https
262261
* Interview me
263262
* Why are Quora's answers better than Yahoo Answers' ones?
264263
* Defend Cobol against modern languages
265-
* Where will be you, in 10 years?
264+
* Where will you be in 10 years?
266265
* You are my boss and I'm fired. Inform me.
267266
* I want to refactor a legacy system. You want to rewrite it from scratch. Argument. Then, switch our roles.
268267
* Your boss asks you to lie to the Company. What's your reaction?
@@ -275,8 +274,8 @@ This project is admittedly inspired by [Front-end Job Interview Questions](https
275274
function hookupevents() {
276275
for (var i = 0; i < 3; i++) {
277276
document.getElementById("button" + i)
278-
.addEventListener("click", function() {
279-
alert(i);
277+
.addEventListener("click", function() {
278+
alert(i);
280279
});
281280
}
282281
}
@@ -306,7 +305,7 @@ public class Stack {
306305
ensureCapacity();
307306
elements[size++] = e;
308307
}
309-
308+
310309
public Object pop() {
311310
if (size == 0)
312311
throw new EmptyStackException();
@@ -324,7 +323,7 @@ public class Stack {
324323
}
325324
```
326325

327-
* `if`s and in general conditional statements lead to procedural and imperative programming. Can you get rid of this `switch` and make this snippet more objetct oriented?
326+
* `if`s and in general conditional statements lead to procedural and imperative programming. Can you get rid of this `switch` and make this snippet more object oriented?
328327

329328
```java
330329
public class Formatter {

0 commit comments

Comments
 (0)