Upload Button Icon Add office photos
Engaged Employer

i

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

Codalien Technologies Verified Tick

Compare button icon Compare button icon Compare
4.5

based on 16 Reviews

Filter interviews by

Codalien Technologies Software Engineer Interview Questions, Process, and Tips

Updated 4 May 2022

Top Codalien Technologies Software Engineer Interview Questions and Answers

  • Q1. Shortest substring with all characters You have been given a string 'S' which only consists of lowercase English-Alphabet letters. Your task is to find the shortest(minim ...read more
  • Q2. Reverse the String You are given a string 'STR'. The string contains [a-z] [A-Z] [0-9] [special characters]. You have to find the reverse of the string. For example: If t ...read more
  • Q3. Construct complete Binary Tree You are given an array/list 'ARR' storing values of 'N' nodes of a binary tree. Your task is to construct a complete binary tree from the g ...read more
View all 9 questions

Codalien Technologies Software Engineer Interview Experiences

2 interviews found

I applied via Approached by Company and was interviewed in Apr 2022. There were 3 interview rounds.

Round 1 - Coding Test 

Shared a written coding test.

Round 2 - One-on-one 

(1 Question)

  • Q1. First round to ask things from resume and basic questions on Java and database.
Round 3 - Technical 

(2 Questions)

  • Q1. Logical problems solving round.
  • Q2. Build an authentication system for bank.
  • Ans. 

    An authentication system for a bank should have multiple layers of security to protect sensitive information.

    • Use multi-factor authentication (MFA) to verify user identity

    • Implement encryption to protect data in transit and at rest

    • Use secure protocols such as HTTPS and TLS

    • Implement access controls to limit user permissions

    • Regularly update and patch the system to address vulnerabilities

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company for career growth.

Software Engineer Interview Questions & Answers

user image CodingNinjas

posted on 15 Sep 2021

I was interviewed in Oct 2020.

Round 1 - Telephonic Call 

(1 Question)

Round duration - 20 minutes
Round difficulty - Easy

Around 8 pm I got the call from Interviewer. The interview was friendly, Only one problem was asked then general discussion.

  • Q1. Swap Numbers

    Swapping 2 numbers without any 3rd variable.

  • Ans. 

    Tip 1 : x = x + y
    Tip 2 : y= x - y
    Tip 3 : x =x - y

  • Answered by CodingNinjas
Round 2 - Coding Test 

(5 Questions)

Round duration - 90 minutes
Round difficulty - Hard

It was given the flexibility of 1 day to take as per our convenience. The Environment of Coderbyte was good. Ten MCQs and five coding questions were asked.

  • Q1. Reverse the String

    You are given a string 'STR'. The string contains [a-z] [A-Z] [0-9] [special characters]. You have to find the reverse of the string.

    For example:

     If the given string is: STR...
  • Ans. 

    They expected us to solve using Javascript:
    Step 1 : split()
    Step 2 : reverse()
    Step 3 : join()

  • Answered by CodingNinjas
  • Q2. Anagram Substring Search

    Given two strings ‘STR’ and ‘PTR’. Find all the starting indices of ‘PTR’ anagram substring in ‘STR’. Two strings are anagram if and only if one string can be converted into anothe...

  • Ans. Brute Force
    • We use two loops.
    • Consider ‘N’ is the number of characters in the given strings ‘STR’ and ‘M’ is the number of characters in the given string ‘PTR’.
    • The outer loop runs from 0 to ‘N - M - 1’ for starting indices ‘I’ of anagram.
      For each character of ‘STR’, we iterate from ‘I’ to ‘I + M -1’ and check for an anagram with the given string ‘PTR’.
    • For checking, we will sort all characters of ‘STR’ from ‘I’ to ‘I + M ...
  • Answered by CodingNinjas
  • Q3. Check if two expressions with brackets are same

    You are given two strings which are expressions in variables. You need to compare and tell if they are similar or different. You need to return “YES” for the...

  • Ans. 

    Step 1 : Using .replace() regex inside the method
    Step 2 : Checking the length and returning 0 or 1

  • Answered by CodingNinjas
  • Q4. Construct complete Binary Tree

    You are given an array/list 'ARR' storing values of 'N' nodes of a binary tree.

    Your task is to construct a complete binary tree from the given array in lev...

  • Ans. 

    Step 1 : Using a map with regex
    Step 2 : Creating an object initializing it to null
    Step 3 : Taking for loop till the length
    Step 4 : Checking for parent and child
    Step 5 : Each child cannot have 2 parent
    Step 6 : We check if there's more than one root node
    Step 7 : Only one node to have no parent, which is the root node.

  • Answered by CodingNinjas
  • Q5. Shortest substring with all characters

    You have been given a string 'S' which only consists of lowercase English-Alphabet letters.

    Your task is to find the shortest(minimum length) substring of &...

  • Ans. 

    Step 1 : Need to have 0 index in one variable and then use .split() for the rest in the next variable
    Step 2 : Take a loop start with the smallest possible substrings, then go up.
    Step 3 : To make a function to check to see if all the chars in the needle are in the given string

  • Answered by CodingNinjas
Round 3 - Video Call 

(2 Questions)

Round duration - 60 minuted
Round difficulty - Medium

Afternoon at 2 pm, The interviewer was friendly. Two questions and then general discussion.

  • Q1. System Design

    What is the event loop and event queue?

  • Ans. 

    Tip 1 : JavaScript runtime uses a message queue, which is a list of messages to be processed
    Tip 2 : Each message has an associated function which gets called in order to handle the message
    Tip 3 : At some point during the event loop, the runtime starts handling the messages on the queue, starting with the oldest one

  • Answered by CodingNinjas
  • Q2. Bankers Algorithm
  • Ans. 

    Resource allocation and deadlock avoidance algorithm

  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from Thadomal Shahani Engineering College. I applied for the job as Software Engineer in DelhiEligibility criteriaScores of Data Structures Test, Web Development Assignments, Mock InterviewCodalien Technologies interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Dynamic Programming, Javascript, OOPS, Node JS, React JS, HTML, CSS, Deployment on Cloud.Time required to prepare for the interview - 9 monthsInterview preparation tips for other job seekers

Tip 1 : Must solve coding problems minimum 2-3 daily and 300+ problems would be great to tackle interview questions.
Tip 2 : Work on at least 3 major projects which involve many technology stacks.
Tip 3 : Prepare your resume really well because it's our first impression.

Application resume tips for other job seekers

Tip 1 : Have at least 3 good projects in your resume mentioning in detail, can also use Google framework "Accomplished [X] as measured by [Y] by doing [Z]" while mentioning the project details.
Tip 2 : For less than 2 years experience keep it a single-page resume and check your grammatical errors. I would recommend you Grammarly for it.

Final outcome of the interviewSelected

Skills evaluated in this interview

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find DuplicateYou have been given an integer array/list(ARR) of s ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more

Interview questions from similar companies

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

I applied via campus placement at Government College of Engineering, Aurangabad and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Mostly questions on logical aptitude

Round 2 - Technical 

(3 Questions)

  • Q1. DSA questions. Reverse word of string, bubble sort, swap two variables without use of third variable
  • Q2. OOPs concepts also some questions on project
  • Q3. 1 puzzle (refer gfg)
Round 3 - HR 

(2 Questions)

  • Q1. Why do you want to work at our company?
  • Q2. What was the toughest challenge you have ever faced?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Basic Js concepts like debouncing,event loop, and other output-based questions.

Round 2 - One-on-one 

(1 Question)

  • Q1. Js concepts in depth
Round 3 - HR 

(2 Questions)

  • Q1. Hiring manager round, questions around my project
  • Q2. Optimization techniques
  • Ans. 

    Optimization techniques are methods used to improve the efficiency and performance of software applications.

    • Use algorithms like greedy, dynamic programming, or divide and conquer to optimize code

    • Minimize time complexity by avoiding nested loops and unnecessary iterations

    • Utilize data structures like hash tables, arrays, and trees for efficient storage and retrieval

    • Profile code to identify bottlenecks and optimize critic...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - focus on basics, interviewers were very helpful
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at PSG College of Arts & Science, Coimbatore and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

There are Question based on data strcuture ,they cover all the topic in ds

Round 2 - Coding Test 

In coding code they gave internet access to solve the problem after 30 they told us to make some changes in it and we should ready to explain the entire code

Interview Preparation Tips

Interview preparation tips for other job seekers - To clear 1 st round ,revise all the data structure concepts ,in second round make sure to be strong in fundamentals of programming and good in logical thinking
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. There wer four questions 1) wildcard pattern matching(leetcode) 2) cows and buffaloes(leetcode) 3) unix based cd directory 4) backtracking question
  • Q2. It was a resume based round for 45 min
