Upload Button Icon Add office photos

Filter interviews by

Artech Infosystems Senior Java Developer Interview Questions and Answers

Updated 26 Jan 2023

Artech Infosystems Senior Java Developer Interview Experiences

1 interview found

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

I applied via Approached by Company and was interviewed before Jan 2022. There were 3 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 - Technical 

(1 Question)

  • Q1. How to create and consume end point with spring boot microservices
  • Ans. 

    To create and consume endpoints with Spring Boot microservices, use Spring Web and RESTful APIs.

    • Create a Spring Boot application with Spring Web dependency

    • Define RESTful APIs using @RestController and @RequestMapping annotations

    • Use HTTP methods like GET, POST, PUT, DELETE to handle requests

    • Consume endpoints using RestTemplate or FeignClient

    • Handle exceptions using @ExceptionHandler annotation

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. About last organization why did you left and what would be you expecting

Interview Preparation Tips

Interview preparation tips for other job seekers - Good to work with and also provide support for any that needed for us from client prespective

Skills evaluated in this interview

Interview questions from similar companies

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

(2 Questions)

  • Q1. Sort an array in O(nlogn)
  • Ans. 

    Use merge sort algorithm to sort the array in O(nlogn) time complexity.

    • Implement merge sort algorithm which divides the array into two halves, recursively sorts the halves, and then merges the sorted halves.

    • Time complexity of merge sort is O(nlogn) where n is the number of elements in the array.

    • Example: ['apple', 'banana', 'cherry', 'date'] can be sorted using merge sort in O(nlogn) time complexity.

  • Answered by AI
  • Q2. Find element in sorted Array
  • Ans. 

    Use binary search to find element in sorted array efficiently.

    • Start with middle element and compare with target

    • If target is less, search left half, if greater search right half

    • Repeat until element is found or search space is empty

  • Answered by AI

Skills evaluated in this interview

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

30 min .. time, speed, distance

Round 2 - Coding Test 

Normal easy qus via leetcode

I applied via Campus Placement

Round 1 - Technical 

(2 Questions)

  • Q1. Database query of MySQL
  • Ans. 

    MySQL database query

    • Use SELECT statement to retrieve data from tables

    • Use WHERE clause to filter data based on conditions

    • Use JOIN to combine data from multiple tables

    • Use ORDER BY to sort data in ascending or descending order

    • Use LIMIT to limit the number of rows returned

  • Answered by AI
  • Q2. About React.js what is axios call, workflow of connection made with backend

Interview Preparation Tips

Interview preparation tips for other job seekers - More Focus on database and any one technology .

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 - Technical 

(3 Questions)

  • Q1. Difference between Procedure, Packages and functions.
  • Ans. 

    Procedures, Packages and Functions are all subprograms in PL/SQL with different characteristics.

    • Procedures are subprograms that perform a specific task and may or may not return a value.

    • Functions are subprograms that always return a value and can be used in SQL statements.

    • Packages are a collection of related procedures, functions, variables, and other program constructs that can be used as a single unit.

    • Packages provid...

  • Answered by AI
  • Q2. If table or view does not exist what does it mean
  • Ans. 

    It means that the table or view does not exist in the database.

    • The query will fail and return an error message.

    • The application may crash or behave unexpectedly.

    • The table or view may have been deleted or renamed.

    • Check the spelling and syntax of the query.

    • Make sure the database connection is established and valid.

  • Answered by AI
  • Q3. Difference Between Views and Materialized Views
  • Ans. 

    Views are virtual tables while Materialized Views are physical tables.

    • Views are created using SELECT statement while Materialized Views are created using CREATE MATERIALIZED VIEW statement.

    • Views do not store data while Materialized Views store data.

    • Views are updated dynamically while Materialized Views are updated manually or automatically based on refresh settings.

    • Materialized Views are faster for read-heavy workloads...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Details explanation about the projects and the concepts what we used.

Interview Preparation Tips

Interview preparation tips for other job seekers - Always answer bold whatever maybe the questions explain in brief whatever you know and your answers should be to the point.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Around 75 mcq questions with snippets of code

Round 2 - Technical 

(3 Questions)

  • Q1. Interview conducted by technical lead. Around 10-15 questions asked. Questions related to your skills only.
  • Q2. Basics of core java
  • Q3. SQL queries, scenario based questions
Round 3 - Behavioral 

(1 Question)

  • Q1. Daily routine. Casual question/non technical questions. Tricky question. Puzzles. Sone technical questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy level not much hard, don’t worry and go for CitiusTech.
Work culture is very awesome.
All the facilities are there as
1. Technical Trainings
2. Games and funny events
3. Canteen
4. Auditorium
5. Sick room
6. People are helping.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Basic .net,oops,cloud experience any
Round 3 - Technical 

(1 Question)

  • Q1. Advanced level plus coding
Round 4 - HR 

(1 Question)

  • Q1. Basic hr Question,salary expectation
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. What is oops concepts
  • Ans. 

    Object-oriented programming concepts that help in organizing and structuring code.

    • Encapsulation: Bundling data and methods together in a class.

    • Inheritance: Creating new classes from existing ones, inheriting their properties and behaviors.

    • Polymorphism: Objects of different classes can be treated as objects of a common superclass.

    • Abstraction: Hiding complex implementation details and providing simplified interfaces.

    • Enca...

  • Answered by AI
  • Q2. Abstraction polymorphism inheritance encapsulation
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Basic oops concept
  • Q2. SQL related questions
  • Q3. Difference between stored procedure and function
  • Ans. 

    Stored procedures are precompiled SQL queries stored in the database, while functions are reusable blocks of code that return a value.

    • Stored procedures are stored in the database and can perform multiple operations, while functions are standalone blocks of code.

    • Functions return a value, while stored procedures do not necessarily have to return a value.

    • Stored procedures can be called explicitly, while functions can be u...

  • Answered by AI
Round 2 - Behavioral 

(1 Question)

  • Q1. Performance related questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Java-8 Coding questions
  • Q2. Spring boot Questions

Artech Infosystems Interview FAQs

How many rounds are there in Artech Infosystems Senior Java Developer interview?
Artech Infosystems interview process usually has 3 rounds. The most common rounds in the Artech Infosystems interview process are Resume Shortlist, Technical and HR.

Tell us how to improve this page.

Artech Infosystems Senior Java Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

CitiusTech Interview Questions
3.4
 • 273 Interviews
IKS Health Interview Questions
3.6
 • 235 Interviews
IntouchCX Interview Questions
2.9
 • 196 Interviews
Xoriant Interview Questions
4.1
 • 183 Interviews
Landmark Group Interview Questions
4.0
 • 150 Interviews
Daikin Interview Questions
4.1
 • 150 Interviews
JCB Interview Questions
3.9
 • 132 Interviews
View all
Artech Infosystems Senior Java Developer Salary
based on 5 salaries
₹6 L/yr - ₹12 L/yr
33% less than the average Senior Java Developer Salary in India
View more details
Technical Recruiter
152 salaries
unlock blur

₹2.5 L/yr - ₹6.7 L/yr

Associate Recruiter
150 salaries
unlock blur

₹2.2 L/yr - ₹5.3 L/yr

Software Engineer
80 salaries
unlock blur

₹2.5 L/yr - ₹12.2 L/yr

Senior Technical Recruiter
78 salaries
unlock blur

₹3.3 L/yr - ₹7.2 L/yr

Senior Software Engineer
62 salaries
unlock blur

₹13.7 L/yr - ₹24.9 L/yr

Explore more salaries
Compare Artech Infosystems with

Amazon Transportation Services

4.2
Compare

IKS Health

3.6
Compare

Landmark Group

4.0
Compare

McDonald's

4.1
Compare
Did you find this page helpful?
Yes No
write
Share an Interview