Upload Button Icon Add office photos
Engaged Employer

i

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

Codilar Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Codilar Technologies Interview Questions and Answers

Updated 8 Jun 2025
Popular Designations

7 Interview questions

An Associate Software Engineer was asked 6mo ago
Q. What are the steps involved in JDBC?
Ans. 

JDBC (Java Database Connectivity) enables Java applications to interact with databases through a standard API.

  • 1. Load the JDBC Driver: Use Class.forName() to load the driver class. Example: Class.forName('com.mysql.cj.jdbc.Driver');

  • 2. Establish a Connection: Use DriverManager.getConnection() to connect to the database. Example: Connection conn = DriverManager.getConnection(url, user, password);

  • 3. Create a Statemen...

View all Associate Software Engineer interview questions
An Associate Software Engineer was asked 6mo ago
Q. What are servlets?
Ans. 

Servlets are Java programs that run on a server, handling client requests and generating dynamic web content.

  • Servlets are part of the Java EE (Enterprise Edition) specification.

  • They extend the capabilities of servers that host applications accessed via a request-response programming model.

  • Servlets can handle complex business logic and interact with databases.

  • Example: A servlet can process form data submitted from ...

View all Associate Software Engineer interview questions
A Senior Software Developer was asked 12mo ago
Q. What are the differences between ECMAScript 6 and ECMAScript 5?
Ans. 

ECMA6 introduced new features like arrow functions, classes, and let/const declarations compared to ECMA5.

  • ECMA6 introduced arrow functions for more concise syntax: const add = (a, b) => a + b;

  • ECMA6 added classes for object-oriented programming: class Person { constructor(name) { this.name = name; } }

  • ECMA6 introduced let/const declarations for block-scoped variables: let x = 5; const y = 10;

View all Senior Software Developer interview questions
A Senior Software Developer was asked 12mo ago
Q. How do you create forms in ReactJS?
Ans. 

Form handling in ReactJS involves creating controlled components to manage form data and handle user input.

  • Use state to manage form data and update it with user input

  • Handle form submission with onSubmit event handler

  • Use controlled components to ensure form data is synced with state

View all Senior Software Developer interview questions
An Associate Software Engineer was asked
Q. Can you describe a sorting algorithm?
Ans. 

Bubble Sort is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements and swaps them if they are in the wrong order.

  • Compare adjacent elements and swap if necessary

  • Repeat until no swaps are needed

  • Time complexity: O(n^2)

  • Space complexity: O(1)

  • Example: [5, 3, 8, 2, 1] -> [3, 5, 2, 1, 8] -> [3, 2, 1, 5, 8] -> [2, 1, 3, 5, 8] -> [1, 2, 3, 5, 8]

View all Associate Software Engineer interview questions
An Associate Software Engineer was asked
Q. Write an SQL query to find the second highest salary from an employee table.
Ans. 

SQL query to find 2nd maximum salary from employee table

  • Use ORDER BY and LIMIT to get the second highest salary

  • SELECT salary FROM employee ORDER BY salary DESC LIMIT 1, 1

View all Associate Software Engineer interview questions
An Associate Software Engineer was asked
Q. Implement a LinkedList data structure.
Ans. 

A LinkedList is a linear data structure where each element is a separate object with a reference to the next element.

  • Create a Node class with data and next pointer

  • Initialize LinkedList with a head node pointing to null

  • Implement methods like insert, delete, search, and traverse

  • Example: Node class {int data; Node next;}

  • Example: Insert method to add a new node at the end of the list

View all Associate Software Engineer interview questions
Are these interview questions helpful?

Codilar Technologies Interview Experiences

21 interviews found

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

I appeared for an interview in Jan 2025.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What are your previous work experiences?
  • Ans. 

    I have experience working in product management roles at tech companies.

    • Managed product development lifecycle from ideation to launch

    • Collaborated with cross-functional teams including engineering, design, and marketing

    • Conducted market research and analysis to inform product strategy

  • Answered by AI
  • Q2. Will try to check whether you have an Idea on what PM role is
Round 2 - One-on-one 

(1 Question)

  • Q1. Mostly Situational questions
Round 3 - Behavioral 

(2 Questions)

  • Q1. Basic questions, Situational questions
  • Q2. Some tech questions to understand the technical knowledge
Round 4 - HR 

(1 Question)

  • Q1. Salary discussions, NP discussions

Executive Assistant Interview Questions & Answers

user image Shahana Shaji

posted on 14 May 2025

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

I appeared for an interview in Apr 2025, where I was asked the following questions.

  • Q1. Why you like to work with our company
  • Ans. 

    I admire your company's commitment to innovation and excellence, which aligns with my professional values and aspirations.

    • Your company's reputation for fostering a collaborative work environment is inspiring. For example, I appreciate how you encourage team brainstorming sessions.

    • I am impressed by your commitment to community service, such as your recent health initiative that positively impacted local families.

    • The opp...

  • Answered by AI
  • Q2. Self introduction
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Feb 2025, where I was asked the following questions.

  • Q1. About my previous work experience?
  • Q2. Any major time-sensitive challenge faced ever?
  • Ans. 

    Faced a critical deadline for a project launch due to unexpected resource shortages, requiring quick decision-making and team coordination.

    • Identified resource shortages two weeks before the launch date.

    • Held an emergency meeting with the team to brainstorm solutions.

    • Reallocated tasks among team members to optimize productivity.

    • Engaged with external vendors to secure additional resources quickly.

    • Successfully launched the...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Answer the questions confidently. Both tech and non-tech skills matter.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(5 Questions)

  • Q1. Basic css,js,reactjs questions
  • Q2. Reactjs coding questions related to array, mapping
  • Q3. Difference between ecma6 and ecma5
  • Ans. 

    ECMA6 introduced new features like arrow functions, classes, and let/const declarations compared to ECMA5.

    • ECMA6 introduced arrow functions for more concise syntax: const add = (a, b) => a + b;

    • ECMA6 added classes for object-oriented programming: class Person { constructor(name) { this.name = name; } }

    • ECMA6 introduced let/const declarations for block-scoped variables: let x = 5; const y = 10;

  • Answered by AI
  • Q4. Form in reactjs
  • Ans. 

    Form handling in ReactJS involves creating controlled components to manage form data and handle user input.

    • Use state to manage form data and update it with user input

    • Handle form submission with onSubmit event handler

    • Use controlled components to ensure form data is synced with state

  • Answered by AI
  • Q5. Box-modal, arrow function, DOM

Skills evaluated in this interview

Interview Questions & Answers

user image Anonymous

posted on 16 Sep 2024

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

I applied via Naukri.com and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Tell me about yourself?
  • Ans. 

    Experienced HR professional with a passion for developing and implementing people strategies to drive business success.

    • Over 10 years of experience in HR roles, with a focus on talent acquisition, employee development, and performance management.

    • Strong track record of implementing successful diversity and inclusion initiatives to create a more inclusive workplace.

    • Skilled in building strong relationships with employees a...

  • Answered by AI
  • Q2. Explain your past job experiences?
  • Ans. 

    I have over 10 years of experience in people operations, including managing recruitment, onboarding, performance evaluations, and employee relations.

    • Managed end-to-end recruitment process for various positions within the organization

    • Developed and implemented onboarding programs to ensure smooth integration of new hires

    • Conducted performance evaluations and provided feedback to employees for continuous improvement

    • Handled...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. How good you are with handling HR operations?
  • Ans. 

    I am highly skilled in handling HR operations with experience in recruitment, onboarding, employee relations, and compliance.

    • Extensive experience in recruitment processes such as sourcing candidates, conducting interviews, and making job offers

    • Proficient in onboarding new employees and ensuring a smooth transition into the company

    • Strong knowledge of employee relations, conflict resolution, and performance management

    • Fam...

  • Answered by AI
  • Q2. How good you are in terms of employee relations?
  • Ans. 

    I excel in employee relations by fostering open communication, resolving conflicts, and promoting a positive work culture.

    • I prioritize building strong relationships with employees through regular check-ins and feedback sessions.

    • I am skilled at resolving conflicts and mediating disputes to ensure a harmonious work environment.

    • I actively promote a positive work culture by organizing team-building activities and recognizi...

  • Answered by AI
Round 3 - Aptitude Test 

Explain your previous job experience in terms of real time examples.

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice experience over all.

Legal Intern Interview Questions & Answers

user image Anonymous

posted on 22 Jan 2025

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

I appeared for an interview in Jul 2024.

Round 1 - One-on-one 

