Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by CitiusTech Team. If you also belong to the team, you can get access from here

CitiusTech Verified Tick

Compare button icon Compare button icon Compare
3.4

based on 1.6k Reviews

Filter interviews by

CitiusTech Junior Java Developer Interview Questions and Answers

Updated 22 Nov 2022

CitiusTech Junior Java Developer Interview Experiences

1 interview found

I applied via Walk-in and was interviewed in Oct 2022. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Aptitude Test 

Aptitude test like technical questions

Round 3 - Coding Test 

Coding test for technical analysis

Round 4 - HR 

(1 Question)

  • Q1. HR is asking same basic questions java
Round 5 - Technical 

(2 Questions)

  • Q1. Technical questions asked
  • Q2. Full stack java developer

Interview Preparation Tips

Interview preparation tips for other job seekers - Core java, Advance Java, Oracle, Spring, HTML5, CSS, JavaScript and Angular-13

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via LinkedIn and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic questions on Java concepts like OOPS, multi threading, stream. MySQL join queries
  • Q2. Questions on Spring Boot and REST API
Round 2 - Technical 

(2 Questions)

  • Q1. Questions on currently working project?.
  • Q2. Your contribution to the project and what challenges you faced?
  • Ans. 

    I contributed by developing new features and fixing bugs. Faced challenges with integrating third-party APIs.

    • Developed new features such as user authentication and data visualization

    • Fixed bugs related to database queries and UI responsiveness

    • Challenges faced with integrating third-party APIs like payment gateways and social media platforms

  • Answered by AI

I applied via Naukri.com and was interviewed in Aug 2022. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Static related que sql query to fetch data starting with vowel method overriding exceptions

Interview Preparation Tips

Interview preparation tips for other job seekers - for the first round prepare on core java

I applied via Campus Placement and was interviewed in Jan 2022. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Tell me about urself
  • Q2. Can I know ur name

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident while you are attending the interview
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Given an array of non-negative integers.Find the length of the longest subsequence such that elements in the subsequence are contiguous integers. The consecutive numbers can be in any order. Example n=7 nu...
  • Ans. 

    Find the length of the longest subsequence of contiguous integers in an array.

    • Sort the array

    • Iterate through the array and check for consecutive integers

    • Keep track of the longest subsequence found

  • Answered by AI
  • Q2. Get list of pincodes from these objects Employee{ id Long, name String, Addresses : List
    } Addresses{ houseNo long, pindcode long, state String, country String, } Ans. Use flatMap to flatten and then use m...
  • Ans. 

    Use flatMap and map to extract list of pincodes from Employee objects

    • Use flatMap to flatten the list of Addresses in each Employee object

    • Use map to iterate over the flattened list and extract the pincodes

    • Example: employeeList.stream().flatMap(emp -> emp.getAddresses().stream()).map(address -> address.getPincode()).collect(Collectors.toList())

  • Answered by AI
  • Q3. What is Database Pooling, Hikari and its configurations. Java 8 to current enchancements and current java version Factory and Builder design patterns to explain and code Project expalantion and details, Cr...
  • Ans. 

    Database pooling is a technique used to manage a pool of database connections for efficient resource utilization. HikariCP is a popular database connection pooling library in Java.

    • HikariCP is a high-performance database connection pooling library for Java applications.

    • It is known for its low latency and high throughput.

    • Configurations for HikariCP include settings such as maximum pool size, connection timeout, and idle ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA and design patterns and knowledge of springboot,java & streams API advance methods etc.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. How annotation works?
  • Ans. 

    Annotations in Java provide metadata about a program that can be used by the compiler or at runtime.

    • Annotations start with the @ symbol.

    • Annotations can be used to provide information to the compiler or to runtime environments.

    • Annotations can be used to define custom metadata for classes, methods, fields, etc.

    • Annotations can also be used for code generation, documentation, and validation.

    • Examples of annotations in Java ...

  • Answered by AI
  • Q2. CondurentSkipListMap, how does it work
  • Ans. 

    ConcurrentSkipListMap is a concurrent, sorted map implementation in Java.

    • ConcurrentSkipListMap is a concurrent version of SkipListMap, which is a sorted map implementation based on skip list data structure.

    • It allows multiple threads to access and modify the map concurrently.

    • It provides logarithmic time complexity for most operations, making it efficient for concurrent access.

    • Example: ConcurrentSkipListMap

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Assignment 

1 Assignment which you need to solve in front of the interviewer

Round 2 - One-on-one 

