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 Associate Software Engineer Interview Questions and Answers

Updated 2 Dec 2024

5 Interview questions

An Associate Software Engineer was asked 8mo 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...

An Associate Software Engineer was asked 8mo 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 ...

Associate Software Engineer Interview Questions Asked at Other Companies

asked in Accenture
Q1. Triplets with Given Sum Problem Given an array or list ARR consis ... read more
Q2. Intersection of Two Arrays II Given two integer arrays ARR1 and A ... read more
asked in Accenture
Q3. Write a function to determine if a given string is a valid passwo ... read more
asked in Clarivate
Q4. Best Time to Buy and Sell Stock II Problem Statement Given the st ... read more
asked in CGI Group
Q5. Frog Jump Problem Statement A frog is positioned on the first ste ... read more
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

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

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]

Codilar Technologies Associate Software Engineer Interview Experiences

4 interviews found

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

I appeared for an interview before Aug 2023.

Round 1 - Coding Test 

Dsa question like pattern or any other basic dsa

Round 2 - One-on-one 

(2 Questions)

  • Q1. Based on js in depth knowledge
  • Q2. Then react better if we know class components

Interview Preparation Tips

Topics to prepare for Codilar Technologies Associate Software Engineer interview:
  • Javascript
  • React class components
  • Magento
  • PHP
Interview preparation tips for other job seekers - If you apply here be good in js and react class components

Codilar Technologies HR Interview Questions

16 questions and answers

Q. What job would you consider to be your most comfortable?
Q. What topics were discussed during the interview that particularly intereste ... read more
Q. Tell me something about yourself that is not in your CV.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Apr 2023.

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 

Numeric ability test, Verbal ability test, Reasoning ability test.

Round 3 - Coding Test 

To clear coding test, just need to solve 1 question out of 5, difficulty level of question - most of the time appear as (3 easy 2 medium) .

Round 4 - Technical 

(5 Questions)

  • Q1. Question will be asked 100% from your resume. whatever skills or academic knowledge you added in your resume.
  • Q2. Tell me something about yourself?
  • Q3. Implement 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

  • Answered by AI
  • Q4. Write down any 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]

  • Answered by AI
  • Q5. Write SQL queries for 2nd maximum salary from 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

  • Answered by AI

Skills evaluated in this interview

Are these interview questions helpful?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Medium level stars pattern for programming

Round 2 - Technical 

(2 Questions)

  • Q1. What is 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 a web...

  • Answered by AI
  • Q2. What are the steps in JDBC

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn Basics

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Sep 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Simple js questions
  • Q2. Some tricky questions on js and basics

Top trending discussions

View All
Interview Hub
1w (edited)
anshitanegi
·
ex -
Planet Spark
When HR’s Chinese English made me drop the interview!
So, I talked to the HR yesterday about the interview. I asked Please send me the location But their English… bro I was shocked! It was like talking to someone jisne english nahi kuch ar hi seekh liya ho, if the HR’s English is this I can only imagine the rest of the company I decided to drop the interview with this chinese english😶‍🌫️
FeedCard Image
Got a question about Codilar Technologies?
Ask anonymously on communities.

Interview questions from similar companies

I appeared for an interview before May 2016.

Interview Preparation Tips

Round: Test
Experience: The first round had two programming questions and one question of database concepts.
Duration: 1 hour
Total Questions: 3

Round: Technical Interview
Experience: In the first technical interview, I was asked basic questions about the domain and my resume. There was also a lot of emphasis on problem solving abilities since I was asked to solve some puzzles.

Round: Technical Interview
Experience: The second technical interview was a written round where I was asked to code some searching / sorting variants , to test my ability to write quality code.

Round: Technical Interview
Experience: The last and the final round was probably the toughest and I was asked to design databases, with some constraints. I was given ample time to do it and it did take a lot of time. After that, we had some interesting questions about data structures and trees and that was it.

College Name: RNSIT, Bangalore