(1 Question)

  • Q1. What is your understanding of the company?
  • Ans. 

    The company is a leading law firm specializing in various legal services such as corporate law, litigation, and intellectual property.

    • Specializes in corporate law, litigation, and intellectual property

    • Provides legal services to clients in various industries

    • Has a team of experienced attorneys and legal professionals

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. What are your expectations for your work-life balance?
  • Ans. 

    I expect to maintain a healthy work-life balance by setting boundaries and prioritizing self-care.

    • Setting clear boundaries between work and personal life

    • Prioritizing self-care activities such as exercise, hobbies, and spending time with loved ones

    • Communicating openly with supervisors about workload and deadlines

    • Utilizing time management techniques to maximize productivity during work hours

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal

Round 1 - Technical 

(1 Question)

  • Q1. Linux cli things Cloud knowledge Magento
Round 2 - HR 

(1 Question)

  • Q1. Work time Package Like that work related things and company briefing
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Jul 2024.

Round 1 - Assignment 

Regarding data analysis

Round 2 - HR 

(1 Question)

  • Q1. Regarding market research
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 in Oct 2023. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. All about php basic questions
  • Q2. Echo/print diff, MVC, MYSQL
  • Q3. Mysql query question simple only
  • Q4. Logic coding question

Interview Preparation Tips

Interview preparation tips for other job seekers - Should know PHP basics strongly

Product Manager Interview Questions & Answers

user image Kanishka Burnwal

posted on 11 Dec 2023

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Job Portal and was interviewed in Nov 2023. 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 - One-on-one 

(1 Question)

  • Q1. Describe your previous work experience
Round 3 - Technical 

(1 Question)

  • Q1. Case study on Linkedin Learning

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Codilar Technologies?
Ask anonymously on communities.

Codilar Technologies Interview FAQs

How many rounds are there in Codilar Technologies interview?
Codilar Technologies interview process usually has 2-3 rounds. The most common rounds in the Codilar Technologies interview process are Technical, One-on-one Round and HR.
How to prepare for Codilar Technologies 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 Codilar Technologies. The most common topics and skills that interviewers at Codilar Technologies expect are Javascript, HTML, PHP, CSS and Magento.
What are the top questions asked in Codilar Technologies interview?

Some of the top questions asked at the Codilar Technologies interview -

  1. write SQL queries for 2nd maximum salary from employee ta...read more
  2. Are you capable of handling work pressu...read more
  3. Write down any sorting algorit...read more
How long is the Codilar Technologies interview process?

The duration of Codilar Technologies interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

4.1/5

based on 23 interview experiences

Difficulty level

Easy 26%
Moderate 74%

Duration

Less than 2 weeks 89%
2-4 weeks 11%
View more

Interview Questions from Similar Companies

NexTurn Interview Questions
4.1
 • 34 Interviews
ClaySys Interview Questions
2.9
 • 26 Interviews
Contus Interview Questions
4.2
 • 24 Interviews
Pitney Bowes Interview Questions
3.8
 • 22 Interviews
DynPro Interview Questions
3.8
 • 22 Interviews
View all

Codilar Technologies Reviews and Ratings

based on 118 reviews

4.0/5

Rating in categories

3.9

Skill development

3.9

Work-life balance

3.6

Salary

3.8

Job security

4.0

Company culture

3.7

Promotions

3.9

Work satisfaction

Explore 118 Reviews and Ratings
Senior Frontend Developer

Bangalore / Bengaluru

7-12 Yrs

₹ 9.5-19 LPA

Document Cloud Project Manager

Noida

9-14 Yrs

₹ 16-27.5 LPA

AEM Forms

Mumbai

5-10 Yrs

₹ 8-18 LPA

Explore more jobs
Software Engineer
66 salaries
unlock blur

₹3.5 L/yr - ₹11.9 L/yr

Associate Software Engineer
50 salaries
unlock blur

₹1.2 L/yr - ₹4.8 L/yr

Senior Software Engineer
21 salaries
unlock blur

₹12.3 L/yr - ₹32 L/yr

Software Developer
18 salaries
unlock blur

₹3.6 L/yr - ₹10 L/yr

Senior Test Engineer
13 salaries
unlock blur

₹6.5 L/yr - ₹15.4 L/yr

Explore more salaries
Compare Codilar Technologies with

Accel Frontline

4.1
Compare

Apmosys Technologies

3.4
Compare

Pitney Bowes

3.8
Compare

DynPro

3.8
Compare
write
Share an Interview