Upload Button Icon Add office photos

Filter interviews by

Craxinno Technologies Java Developer Interview Questions and Answers for Experienced

Updated 9 Jun 2024

Craxinno Technologies Java Developer Interview Experiences for Experienced

1 interview found

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

(4 Questions)

  • Q1. Oops concepts and collection
  • Q2. Java 8 features
  • Q3. Difference between abstract and interface . What is Encapsulation. Give example.
  • Ans. 

    Abstract classes can have both abstract and non-abstract methods, while interfaces can only have abstract methods. Encapsulation is the concept of bundling data and methods that operate on the data into a single unit.

    • Abstract classes can have constructors, while interfaces cannot.

    • A class can implement multiple interfaces, but can only inherit from one abstract class.

    • Encapsulation helps in data hiding and prevents direc...

  • Answered by AI
  • Q4. Spring annotation

Skills evaluated in this interview

Interview questions from similar companies

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

I was interviewed in Nov 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Prime number program
  • Ans. 

    A program to check if a given number is prime or not.

    • Create a function to check if a number is prime by iterating from 2 to the square root of the number.

    • If the number is divisible by any number other than 1 and itself, it is not prime.

    • Handle edge cases like 0, 1, and negative numbers separately.

  • Answered by AI
  • Q2. 3rd highest salary employee
  • Ans. 

    To find the 3rd highest salary employee, we can use a SQL query with the 'LIMIT' and 'OFFSET' keywords.

    • Use a SQL query to select distinct salaries in descending order

    • Use 'LIMIT 1 OFFSET 2' to get the 3rd highest salary

    • Join this result with the employee table to get the employee details

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. Method reference vs lambda functions
  • Ans. 

    Method reference is a shorthand syntax for lambda expressions in Java.

    • Method reference is more concise and readable than lambda expressions.

    • Method reference can be used to refer to static methods, instance methods, and constructors.

    • Lambda expressions are more flexible and can be used in situations where method reference is not applicable.

  • Answered by AI
  • Q2. SOLID Principles

Interview Preparation Tips

Interview preparation tips for other job seekers - Java Basics

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Company Website and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Oops concept and collections
  • Q2. MySql and springBoot

Interview Preparation Tips

Interview preparation tips for other job seekers - all the best
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Regular core java, OOPS, Spring Boot questions. It was like a rapid-fire round.
Round 2 - One-on-one 

(3 Questions)

  • Q1. Coding question - find repeat elements in an array
  • Ans. 

    Find repeat elements in an array of strings

    • Iterate through the array and store each element in a HashMap with its count

    • Check if the count of any element is greater than 1, then it is a repeat element

    • Return the repeat elements found in the array

  • Answered by AI
  • Q2. Project related questions
  • Q3. Build a basic CRUD REST API endpoint
  • Ans. 

    Build a basic CRUD REST API endpoint

    • Create a REST API endpoint for each CRUD operation (Create, Read, Update, Delete)

    • Use HTTP methods like POST, GET, PUT, DELETE to perform CRUD operations

    • Implement data validation and error handling for each operation

    • Utilize a framework like Spring Boot or Express.js to simplify API development

  • Answered by AI
Round 3 - One-on-one 

(3 Questions)

  • Q1. Behavioral questions
  • Q2. Technical questions about SpringBoot and microservices
  • Q3. SQL question - third highest salary
  • Ans. 

    To find the third highest salary in a SQL table, you can use the 'SELECT TOP 1' statement with 'ORDER BY salary DESC OFFSET 2 ROWS FETCH NEXT 1 ROWS ONLY'.

    • Use the 'SELECT TOP 1' statement to retrieve only one record

    • Order the records by salary in descending order using 'ORDER BY salary DESC'

    • Skip the first two highest salaries using 'OFFSET 2 ROWS'

    • Fetch the next record after skipping the first two using 'FETCH NEXT 1 ROW

  • Answered by AI

Skills evaluated in this interview

Java Developer Interview Questions & Answers

HCLTech user image Prasad Kanimerakala

posted on 2 Dec 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Java streams related questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Naukri.com and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. What is wait, notify, notifyall
  • Ans. 

    wait, notify, and notifyAll are methods used for inter-thread communication in Java.

    • wait() method causes the current thread to wait until another thread invokes the notify() or notifyAll() method for this object.

    • notify() method wakes up a single thread that is waiting on this object's monitor.

    • notifyAll() method wakes up all threads that are waiting on this object's monitor.

  • Answered by AI
  • Q2. Difference between spring and springboot
  • Ans. 

    Spring is a framework for building Java applications, while Spring Boot is a tool that simplifies the setup and configuration of Spring applications.

    • Spring is a comprehensive framework for building Java applications, providing support for various modules like Spring MVC, Spring Security, and Spring Data.

    • Spring Boot is an opinionated tool that simplifies the setup and configuration of Spring applications by providing de...

  • Answered by AI
  • Q3. What is lambda expression
  • Ans. 

    Lambda expression is a concise way to represent an anonymous function in Java.

    • Lambda expressions are used to provide implementation of functional interfaces.

    • They enable you to treat functionality as a method argument, or code as data.

    • Syntax: (parameters) -> expression or (parameters) -> { statements; }

    • Example: (int a, int b) -> a + b

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare multi threading, streams for interview

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Online assessment MCQs with 3 questions where we nmed to find bug in existing logic

Round 2 - Technical 

(1 Question)

  • Q1. What are new features in Java 8 explain in brief
  • Ans. 

    Java 8 introduced new features like lambda expressions, functional interfaces, streams, and default methods.

    • Lambda expressions allow you to write code in a more concise and readable way.

    • Functional interfaces provide a single abstract method for functional programming.

    • Streams enable processing sequences of elements in a functional style.

    • Default methods allow interfaces to have method implementations.

    • Example: Lambda expr...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Introduction and expectations

Interview Preparation Tips

Topics to prepare for LTIMindtree Java Developer interview:
  • Core Java
  • Springboot
  • Microservices

Skills evaluated in this interview

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

(1 Question)

  • Q1. Basic java questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Job Portal and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Oops concepts in details
  • Ans. 

    Object-oriented programming concepts in Java

    • Encapsulation: bundling data and methods together

    • Inheritance: creating new classes from existing ones

    • Polymorphism: using a single interface to represent multiple types

    • Abstraction: hiding implementation details

    • Encapsulation: grouping related data and methods into a class

    • Association: relationship between two or more objects

    • Composition: creating complex objects by combining simp...

  • Answered by AI
  • Q2. Method overloading and overriding

Craxinno Technologies Interview FAQs

How many rounds are there in Craxinno Technologies Java Developer interview for experienced candidates?
Craxinno Technologies interview process for experienced candidates usually has 1 rounds. The most common rounds in the Craxinno Technologies interview process for experienced candidates are Technical.
What are the top questions asked in Craxinno Technologies Java Developer interview for experienced candidates?

Some of the top questions asked at the Craxinno Technologies Java Developer interview for experienced candidates -

  1. Difference between abstract and interface . What is Encapsulation. Give examp...read more
  2. Oops concepts and collect...read more
  3. Java 8 featu...read more

Tell us how to improve this page.

Full Stack Developer
3 salaries
unlock blur

₹3 L/yr - ₹5.4 L/yr

Explore more salaries
Compare Craxinno Technologies with

Tech Mahindra

3.6
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

TCS

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