Step 1: Setup Java, Maven, and SonarQube
1. Java: Latest possible version. Setting up Java, Maven, and eclipse.
2. Maven 3: For building. Setting up Java, Maven, and eclipse.
3. SonarQube: For code quality.
…
Step 1: Setup Java, Maven, and SonarQube
1. Java: Latest possible version. Setting up Java, Maven, and eclipse.
2. Maven 3: For building. Setting up Java, Maven, and eclipse.
3. SonarQube: For code quality.
…
Q: Implement an in-memory cache in Java without using any frameworks. The basic requirements are – The TTL (Time To Live) for the cache items are ~10 seconds [just for demo]. – The system has plenty of memory. – … Read more ›...
Q: Create a simple framework where work items can be submitted using Java 8 or later. Here are the use cases: #1: A work item is an instance of a class. #2: The definition of “ … Read more ›...
Q: Write a program that takes any 10-digit phone number and produces a list of words matching first letters of the phone number (2 – ABC, 3 – DEF, .. 9 – WXYZ). Use any free word list file from online. A: The logic is to 1) Read a word...
This makes use of the Functional Programming (FP) approach. Q: Write a program that takes any 10-digit phone number and produces a list of words matching first letters of the phone number (2 – ABC, 3 – DEF, .. 9 – WXYZ). Use any free word list file from online....