Round 2 - Technical 

(1 Question)

  • Q1. It was a resume based round for 1 hr

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice leetcode medium to hard questions
Know your resume very well
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Paper based exam based on C and embedded c

Round 2 - One-on-one 

(1 Question)

  • Q1. Relevant questions asked
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
-

I was interviewed in May 2024.

Round 1 - Aptitude Test 

Totally there were 15 questions

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

I applied via Company Website and was interviewed in Apr 2023. 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 - Aptitude Test 

Logical reasoning, SQL, Python, Algorithmic thinking

Round 3 - Coding Test 

Second round was a more difficult version of the SQL and Python testing

Round 4 - One-on-one 

(1 Question)

  • Q1. I don’t remember

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company. Be prepared for solving some difficult algorithms.
Be prepared for real world challenges - difficult coding problems to solve.

I applied via Approached by Company and was interviewed in Aug 2021. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

Assignment to develop a prototype

Round 3 - One-on-one 

(3 Questions)

  • Q1. Face to face questions
  • Q2. Java Question Technical & coding
  • Q3. Mongodb & Mysql Question

Codalien Technologies Interview FAQs

How many rounds are there in Codalien Technologies Software Engineer interview?
Codalien Technologies interview process usually has 3 rounds. The most common rounds in the Codalien Technologies interview process are Coding Test, One-on-one Round and Technical.
What are the top questions asked in Codalien Technologies Software Engineer interview?

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

  1. Build an authentication system for ba...read more
  2. First round to ask things from resume and basic questions on Java and databa...read more
  3. Logical problems solving rou...read more

Tell us how to improve this page.

Codalien Technologies Software Engineer Salary
based on 4 salaries
₹4 L/yr - ₹10 L/yr
32% less than the average Software Engineer Salary in India
View more details

Codalien Technologies Software Engineer Reviews and Ratings

based on 4 reviews

3.0/5

Rating in categories

3.7

Skill development

2.6

Work-Life balance

2.6

Salary & Benefits

3.0

Job Security

2.6

Company culture

2.6

Promotions/Appraisal

2.9

Work Satisfaction

Explore 4 Reviews and Ratings
Software Developer
5 salaries
unlock blur

₹4 L/yr - ₹9 L/yr

Software Engineer
4 salaries
unlock blur

₹4 L/yr - ₹10 L/yr

Full Stack Developer
4 salaries
unlock blur

₹6 L/yr - ₹8 L/yr

UI Developer
3 salaries
unlock blur

₹4.3 L/yr - ₹7.2 L/yr

Full Stack Software Developer
3 salaries
unlock blur

₹6 L/yr - ₹7.9 L/yr

Explore more salaries
Compare Codalien Technologies with

Infosys

3.7
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview