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 Developer Interview Questions and Answers

Updated 16 Jun 2023

Codilar Technologies Associate Software Developer Interview Experiences

1 interview found

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

I applied via Naukri.com and was interviewed in Dec 2022. There were 4 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. Basic Technical Questions
Round 3 - Coding Test 

There will be a half an hour session coding test

Round 4 - HR 

(1 Question)

  • Q1. Just some personal questions

Interview Preparation Tips

Topics to prepare for Codilar Technologies Associate Software Developer interview:
  • HTML
  • CSS3
  • Javascript
  • PHP
  • React.Js
  • Magento

Interview questions from similar companies

I was interviewed 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
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.
Round 1 - Coding Test 

Work well on loops and you will do well enough in the interview.

Round 2 - Coding Test 

It was good

Round 3 - Technical 

(1 Question)

  • Q1. Some devs will ask questions
Round 4 - Assignment 

Salary discusiion

Interview Preparation Tips

Interview preparation tips for other job seekers - Very nice interview you will crack it
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Aug 2023. There were 3 interview rounds.

Round 1 - Coding Test 

In 1st round they will provide a pattern question which you need to solve in 1 hour

Round 2 - Coding Test 

Second round as well a coding test, which is a hard level of pattern coding test which you need to solve with in 45 minutes.

Round 3 - Technical 

(3 Questions)

  • Q1. What is arrow function, write code to create a table (table structure will be provided).
  • Ans. 

    Arrow functions are a concise way to write functions in JavaScript.

    • Arrow functions are written using the '=>' syntax.

    • They do not have their own 'this' keyword.

    • They are best suited for non-method functions.

    • Example: const add = (a, b) => a + b;

  • Answered by AI
  • Q2. Git commands, what are the steps to commit and push code in git.
  • Ans. 

    To commit and push code in Git, you need to stage changes, commit them, and then push to the remote repository.

    • Stage changes using 'git add ' or 'git add .' to add all changes

    • Commit changes using 'git commit -m 'commit message''

    • Push changes to remote repository using 'git push'

Answered by AI
  • Q3. Mathematics questions and many more.
  • Interview Preparation Tips

    Interview preparation tips for other job seekers - In last 2 years i had given lots of interviews, but the mistakes what i did that is 'Not focusing in conceptual part which are generaly asked in technical interview so it is must to prepare theoretical concepts of the programming language with coding logic.

    Skills evaluated in this interview

    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
    4
    Good
    Difficulty level
    Moderate
    Process Duration
    4-6 weeks
    Result
    Selected Selected

    I was interviewed in Jan 2025.

    Round 1 - Coding Test 

    Like pattern question

    Round 2 - Assignment 

    2 basic project for creating and make project

    Round 3 - One-on-one 

    (2 Questions)

    • Q1. How to flow your code
    • Ans. 

      Flowing code involves organizing and structuring code in a logical and readable manner.

      • Break down the code into smaller functions or modules

      • Use meaningful variable and function names

      • Follow a consistent coding style and indentation

      • Comment code to explain complex logic

      • Use version control to track changes and collaborate with others

    • Answered by AI
    • Q2. What is the unique functionality in your project.
    • Ans. 

      Our project includes a unique functionality that allows users to customize their own user interface themes.

      • Users can choose from a variety of color schemes and layouts to personalize their experience.

      • The customization options are saved for each user, so they can easily switch between themes.

      • This feature enhances user satisfaction and engagement with the software.

    • Answered by AI
    Round 4 - HR 

    (1 Question)

    • Q1. Discuss about salary, work culture, politics also
    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 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
    5
    Excellent
    Difficulty level
    Moderate
    Process Duration
    Less than 2 weeks
    Result
    Not Selected

    I applied via Company Website and was interviewed in Jan 2024. There were 3 interview rounds.

    Round 1 - Coding Test 

    They want you to solve pattern questions

    Round 2 - Coding Test 

    Same complex patterns then first round

    Round 3 - Technical 

    (1 Question)

    • Q1. Basics of html sql, linear equations

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Just focus on patterns and you are good to go
    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

    Codilar Technologies Interview FAQs

    How many rounds are there in Codilar Technologies Associate Software Developer interview?
    Codilar Technologies interview process usually has 4 rounds. The most common rounds in the Codilar Technologies interview process are Resume Shortlist, One-on-one Round and Coding Test.
    How to prepare for Codilar Technologies Associate Software Developer 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 C, CSS, HTML, Javascript and Magento.
    What are the top questions asked in Codilar Technologies Associate Software Developer interview?

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

    1. Basic Technical Questi...read more
    2. Just some personal questi...read more

    Tell us how to improve this page.

    Codilar Technologies Associate Software Developer Interview Process

    based on 1 interview

    Interview experience

    4
      
    Good
    View more

    Interview Questions from Similar Companies

    Webkul Software Interview Questions
    3.8
     • 57 Interviews
    NexTurn Interview Questions
    4.1
     • 27 Interviews
    ClaySys Interview Questions
    2.9
     • 24 Interviews
    Contus Interview Questions
    4.3
     • 22 Interviews
    Pitney Bowes Interview Questions
    3.8
     • 21 Interviews
    Knoldus Inc Interview Questions
    3.9
     • 20 Interviews
    View all
    Codilar Technologies Associate Software Developer Salary
    based on 4 salaries
    ₹2.2 L/yr - ₹4 L/yr
    44% less than the average Associate Software Developer Salary in India
    View more details

    Codilar Technologies Associate Software Developer Reviews and Ratings

    based on 8 reviews

    4.5/5

    Rating in categories

    4.5

    Skill development

    4.7

    Work-life balance

    3.6

    Salary

    4.4

    Job security

    4.8

    Company culture

    3.9

    Promotions

    4.8

    Work satisfaction

    Explore 8 Reviews and Ratings
    Software Engineer
    65 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
    14 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