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

Clear (1)

Codilar Technologies Associate Software Engineer Interview Questions and Answers

Updated 2 Dec 2024

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 was interviewed 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
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed 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 Resume 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

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
asked in Gainsight
Q2. Connecting Ropes with Minimum Cost You are given 'N' ropes, each ... read more
Q3. Intersection of Two Arrays II Given two integer arrays ARR1 and A ... read more
asked in Clarivate
Q4. Best Time to Buy and Sell Stock II Problem Statement Given the st ... read more
Q5. Ninja and Alternating Largest Problem Statement Ninja is given a ... read more
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
  • Q2. What are the steps in JDBC

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn Basics
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

Codilar Technologies interview questions for designations

 Associate Software Developer

 (1)

 Software Developer

 (3)

 Senior Software Developer

 (1)

 Associate Product Manager

 (1)

 Support Engineer

 (1)

 PHP Developer

 (1)

Interview questions from similar companies

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

There were 45 questions in total: 20 questions on aptitude and 25 questions on basic C, C++, and Java.

Round 2 - One-on-one 

(1 Question)

  • Q1. TWO person was taking interview , one is HR AND TECHNICAL PERSON , THEY ASK ME TELL ME ABOUT YOUR SELF, WHAT ARE THE QUALITY OF TEAM LEADER, ARE YOU COMFORTABLE IF WE HIRE YOU AS A TESTER AND TECHNICAL ...
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral

Round 1 - Coding Test 

Print a specific pattern using any programming language.

Round 2 - One-on-one 

(3 Questions)

  • Q1. What is a class in Object-Oriented Programming (OOP)?
  • Ans. 

    A class in OOP is a blueprint for creating objects, defining their properties and behaviors.

    • Classes are templates for creating objects in OOP

    • They define the properties (attributes) and behaviors (methods) of objects

    • Objects are instances of classes, each with its own unique data

    • Inheritance allows classes to inherit properties and behaviors from other classes

    • Encapsulation ensures that the data is hidden and can only be a...

  • Answered by AI
  • Q2. What is the difference between an abstract class and an interface?
  • Ans. 

    Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • Abstract class can have constructors, fields, and methods, while interface cannot have any implementation.

    • A class can only extend one abstract class, but can implement multiple interfaces.

    • Abstract classes are used to define common characteristics of subclasses, while interfaces are used to define contracts for...

  • Answered by AI
  • Q3. What is joining and creating an inner join query?
  • Ans. 

    Joining is combining data from two or more tables based on a related column, while an inner join query retrieves only the matching records.

    • Joining is used to combine data from multiple tables in a database.

    • Inner join query retrieves only the records that have matching values in both tables.

    • Syntax for inner join: SELECT columns FROM table1 INNER JOIN table2 ON table1.column = table2.column;

    • Example: SELECT orders.order_i...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Webkul Software Associate Software Engineer interview:
  • OOPS
  • Baisc Of any of Programing
  • MySQL
  • joins
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Oct 2022. There were 2 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 Resume tips
Round 2 - Technical 

(3 Questions)

  • Q1. Some coding based questions.
  • Q2. Some technical question related theory.
  • Q3. Some pattern based questions.

Interview Preparation Tips

Topics to prepare for Webkul Software Associate Software Engineer interview:
  • OOPS
  • Design Patterns
  • Strings
  • Arrays
Interview preparation tips for other job seekers - Keed learning on the related tech and practice the coding questions.
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

It's online coding test

Round 2 - One-on-one 

(1 Question)

  • Q1. What is JS and how it works
  • Ans. 

    JS stands for JavaScript, a high-level programming language used for creating interactive websites and web applications.

    • JS is a client-side scripting language that runs in the browser.

    • It is used to add interactivity, animations, and dynamic content to websites.

    • JS can be used alongside HTML and CSS to create responsive and user-friendly web applications.

    • Example: document.getElementById('demo').innerHTML = 'Hello World';

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please do not join this company.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Oct 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

It was online 60min test.

Round 2 - Aptitude Test 

It was offline 30 min test.

Round 3 - Technical 

(2 Questions)

  • Q1. Oops,dbms,css,html,dsa,java.
  • Q2. It was very friendly .

Interview Preparation Tips

Topics to prepare for Apmosys Technologies Software Developer interview:
  • Java
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - Technical 

