Upload Button Icon Add office photos

Filter interviews by

Cai Info India Interview Questions and Answers

Updated 20 Aug 2024

Cai Info India Interview Experiences

Popular Designations

6 interviews found

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

(2 Questions)

  • Q1. How to find duplicate in any table
  • Ans. 

    To find duplicates in any table, use SQL query with GROUP BY and HAVING clause.

    • Use GROUP BY clause to group records with same values

    • Use HAVING clause to filter out groups with count greater than 1

    • Example: SELECT column_name, COUNT(*) FROM table_name GROUP BY column_name HAVING COUNT(*) > 1

  • Answered by AI
  • Q2. Ui and data policies

Skills evaluated in this interview

Servicenow Developer Interview Questions asked at other Companies

Q1. How to calculate timing of Incident which assigned to multiple group
View answer (3)

RPA Developer Interview Questions & Answers

user image Anonymous

posted on 20 Aug 2024

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

(2 Questions)

  • Q1. Tell me about Yourself?
  • Ans. 

    I am a dedicated RPA Developer with a passion for automation and problem-solving.

    • Experienced in developing RPA solutions using tools like UiPath and Automation Anywhere

    • Skilled in analyzing business processes and identifying automation opportunities

    • Strong programming skills in languages like C#, Python, and Java

    • Excellent problem-solving abilities and attention to detail

    • Effective communicator and team player

  • Answered by AI
  • Q2. Project you created?
  • Ans. 

    Developed a project for automating invoice processing using RPA technology.

    • Created a workflow to extract data from invoices using OCR technology

    • Implemented logic to validate and process invoices automatically

    • Integrated the RPA solution with existing ERP system for seamless data transfer

  • Answered by AI

RPA Developer Interview Questions asked at other Companies

Q1. 4. How can we filter 1 lakh rows in excel with specific filter
View answer (2)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Tell me about yourself as well as what projects you have worked on

Front end Developer Interview Questions asked at other Companies

Q1. Non-Decreasing Array Problem Statement Given an integer array ARR of size N, determine if it can be transformed into a non-decreasing array by modifying at most one element. An array is defined as non-decreasing if ARR[i] <= ARR[i + 1] f... read more
View answer (3)

Interview Questions & Answers

user image Anonymous

posted on 7 Feb 2024

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

I applied via Approached by Company and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Tell us about your past projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Just explain your past work experience very strongly and revise all the basics of ML, Data science , python and SQL

Cai Info India interview questions for popular designations

 RPA Developer

 (1)

 Angular Frontend Developer

 (1)

 Front end Developer

 (1)

 Servicenow Developer

 (1)

 Java Developer

 (1)

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - HR 

(1 Question)

  • Q1. What are the roles and responsibility you are having in your current company

Interview Preparation Tips

Interview preparation tips for other job seekers - the interview was one taken from CAI and one from the client side.
They were average and depends on the client and its requirment

Angular Frontend Developer Interview Questions asked at other Companies

Q1. How to implement interfaces without methods?
View answer (1)

I applied via Recruitment Consulltant and was interviewed before Mar 2021. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Core java questioins

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on core concepts and spring boot and jpa

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size N containing only integers 0 and 1, implement a function to sort this array. The solution should scan the array only once without using any additional arrays. Input: The firs... read more
View answer (4)

Jobs at Cai Info India

View all

Interview questions from similar companies

I applied via Recruitment Consultant and was interviewed in Jan 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions on C#,SQL,wpf

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident on whatever knowledge you have. Do not say things that you don't have knowledge about.

I applied via Naukri.com and was interviewed before Nov 2019. There was 1 interview round.

Interview Questionnaire 

8 Questions

  • Q1. What is linq?
  • Ans. 

    LINQ (Language Integrated Query) is a Microsoft technology that allows querying data from different sources using a common syntax.

    • LINQ provides a unified way to query data from different sources such as databases, XML documents, and collections.

    • It allows developers to write queries using a common syntax regardless of the data source.

    • LINQ queries are strongly typed and can be checked at compile time.

    • Examples of LINQ pro...

  • Answered by AI
  • Q2. What is ado. Net?
  • Ans. 

    ADO.NET is a data access technology used to connect applications to databases.

    • ADO.NET provides a set of classes to interact with databases.

    • It supports disconnected data architecture.

    • It uses Data Providers to connect to different databases.

    • It supports LINQ to SQL for querying databases.

    • Examples of Data Providers are SQL Server, Oracle, MySQL, etc.

  • Answered by AI
  • Q3. What is wpf?
  • Ans. 

    WPF stands for Windows Presentation Foundation. It is a graphical subsystem for rendering user interfaces in Windows-based applications.

    • WPF is a part of .NET Framework and provides a unified programming model for building desktop applications.

    • It uses XAML (eXtensible Application Markup Language) to define and create user interfaces.

    • WPF supports rich media, 2D and 3D graphics, animation, and data binding.

    • It allows for s...

  • Answered by AI
  • Q4. Why we use wpf instead of windows?
  • Ans. 

    WPF provides better UI design and development options than Windows Forms.

    • WPF allows for more flexible and customizable UI design.

    • WPF supports vector graphics and animations.

    • WPF has better data binding capabilities.

    • WPF is more modern and actively developed than Windows Forms.

    • WPF is better suited for creating modern desktop applications.

  • Answered by AI
  • Q5. What is procedures and triggers?
  • Ans. 

    Procedures and triggers are database objects used to automate tasks and enforce rules.

    • Procedures are a set of SQL statements that can be executed repeatedly.

    • Triggers are special types of procedures that are automatically executed in response to certain events.

    • Triggers can be used to enforce business rules, audit changes, or replicate data.

    • Procedures and triggers can be written in various programming languages such as S

  • Answered by AI
  • Q6. What is abstract class?
  • Ans. 

    An abstract class is a class that cannot be instantiated and is used as a base class for other classes.

    • An abstract class can have abstract and non-abstract methods.

    • Abstract methods have no implementation and must be implemented by the derived class.

    • An abstract class can have constructors and fields.

    • An abstract class can be used to define a common interface for a group of related classes.

    • Example: Animal is an abstract c

  • Answered by AI
  • Q7. What is encapsulation and abstraction.
  • Ans. 

    Encapsulation is hiding implementation details while abstraction is showing only necessary details.

    • Encapsulation is achieved through access modifiers like private, protected, and public.

    • Abstraction is achieved through abstract classes and interfaces.

    • Encapsulation provides data security and prevents unauthorized access.

    • Abstraction helps in reducing complexity and improves maintainability.

    • Example of encapsulation: Class ...

  • Answered by AI
  • Q8. What is singleton design pattern?
  • Ans. 

    Singleton design pattern restricts the instantiation of a class to a single instance.

    • Ensures only one instance of a class exists

    • Provides a global point of access to that instance

    • Used when only one object is needed to coordinate actions across the system

    • Example: Database connection manager

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviewer was just 3-4 yrs exp person he also dont have much more technical knowledge.

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Jul 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude and coding questions

Round 2 - One-on-one 

(1 Question)

  • Q1. Technical discussion based on resume

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic c and ds is enough to crack the interview

I applied via Campus Placement and was interviewed before May 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 
Round 2 - Group Discussion 
Pro Tip by AmbitionBox:
Don’t treat group discussions as an argument. Group discussion is about reaching a meaningful conclusion.
View all tips
Round 3 - Technical 

(1 Question)

  • Q1. The questions were mainly asked on the internship projects nd the skills you have mentioned in resume.

Interview Preparation Tips

Interview preparation tips for other job seekers - know your resume end to end. Try to be fluent while speaking in group discussion.

Cai Info India Interview FAQs

How many rounds are there in Cai Info India interview?
Cai Info India interview process usually has 1 rounds. The most common rounds in the Cai Info India interview process are One-on-one Round, Technical and HR.
How to prepare for Cai Info India 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 Cai Info India. The most common topics and skills that interviewers at Cai Info India expect are Communication Skills, SQL, Java, AWS and Python.
What are the top questions asked in Cai Info India interview?

Some of the top questions asked at the Cai Info India interview -

  1. How to find duplicate in any ta...read more
  2. core java questio...read more
  3. Ui and data polic...read more

Tell us how to improve this page.

Cai Info India Interview Process

based on 8 interviews

Interview experience

3.9
  
Good
View more

Interview Questions from Similar Companies

Synechron Interview Questions
3.5
 • 366 Interviews
Movate Interview Questions
3.3
 • 261 Interviews
VVDN Technologies Interview Questions
3.6
 • 199 Interviews
Cybage Interview Questions
3.8
 • 194 Interviews
ValueLabs Interview Questions
3.7
 • 191 Interviews
RMSI Interview Questions
3.6
 • 152 Interviews
YASH Technologies Interview Questions
3.8
 • 152 Interviews
Capita Interview Questions
3.6
 • 149 Interviews
Sopra Steria Interview Questions
3.8
 • 128 Interviews
NCR Corporation Interview Questions
3.7
 • 128 Interviews
View all

Cai Info India Reviews and Ratings

based on 47 reviews

3.7/5

Rating in categories

3.4

Skill development

3.8

Work-life balance

3.9

Salary

2.9

Job security

3.6

Company culture

3.4

Promotions

3.5

Work satisfaction

Explore 47 Reviews and Ratings
SAP ABAP Consultant

Bangalore / Bengaluru

10-15 Yrs

Not Disclosed

Software Developer

Karnataka

3-5 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
35 salaries
unlock blur

₹10 L/yr - ₹30 L/yr

Technical Lead
18 salaries
unlock blur

₹12.4 L/yr - ₹35 L/yr

Module Lead
17 salaries
unlock blur

₹13.3 L/yr - ₹30 L/yr

Software Developer
14 salaries
unlock blur

₹3.3 L/yr - ₹23.7 L/yr

Junior Software Developer
7 salaries
unlock blur

₹3.2 L/yr - ₹4 L/yr

Explore more salaries
Compare Cai Info India with

Synechron

3.5
Compare

Zensar Technologies

3.7
Compare

Capita

3.6
Compare

VVDN Technologies

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