Premium Employer

i

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

Intech Creative Services Verified Tick

Compare button icon Compare button icon Compare
3.9

based on 78 Reviews

Filter interviews by

Intech Creative Services Java Developer Interview Questions and Answers

Updated 15 Jan 2024

Intech Creative Services Java Developer Interview Experiences

2 interviews found

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

(1 Question)

  • Q1. What does @SpringBoot Application internally do?
  • Ans. 

    Spring Boot Application internally configures and initializes the Spring framework for easy development and deployment.

    • Spring Boot Application sets up the Spring framework with default configurations.

    • It auto-configures various components like database connections, web servers, etc.

    • It provides a simplified way to build and run standalone Spring applications.

    • It includes an embedded server, eliminating the need for extern...

  • Answered by AI
Round 2 - Mangerial round 

(1 Question)

  • Q1. Domain related questions

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in May 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Spring boot
  • Q2. Core java

Interview Preparation Tips

Interview preparation tips for other job seekers - It was nice experience, there is only one round.

Java Developer Interview Questions Asked at Other Companies

asked in Deloitte
Q1. Sort 0 1You have been given an integer array/list(ARR) of size N ... read more
Q2. Parent class has run() and walk() . Parent run() - calls walk() C ... read more
asked in LTIMindtree
Q3. Longest Harmonious SubsequenceYou are given an array ‘ARR’ of 'N' ... read more
asked in Deloitte
Q4. Convert Bst To The Greater Sum TreeYou have been given a Binary S ... read more
Q5. 2. What will happen if hashcode only returns a constant? How will ... read more

Interview questions from similar companies

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

(2 Questions)

  • Q1. What is kafka? how to implement it
  • Ans. 

    Kafka is a distributed streaming platform used for building real-time data pipelines and streaming applications.

    • Kafka is designed to handle high-throughput, fault-tolerant, and scalable real-time data streams.

    • It uses topics to categorize data streams, producers publish messages to topics, and consumers subscribe to topics to process messages.

    • Kafka can be implemented using Kafka APIs in Java, Scala, or other programming...

  • Answered by AI
  • Q2. What is Oauth and what is use of it?
  • Ans. 

    OAuth is an open standard for access delegation, commonly used as a way for Internet users to grant websites or applications access to their information on other websites but without giving them the passwords.

    • OAuth allows users to grant access to their information on one site to another site without sharing their credentials.

    • It is commonly used for authentication and authorization in APIs.

    • OAuth uses tokens to access re...

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected

I applied via Naukri.com

Round 1 - Technical 

(1 Question)

  • Q1. Data structures Core java Spring boot Hibernate

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice company

I applied via Naukri.com and was interviewed in Jun 2022. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Oops, Interfaces, Exception Handling, Collections, SQL, etc
  • Q2. Coding Question - Find 2nd largest element in array with least time complexity
  • Ans. 

    Find the 2nd largest element in an array with the least time complexity.

    • Sort the array in descending order and return the element at index 1.

    • Initialize two variables to keep track of the largest and second largest elements.

    • Iterate through the array and update the variables accordingly.

    • Return the second largest element.

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

(2 Questions)

  • Q1. Coding Question - print * matrix
  • Q2. HashMap, HashSet, Spring, Spring Framework, Microservices, etc
Round 3 - Behavioral 

(2 Questions)

  • Q1. Basic Details, CTC Info
  • Q2. Tech Stack, Challenges Faced in career

Interview Preparation Tips

Interview preparation tips for other job seekers - There were total 3 round, L1, L2 and Manager round.
Question were easy to moderate level.
Answered all questions perfectly, still after 3rd round, they rejected me without any reason.
After clearing Technical rounds, They will ask you that you have to work in mandatory Night Shifts.

Skills evaluated in this interview

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

I applied via Job Portal and was interviewed in Sep 2024. There were 4 interview rounds.

Round 1 - Coding Test 

2 DSA question was asked

Round 2 - Aptitude Test 

40 questions in 20 minutes

Round 3 - Technical 

(2 Questions)

  • Q1. Stones games 2 leetcode
  • Q2. Permutations of array
  • Ans. 

    Generate all possible permutations of an array of strings

    • Use recursion to generate permutations

    • Swap elements to create different permutations

    • Base case: when array size is 1, return array as permutation

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. Project discussion

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Not Selected

I applied via Campus Placement

Round 1 - Aptitude Test 

Common topics like sql and 30% aptitude problem

Round 2 - Technical 

(2 Questions)

  • Q1. All about resume
  • Q2. About project and area of interest
Round 3 - One-on-one 

(1 Question)

  • Q1. Application building
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Oct 2023.

Round 1 - Technical 

(1 Question)

  • Q1. Difference between list and map
  • Ans. 

    List is an ordered collection of elements, while map is a collection of key-value pairs.

    • List maintains the order of elements, while map does not guarantee any specific order.

    • List allows duplicate elements, while map does not allow duplicate keys.

    • In a list, elements are accessed by their index, while in a map, elements are accessed by their keys.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Lookup vs graphlookup in mongodb
  • Ans. 

    Lookup is used to perform a left outer join in MongoDB, while graphlookup is used to perform recursive graph traversal.

    • Lookup is used to perform a left outer join between two collections in MongoDB.

    • Graphlookup is used to perform recursive graph traversal in a collection that contains graph data.

    • Lookup can only perform a single level join, while graphlookup can perform multiple levels of traversal.

    • Lookup is faster than

  • Answered by AI
  • Q2. Count frequency of each character in string
  • Ans. 

    Use a hashmap to count the frequency of each character in a string.

    • Create a hashmap to store characters as keys and their frequencies as values.

    • Iterate through the string and update the hashmap accordingly.

    • Return the hashmap with character frequencies.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Create a rest api all the way from controller to repository using NOTEPAD
  • Ans. 

    Creating a REST API from controller to repository using NOTEPAD

    • Create a controller class with mapping annotations for REST endpoints

    • Implement service layer to handle business logic and interact with repository

    • Define repository interface with methods for data access operations

    • Use Spring Boot for easy setup and configuration

    • Test API endpoints using tools like Postman

  • Answered by AI
  • Q2. Couldnt write custom mongodb query at repository layer in notepad which rejected my candidature.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Job Portal

Round 1 - Coding Test 

60mintues DSA level coding exam

Intech Creative Services Interview FAQs

How many rounds are there in Intech Creative Services Java Developer interview?
Intech Creative Services interview process usually has 2 rounds. The most common rounds in the Intech Creative Services interview process are Technical.
How to prepare for Intech Creative Services Java Developer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Intech Creative Services. The most common topics and skills that interviewers at Intech Creative Services expect are Hibernate, Spring, Core Java, Java and Bootstrap.
What are the top questions asked in Intech Creative Services Java Developer interview?

Some of the top questions asked at the Intech Creative Services Java Developer interview -

  1. What does @SpringBoot Application internally ...read more
  2. Domain related questi...read more
  3. Spring b...read more

Tell us how to improve this page.

Join Intech Creative Services Empowering Enterprise Software Globally

Interview Questions from Similar Companies

Magic Edtech Interview Questions
3.1
 • 48 Interviews
Affine Interview Questions
3.5
 • 48 Interviews
IT By Design Interview Questions
4.0
 • 36 Interviews
ConsultAdd Interview Questions
3.7
 • 36 Interviews
Systems Plus Interview Questions
4.3
 • 28 Interviews
DISYS Interview Questions
3.0
 • 27 Interviews
VDart Interview Questions
4.5
 • 26 Interviews
View all
Intech Creative Services Java Developer Salary
based on 8 salaries
₹3.3 L/yr - ₹10.3 L/yr
At par with the average Java Developer Salary in India
View more details

Intech Creative Services Java Developer Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

3.0

Skill development

3.0

Work-life balance

2.0

Salary

1.0

Job security

1.0

Company culture

2.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
Software Developer
68 salaries
unlock blur

₹3.4 L/yr - ₹14 L/yr

Senior Software Developer
39 salaries
unlock blur

₹8 L/yr - ₹25 L/yr

Senior Software Engineer
29 salaries
unlock blur

₹10 L/yr - ₹26 L/yr

Business Analyst
25 salaries
unlock blur

₹5.5 L/yr - ₹16 L/yr

Software Engineer
22 salaries
unlock blur

₹3.5 L/yr - ₹13.6 L/yr

Explore more salaries
Compare Intech Creative Services with

Wizcraft International Entertainment

4.2
Compare

Fountainhead

3.8
Compare

Percept

3.2
Compare

Cineyug

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