(2 Questions)

  • Q1. Questions on Java Streams
  • Q2. Questions on springboot
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. To connect to your DB what you use in Spring boot
  • Ans. 

    In Spring Boot, we use Spring Data JPA to connect to the database.

    • Use @EnableJpaRepositories annotation in the main application class to enable JPA repositories

    • Define datasource properties in application.properties or application.yml file

    • Use @Entity annotation to define JPA entities

    • Use JpaRepository interface to perform CRUD operations on entities

  • Answered by AI
  • Q2. What is Component Scan
  • Ans. 

    Component Scan is a feature in Spring framework that automatically scans and registers Spring components in the application context.

    • Component Scan is used to automatically detect and register Spring components like @Component, @Service, @Repository, and @Controller.

    • It eliminates the need for manual configuration of bean definitions in the Spring configuration file.

    • Component Scan can be configured with base package(s) t...

  • Answered by AI
  • Q3. Throw vs throws
  • Ans. 

    throw is used to explicitly throw an exception in a method, while throws is used in method signature to declare the exceptions that can be thrown by the method.

    • throw is used within a method to throw an exception, while throws is used in the method signature to declare the exceptions that can be thrown by the method

    • throw is followed by an exception object, while throws is followed by the exception class names separated ...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Fair and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - One-on-one 

(5 Questions)

  • Q1. Java vs Javascript , Meaning of Synchronization in Java , Multihreading in Js
  • Ans. 

    Java is a backend language, Javascript is a frontend language. Synchronization in Java ensures only one thread can access a resource at a time. JavaScript is single-threaded but can handle asynchronous operations using callbacks, promises, and async/await.

    • Java is a backend language used for server-side development, while JavaScript is a frontend language used for client-side scripting.

    • Synchronization in Java is a techn...

  • Answered by AI
  • Q2. Write a pojo class to display the Employee Details,Pojo vs Bean
  • Ans. 

    A Pojo class is a simple Java class that contains only private fields, public getters and setters, and no-arg constructor.

    • Create private fields for employee details like name, id, salary, etc.

    • Generate public getters and setters for each field.

    • Include a no-arg constructor in the class.

    • Example: public class Employee { private String name; private int id; public String getName() { return name; } public void setName(String...

  • Answered by AI
  • Q3. How to to compare two objects with same class (equals & Hashcode methods)
  • Ans. 

    To compare two objects with the same class, override the equals and hashCode methods in the class.

    • Override the equals method to compare the fields of the objects for equality.

    • Override the hashCode method to generate a unique hash code based on the object's fields.

    • Ensure that the equals and hashCode methods are consistent with each other.

    • Example: public class Person { private String name; private int age; }

  • Answered by AI
  • Q4. Springboot questions basics like How to connect to 2 databases at a time How to change the table name in entity class(@Table)
  • Q5. JPA Repository inbuilt methods
  • Ans. 

    JPA Repository provides inbuilt methods for common database operations in Spring applications.

    • JPA Repository provides methods like save(), findById(), findAll(), deleteById(), etc.

    • These methods help in performing CRUD operations on entities without writing custom queries.

    • For example, userRepository.save(user) saves a user entity to the database.

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Java8 coding to filter the vowels
  • Ans. 

    Using Java8 to filter vowels from an array of strings

    • Use Java8 stream and filter to iterate through each string in the array

    • Use a lambda expression to check if each character is a vowel

    • Collect the filtered strings into a new array

  • Answered by AI
  • Q2. Java8, Multi Threading, Hibernate, JPA

Skills evaluated in this interview

CitiusTech Interview FAQs

How many rounds are there in CitiusTech Junior Java Developer interview?
CitiusTech interview process usually has 5 rounds. The most common rounds in the CitiusTech interview process are HR, Technical and Resume Shortlist.
What are the top questions asked in CitiusTech Junior Java Developer interview?

Some of the top questions asked at the CitiusTech Junior Java Developer interview -

  1. Full stack java develo...read more
  2. Technical questions as...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 CitiusTech interview
WalkIn
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
Senior Software Engineer
2.6k salaries
unlock blur

₹5.8 L/yr - ₹20 L/yr

Technical Lead
2.1k salaries
unlock blur

₹7.4 L/yr - ₹27.4 L/yr

Software Engineer
1.2k salaries
unlock blur

₹3.3 L/yr - ₹11.2 L/yr

Technical Lead 1
359 salaries
unlock blur

₹7 L/yr - ₹25.4 L/yr

Technical Lead 2
290 salaries
unlock blur

₹7.8 L/yr - ₹28 L/yr

Explore more salaries
Compare CitiusTech with

Accenture

3.9
Compare

Capgemini

3.8
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview