Premium Employer

i

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

IntouchCX Verified Tick

Compare button icon Compare button icon Compare
2.9

based on 1.8k Reviews

Filter interviews by

IntouchCX Java Developer Interview Questions and Answers

Updated 14 Jun 2024

IntouchCX Java Developer Interview Experiences

1 interview found

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

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about your self
  • Q2. Tell me about latest project

Interview questions from similar companies

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

(1 Question)

  • Q1. Write a query for inner join
  • Ans. 

    An inner join query combines rows from two or more tables based on a related column between them.

    • Use the SELECT statement to specify the columns you want to retrieve

    • Use the FROM clause to specify the tables you want to join

    • Use the INNER JOIN keyword to perform an inner join based on a common column

  • Answered by AI

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed before Jul 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

It was good and mostly apptitude

Round 2 - Coding Test 

Two questions needs to be solved

Round 3 - Technical 

(2 Questions)

  • Q1. About machine learning algorithms
  • Q2. Describe daTa analytics tools
  • Ans. 

    Data analytics tools are software programs used to analyze and visualize large sets of data to extract valuable insights.

    • Data visualization tools like Tableau and Power BI help in creating interactive charts and graphs.

    • Statistical analysis tools like R and Python with libraries like Pandas and NumPy are used for advanced data analysis.

    • Machine learning platforms like TensorFlow and scikit-learn are used for predictive a...

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Self intro about me
  • Q2. Explanation about their company

Skills evaluated in this interview

I applied via Walk-in

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 

General knowledge ,appitude

Interview Preparation Tips

Interview preparation tips for other job seekers - We write the code of the java programming
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected
Round 1 - Technical 

(5 Questions)

  • Q1. The candidate should possess a strong knowledge of programming skills.
  • Q2. Sting manpulation
  • Q3. Object oriented programming
  • Q4. Exception handling
  • Q5. Looping statement
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is Rabbit MQ?
  • Ans. 

    RabbitMQ is a message broker software that implements the Advanced Message Queuing Protocol (AMQP).

    • RabbitMQ allows different software systems to communicate by sending and receiving messages.

    • It can be used to decouple different parts of a system, making it more scalable and resilient.

    • RabbitMQ supports multiple messaging protocols, including AMQP, MQTT, and STOMP.

  • Answered by AI
  • Q2. What is LINQ in .net?
  • Ans. 

    LINQ (Language Integrated Query) is a feature in .NET that allows querying data from different data sources using a uniform syntax.

    • LINQ allows querying data from collections, databases, XML, and more.

    • It provides a set of standard query operators like Where, Select, OrderBy, etc.

    • LINQ queries are written in C# or VB.NET and are type-safe.

    • Example: var result = from num in numbers where num % 2 == 0 select num;

  • Answered by AI

Skills evaluated in this interview

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

I was interviewed in Aug 2023.

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 - Aptitude Test 

10 day,Numbers,Alebra

Round 3 - Technical 

(5 Questions)

  • Q1. Oop,C++.html,css,javascrept
  • Q2. What is order list
  • Ans. 

    An ordered collection of items, typically displayed in a numbered list.

    • Order list is used to display items in a specific sequence.

    • Items in an order list are typically numbered or marked with bullets.

    • Example:

      1. Item 1
      2. Item 2

  • Answered by AI
  • Q3. What is javascript
  • Ans. 

    JavaScript is a high-level, interpreted programming language used for creating interactive websites.

    • JavaScript is commonly used for client-side web development.

    • It can be used to add interactivity to websites, such as form validation or dynamic content.

    • JavaScript can also be used for server-side development with Node.js.

    • Examples of JavaScript frameworks/libraries include React, Angular, and Vue.

  • Answered by AI
  • Q4. What is ===operator
  • Ans. 

    === operator is a strict equality operator in JavaScript that checks if two values are equal in both value and type.

    • === operator returns true if both operands are of the same type and have the same value

    • It does not perform type coercion, unlike the == operator

    • Example: 5 === '5' will return false because the operands are of different types

  • Answered by AI
  • Q5. What is the main features of oop
  • Ans. 

    Main features of OOP include encapsulation, inheritance, and polymorphism.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (class).

    • Inheritance: Ability to create new classes based on existing classes, inheriting their attributes and methods.

    • Polymorphism: Ability for objects of different classes to respond to the same message in different ways.

    • Example: Encapsulation - a class 'Car' wi...

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Basic Java concepts - Oops, collection
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Mar 2023. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(3 Questions)

  • Q1. He basically focused on java 8 features. I answered all of them but surprised with the negative response. Java 8 features Design patterns
  • Q2. Java 8 features
  • Q3. Design patterns in java
  • Ans. 

    Design patterns are reusable solutions to common software problems.

    • Design patterns help in creating flexible, reusable, and maintainable code.

    • Some commonly used design patterns in Java are Singleton, Factory, Observer, and Decorator.

    • Singleton pattern ensures that only one instance of a class is created.

    • Factory pattern provides an interface for creating objects in a superclass, but allows subclasses to alter the type of...

  • Answered by AI

Skills evaluated in this interview

I was interviewed in May 2022.

Round 1 - Coding Test 

Coding interviews test candidates' technical knowledge, coding ability, problem solving skills, and creativity, typically on a whiteboard.

Round 2 - Assignment 

A detail assignment is the temporary placement of a career employee in another established position that is vacant or from which the incumbent is absent.

Round 3 - Aptitude Test 

An aptitude test is a way for employers to assess a candidate's abilities through a variety of different testing formats. Aptitude tests will test your ability to perform tasks and react to situations at work. This includes problem-solving, prioritisation and numerical skills, amongst other things.

Round 4 - Technical 

(3 Questions)

  • Q1. Consider the tools and skills necessary for the role. Think about the basic requirements of the job. ...
  • Q2. Study helpful books and digital publications. .
  • Ans. For books about studying productively, I think you'd be hard-pressed to find better than Eat That Frog – For Students by Brian Tracy and Anna Leinberger, The Productivity Project and Hyperfocus by Chris Bailey, The Procrastination Equation by Dr Piers Steel and Deep Work by Cal Newport.
  • Answered Anonymously
  • Q3. Take the time you need
  • Ans. Said to mean that you can spend as much time as you need in doing something, or that you should slow down
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - tips for a successful job interview
1) Be punctual at your interview. It is mandatory to be on time at a job interview. ...
2) Do your research on the company. ...
3) Don't forget about nonverbal communication. ...
4) Be polite with everyone. ...
5) Be prepared for your interview.

IntouchCX Interview FAQs

How many rounds are there in IntouchCX Java Developer interview?
IntouchCX interview process usually has 1 rounds. The most common rounds in the IntouchCX interview process are One-on-one Round.

Tell us how to improve this page.

IntouchCX Java Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Join IntouchCX We are IntouchCX. Where innovation meets industry.
IntouchCX Java Developer Salary
based on 4 salaries
₹2 L/yr - ₹5 L/yr
45% less than the average Java Developer Salary in India
View more details
E Support Officer
1.3k salaries
unlock blur

₹1.5 L/yr - ₹4.5 L/yr

Senior E Support Officer
610 salaries
unlock blur

₹1.9 L/yr - ₹5 L/yr

Senior Consultant
311 salaries
unlock blur

₹3 L/yr - ₹9.2 L/yr

Quality Analyst
259 salaries
unlock blur

₹1.4 L/yr - ₹5.1 L/yr

Customer Support Executive
233 salaries
unlock blur

₹1.5 L/yr - ₹4.8 L/yr

Explore more salaries
Compare IntouchCX with

Concentrix Corporation

3.8
Compare

Teleperformance

3.9
Compare

Foundever

3.6
Compare

Wipro

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