I applied via Naukri.com and was interviewed in Oct 2018. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Asked me to draw spring mvc architecture and about collection framework.
  • Q2. Asked me to write the logic for pattern.
  • Ans. 

    This question involves creating a specific pattern using loops and conditional statements in programming.

    • Identify the desired pattern (e.g., asterisks, numbers).

    • Use nested loops: outer loop for rows, inner loop for columns.

    • Control the output format with conditional statements.

    • Example: For a pyramid pattern, increase spaces and asterisks in each row.

  • Answered by AI
  • Q3. Asked me on core java.

Interview Preparation Tips

General Tips: be thorough with the core java and good to have knowledge on spring mvc
Skills: Communication
Duration: <1 week

I applied via Referral and was interviewed before Jan 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Which technology are you using, is this latest?
  • Ans. 

    We are using a variety of technologies, including some of the latest ones.

    • We are using React for our front-end development.

    • We are also using Node.js for our back-end development.

    • We are using Docker for containerization.

    • We are using Kubernetes for orchestration.

    • We are using AWS for cloud hosting.

    • We are constantly evaluating new technologies to see if they can improve our development process.

  • Answered by AI
  • Q2. If not then which technology can we use instead of this?
  • Ans. 

    It depends on the specific requirements and constraints of the project.

    • Consider the project's goals and objectives

    • Evaluate the available technologies and their capabilities

    • Assess the project's budget and timeline

    • Consult with stakeholders and experts in the field

    • Examples: React vs Angular, MySQL vs MongoDB, Java vs Python

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Hi,
Listen carefully and speak fluently.

I applied via Recruitment Consultant and was interviewed before Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Python file handling, input,output, in a file, Sql joins, list sort in python, basics of GIS, Web service how to test

Interview Preparation Tips

Interview preparation tips for other job seekers - This is hust basics not deep dive, strog ur basics to crack

Interview Questionnaire 

1 Question

  • Q1. Questions on the concept of oops and SQL

Interview Questionnaire 

3 Questions

  • Q1. OOPS concepts
  • Q2. SQL questions
  • Q3. Write a program..

Skills evaluated in this interview

Codilar Technologies Interview FAQs

How many rounds are there in Codilar Technologies Associate Software Engineer interview?
Codilar Technologies interview process usually has 2-3 rounds. The most common rounds in the Codilar Technologies interview process are Coding Test, Technical and Resume Shortlist.
How to prepare for Codilar Technologies Associate Software Engineer 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 CSS, HTML, PHP, Android and C.
What are the top questions asked in Codilar Technologies Associate Software Engineer interview?

Some of the top questions asked at the Codilar Technologies Associate Software Engineer interview -

  1. question will be asked 100% from your resume. whatever skills or academic kno...read more
  2. write SQL queries for 2nd maximum salary from employee ta...read more
  3. Write down any sorting algorit...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.5/5

based on 4 interview experiences

Difficulty level

Easy 25%
Moderate 75%

Duration

Less than 2 weeks 50%
2-4 weeks 50%
View more
Codilar Technologies Associate Software Engineer Salary
based on 42 salaries
₹1.7 L/yr - ₹4.7 L/yr
53% less than the average Associate Software Engineer Salary in India
View more details

Codilar Technologies Associate Software Engineer Reviews and Ratings

based on 12 reviews

3.6/5

Rating in categories

3.1

Skill development

3.2

Work-life balance

2.6

Salary

2.9

Job security

3.6

Company culture

3.0

Promotions

3.4

Work satisfaction

Explore 12 Reviews and Ratings
Software Engineer
64 salaries
unlock blur

₹4.8 L/yr - ₹11.4 L/yr

Associate Software Engineer
42 salaries
unlock blur

₹1.6 L/yr - ₹4.7 L/yr

Senior Software Engineer
28 salaries
unlock blur

₹16 L/yr - ₹24 L/yr

Software Developer
18 salaries
unlock blur

₹3.3 L/yr - ₹8.2 L/yr

Senior Test Engineer
13 salaries
unlock blur

₹8.1 L/yr - ₹13.5 L/yr

Explore more salaries
Compare Codilar Technologies with

Accel Frontline

4.0
Compare

Apmosys Technologies

3.2
Compare

Pitney Bowes

3.7
Compare

DynPro

3.8
Compare
write
Share an Interview