- How do you work with git in regular basis?
- How to resolve conflicts?
- Commit was removed. Is it possible to revert this action?
- What is a git cache?
- What flows did you use to introduce new feature to production?
- What is a difference between Merge and Rebase?
- Bitbucket
- Github
- Gerrit
- Jenkins/Bamboo
- Integration Tests
- Straight to production
- Staging environments
- Tell us about your experience with scrum?
- Ceremonies in scrum and main roles
- What is Kanaban?
- Code Reviews
- What for do we need code review?
- Different kinds of tests?
- How should tests proportion looks like?
- What is TDD?
- Are unit tests required?
- What structure do you use for single test. (Given When Then, Arrange Act Assert)
- How you name specific test case ? (should...)
- OOP
- DDD
- BDD
- Acronyms SOLID, DRY
- Encapsulation, Abstraction, Polimorphism, Inheritance
- Design patterns - categories, differences, patterns composition
- Java Object Class methods
- Hash and equals methods contracts
- How to compare two object in Java? What should we implement or/and extend to accomplish it?
- Generics - what is it?
- Java annotations
- How to intruduce Amphibious to codebase using base classes Car and Boat?
- final keyword
- List<? super B> VS List<? extends B> where B extends A, C extends B and D extends B
- Stack - how can we get stackoverflow exception
- Heap - how can we get OutOfMemory Exception
- GC
- differences,
- How do different gc works?
- What for do we need GC?
- G1 - why is it awesome?
- JUnit,
- Mockito,
- AssertJ,
- Wiremock
- Spock
-
List
-
Set
-
Map
- Hash Map - O notation
-
Thread safe collections in Java
- Semaphore
- Monitor
- Threads pool
- synchronized keyword - what object will be used: when mathod is static and for regular method.
- What is cirtical section?
- What does that mean that operation is atomic?
- Volatile keyword
- Implement Singleton
- What features were introduced in java 8?
- What for do we need Optional?
- What is a keyword default in Java interface?
- New feaures?
- HTTP Client
- RxJava
- Modularization / OSGi
- filter, map, flatMap, reduce, group by, collect
- How many times can you invoke operations on single stream?
- Two kinds of opperations on streams.
- HTTP methods
- HTTP status codes
- What is it?
- How resources are stored? (Nouns Verbs)
- What HTTP methods should be used?
- What operations are idempotent?
- What design pattern is most used pattern in spring framework?
- Dependency Injection
- AOP in spring
- Spring annotation?
- How do you impelement REST api in Spring?
- Transactional annotation?
- Components
- Controller
- Service
- Repository
- Configuration
- Configuration
- XML
- Java classes
- What is a difference between spring boot and spring?
- What for do we need Spring Boot?
- Is it possible to use xml configuration files?
- What is the dafault http server for Spring Boot?
- Available http servers from the box?
- WAR vs JAR
- Modules of spring
- What is circut breaker?
- Circut breaker impelementation using semaphore and thread pools: What is the difference?
- Ant,
- Maven,
- Gradle
- Maven scopes
- n + 1 problem
- What is transaction?
- Optimistic Locking vs. Pessimistic Locking
- What databases did you use?
- Left Righ Inner Outer Full Join
- SQL vs NoSQL
- Mongo
- Optimistic Lock - how can be implemented?
- How values are stored in mongo?
- How the values are stored in redis?
- For what we can use redis?
- Redis vs memcache
- Communication channels between microservices
-
Kafka
- How kafka works?
- Topics Partitions
- Multiple readers broadcasting
- Kafka cluster
-
RabitMq
- How will you implement newsletter functionality?