(6 Questions)

  • Q1. What are the 4 principles of oops?
  • Ans. 

    The 4 principles of OOP are Inheritance, Encapsulation, Abstraction, and Polymorphism.

    • Inheritance allows a class to inherit properties and behavior from another class.

    • Encapsulation restricts access to certain components within a class, protecting the data.

    • Abstraction hides complex implementation details and only shows the necessary features.

    • Polymorphism allows objects to be treated as instances of their parent class.

  • Answered by AI
  • Q2. What is the difference between string buffer and string builder?
  • Ans. 

    String buffer is synchronized and thread-safe, while string builder is not synchronized and faster.

    • String buffer is synchronized, making it thread-safe for use in multi-threaded environments.

    • String builder is not synchronized, providing better performance in single-threaded applications.

    • String builder is faster than string buffer due to lack of synchronization overhead.

    • Example: StringBuffer sb = new StringBuffer(); Str

  • Answered by AI
  • Q3. Why strings are immutable?
  • Ans. 

    Strings are immutable in order to ensure data integrity and security.

    • Immutable strings prevent accidental data modification, ensuring data integrity.

    • Immutable strings enhance security by preventing unauthorized access or tampering.

    • Immutable strings allow for more efficient memory management and optimization.

    • Example: 'Hello' cannot be changed to 'Hella' directly, a new string must be created.

  • Answered by AI
  • Q4. What are the different types of exception in java?
  • Ans. 

    There are two types of exceptions in Java: checked exceptions and unchecked exceptions.

    • Checked exceptions are checked at compile time and must be handled using try-catch or throws keyword.

    • Unchecked exceptions are not checked at compile time and include RuntimeException and its subclasses.

    • Examples of checked exceptions include IOException, SQLException, and ClassNotFoundException.

    • Examples of unchecked exceptions include...

  • Answered by AI
  • Q5. Explain linear search algorithm.
  • Ans. 

    Linear search is a simple searching algorithm that sequentially checks each element in a list until a match is found.

    • Iterate through each element in the list

    • Compare the current element with the target value

    • Return the index if a match is found, otherwise return -1

  • Answered by AI
  • Q6. Difference between JDK jvm and jre
  • Ans. 

    JDK includes JRE and development tools, while JRE includes only the Java Runtime Environment.

    • JDK stands for Java Development Kit, which includes JRE and development tools like compilers and debuggers.

    • JRE stands for Java Runtime Environment, which includes JVM and libraries necessary to run Java applications.

    • JVM stands for Java Virtual Machine, which is responsible for executing Java bytecode.

    • JDK is used for developing ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just prepare all the skills which you are mentioned in your cv.

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

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. write SQL queries for 2nd maximum salary from employee ta...read more
  2. Implement LinkedList Data Structur...read more
  3. Write down any sorting algorit...read more

Recently Viewed

SALARIES

Nuclear Power Corporation of India

SALARIES

Nuclear Power Corporation of India

SALARIES

Nuclear Power Corporation of India

No Salaries

SALARIES

Nuclear Power Corporation of India

SALARIES

Nuclear Power Corporation of India

INTERVIEWS

Codilar Technologies

No Interviews

SALARIES

Nuclear Power Corporation of India

REVIEWS

Nuclear Power Corporation of India

No Reviews

INTERVIEWS

Škoda Auto Volkswagen

No Interviews

SALARIES

Nuclear Power Corporation of India

Tell us how to improve this page.

Codilar Technologies Associate Software Engineer Interview Process

based on 4 interviews

Interview experience

3.5
  
Good
View more

Interview Questions from Similar Companies

Webkul Software Interview Questions
3.8
 • 54 Interviews
NexTurn Interview Questions
4.2
 • 26 Interviews
ClaySys Interview Questions
2.9
 • 24 Interviews
Contus Interview Questions
4.3
 • 21 Interviews
Knoldus Inc Interview Questions
4.0
 • 20 Interviews
DynPro Interview Questions
3.8
 • 18 Interviews
View all
Codilar Technologies Associate Software Engineer Salary
based on 47 salaries
₹1.2 L/yr - ₹4 L/yr
58% 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.8/5

Rating in categories

3.4

Skill development

3.4

Work-life balance

2.8

Salary

3.2

Job security

3.8

Company culture

3.1

Promotions

3.7

Work satisfaction

Explore 12 Reviews and Ratings
Software Engineer
66 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Software Engineer
47 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
19 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
15 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Softwaretest Engineer
11 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Codilar Technologies with

DCKAP

4.8
Compare

Vinculum Solutions

3.0
Compare

i95Dev

3.0
Compare

Ranosys Technologies

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