Digital Core Java Test - SD
Digital Core Java Test - SD
Note:
System.out.print(p[a] + ";");
}
}
}
Expected Output:-
Method sequencingNumbers is having space in between parameter so below are the possibility of output
1. If parameter type is int P then there will be compilation error.
2. If parameter type is int [ ] P then output will be 5;8;4;2;7;1;
Test 2: Java Programming
Complete the Java function below to removing the duplicates from the array
for(int number : p)
{
mySet.add(number);
return mySet.toString();
Expected Output:-
PROJECT_TABLE
Write a query to get the list of employees who work for a project in Malaysia OR unassign to
any project sort by employee code in ascending.
Expected Output:-
Given requirements:
- Create a Back Office maintenance module that can administrate (Add / Update / Delete)
project information.
- The Enquiry Screen shall list out the resources under the selected project.
Sample Screen Designs:
Please draft the DB tables design and list of RESTful Web API services accordingly.
Tip: Example of a REST Web API service: GET - /v1/project/{id} - To get single project details data.
Add a new project to list - POST ([url:port]/project/post -d "projectName":"MicroserviceProject (phase1)","projectModuleName":"HEB","ProjectManager": "John Doe")
add rerouces : POST ([url:port]/project/post -d "First Name":................")
Based on the requirements given in Test #4, please design the Spring MVC / Spring Boot
application project structure, e.g. folder / package structure, with some classes, resources
file(s), config file(s), Maven/Gradle file(s), etc., whatever applicable.
The coding content is not required, but please try to list out as many as possible the Spring
annotations that might be used in the applicable classes, e.g. JPA Entity classes would use
@Entity and @Table.
You are encouraged to add in additional library, design considerations or explanation with
diagrams or writings, as long as you believe those are useful stuff, in order to showcase your
experience and understanding about development base of RESTful Web API application
using Spring / Spring Boot framework. We will further discuss based on your answer during
the face to face interview.