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 Interview Questions, Process, and Tips

Updated 7 May 2024

Top Codalien Technologies Interview Questions and Answers

View all 11 questions

Codalien Technologies Interview Experiences

Popular Designations

4 interviews found

Lead Product & Strategy Interview Questions & Answers

user image Anonymous

posted on 6 May 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. General discussion about the prior industry experience.
Round 2 - Assignment 

Case Study of a Successful Product

Round 3 - One-on-one 

(1 Question)

  • Q1. Strategize a scenario for a product release and its success in the market.
Round 4 - One-on-one 

(1 Question)

  • Q1. Cultural Fit Related Questions. It was a fun and healthy discussion with the team leads and HR.

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.

Top Codalien Technologies Software Engineer Interview Questions and Answers

Q1. Shortest substring with all charactersYou 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 'S' which contains all the characters of 'S' at... read more
View answer (3)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (170)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via AmbitionBox and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - Assignment 

My assignment was to design an user interface of an AI-enabled application of makeup and beauty application

Round 2 - Assignment 

I had to develop a user interface and UX of a meeting room booking application

Round 3 - HR 

(2 Questions)

  • Q1. What would be your first Instinct for designing a product?
  • Q2. What are your research sources for designing products?
  • Ans. 

    Research sources for designing products include user interviews, surveys, competitor analysis, user testing, and analytics.

    • User interviews to gather insights directly from target users.

    • Surveys to collect quantitative data and feedback from a larger audience.

    • Competitor analysis to understand industry trends and best practices.

    • User testing to validate design decisions and identify usability issues.

    • Analytics to track user...

  • Answered by AI

UI and UX Design Lead Interview Questions asked at other Companies

Q1. What is the UX Process you are following to do project?
View answer (1)

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

Top Codalien Technologies Software Engineer Interview Questions and Answers

Q1. Shortest substring with all charactersYou 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 'S' which contains all the characters of 'S' at... read more
View answer (3)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (170)

Codalien Technologies interview questions for popular designations

 Software Engineer

 (2)

 UI and UX Design Lead

 (1)

Interview questions from similar companies

Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Sep 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

They will send you a link for aptitude test

Round 2 - HR 

(4 Questions)

  • Q1. Are you comfortable with night shifts?
  • Ans. 

    Yes, I am comfortable with night shifts as I am able to adapt to different schedules and prioritize work efficiently.

    • I have previous experience working night shifts and have been able to perform well during those hours.

    • I am a night owl and find that I am more productive during the night.

    • I understand the importance of maintaining a healthy work-life balance and am willing to adjust my schedule to accommodate night shift

  • Answered by AI
  • Q2. How much time does it take for you to reach the office from your current location?
  • Ans. 

    It takes me approximately 30 minutes to reach the office from my current location.

    • I live about 10 miles away from the office.

    • I usually drive to work, taking the highway to avoid traffic.

    • On average, it takes me half an hour to commute to the office.

  • Answered by AI
  • Q3. Current salary?
  • Ans. 

    I prefer to discuss salary expectations based on the responsibilities and requirements of the position.

    • Focus on discussing salary expectations based on the job role and industry standards.

    • Avoid disclosing current salary to ensure fair compensation.

    • Highlight relevant experience and skills that justify desired salary.

    • Discuss potential for growth and additional benefits instead of current salary.

  • Answered by AI
  • Q4. Salary expectations are not asked 😂
Round 3 - One-on-one 

(3 Questions)

  • Q1. What was your previous job role?
  • Ans. 

    I was a marketing manager at a tech company.

    • Managed marketing campaigns and strategies

    • Collaborated with cross-functional teams to drive brand awareness

    • Analyzed market trends and competitor activities

    • Implemented digital marketing initiatives

    • Organized events and promotions

  • Answered by AI
  • Q2. Why you left previous organisation ?
  • Ans. 

    Seeking new challenges and opportunities for growth.

    • Desire for career advancement

    • Lack of growth opportunities in previous organization

    • Seeking new challenges and learning experiences

  • Answered by AI
  • Q3. What do you know about IDfy
  • Ans. 

    IDfy is a leading identity verification and fraud prevention platform.

    • IDfy offers solutions for KYC verification, customer onboarding, and fraud detection.

    • Their platform uses AI and machine learning algorithms to verify identities in real-time.

    • IDfy serves a wide range of industries including finance, e-commerce, and healthcare.

  • Answered by AI
Round 4 - Case Study 

The case study involves asking you about the documents and how will you verify fraud with the given documents like offer letter , and others. And the second

2 case study was
How will you teach the blind man colour blue
The answer was this was given by me hence it was out of the book

Interview Preparation Tips

Topics to prepare for Idfy Business Executive interview:
  • Case Studies
Interview preparation tips for other job seekers - So this is KYC company a business consulting firm as well and here you will be treated respectfully by HR and Assistant managers But however the 3rd case study round will be tricky because the manager taking 3 round is no manager but a damaged and his name is Max when you will be interviewed he will certainly give you case study and keep interrupting and adding more and more questions to the case study and when you have given him the resolution he will then ask you the question that how will you make the blind man learn colour blue the second person coming out from the interview his hands were shivering the manager for the 3rd round was a big time a cooperate player and would not let anyone come in the organisation so be careful while going for interview on this place as you can face a 🧟‍♂️

And it’s at least 12-13 minutes walking from Marol metro station

Software Technologies Interview Questions & Answers

Signzy Technologies user image Anonymous

posted on 3 Jan 2025

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

I applied via Referral and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. ACID Properties
  • Q2. What are Idempotent HTTP Requests?
  • Q3. Questions regarding your project, and how did you learn from the projects and tasks assigned to you?
  • Q4. System Design

Interview Preparation Tips

Topics to prepare for Signzy Technologies Software Technologies interview:
  • System DEsign
  • DSa
  • Algo
  • DBMS
  • Operating System
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Basic details 

(2 Questions)

  • Q1. Location and work area
  • Q2. Basic details in general
Round 2 - HR 

(2 Questions)

  • Q1. Current and previous work experience and relevance
  • Q2. Territories covered
Round 3 - Behavioral 

(2 Questions)

  • Q1. Work experience, relevant experience
  • Q2. How can I expand their market
  • Ans. 

    Expanding the market can be achieved through market research, identifying new target demographics, developing new products or services, and implementing effective marketing strategies.

    • Conduct market research to identify potential new markets or untapped segments within the current market.

    • Analyze competitors to understand their strategies and identify opportunities for differentiation.

    • Develop new products or services th...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Found their job ad on Naukri where the salary is mentioned as 8.4-10.8 LPA.
Initially the HR mentioned the salary to be the same as on the ad; but after the interviews, the HR said that the max they can offer is 10-15% hike over current CTC; which is even lower than the minimum salary they had mentioned in the JD.

If the HR is duping the candidates with just the salary itself then how can a future employee expect the employers to be transparent with him/her later on.

Also, they wanted me to sign a declaration that I will find a channel partner/distributor within 15 days of joining.
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
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Seek and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Year of experience
  • Ans. 

    I have 5 years of experience working as a Quality Engineer in the manufacturing industry.

    • 5 years of experience as a Quality Engineer

    • Experience in implementing quality control processes

    • Knowledge of quality standards and regulations

    • Experience in conducting quality audits and inspections

    • Experience in root cause analysis and problem-solving

  • Answered by AI
  • Q2. Why did you leave your last job
  • Ans. 

    Seeking new challenges and opportunities for growth in a different work environment.

    • Desire for career advancement

    • Seeking new challenges

    • Relocation

    • Company downsizing

    • Better work-life balance

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. How do you investigate a quality issue?
  • Ans. 

    I investigate a quality issue by gathering data, analyzing root causes, implementing corrective actions, and monitoring results.

    • Gather relevant data and documentation related to the quality issue

    • Analyze the data to identify potential root causes of the issue

    • Develop and implement corrective actions to address the root causes

    • Monitor the effectiveness of the corrective actions and make adjustments as needed

  • Answered by AI
  • Q2. What frustrates you?
  • Ans. 

    Lack of communication and unclear expectations frustrate me.

    • Lack of communication between team members

    • Unclear expectations from management

    • Inefficient processes causing delays

    • Micromanagement

    • Lack of recognition for hard work

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. What is the difference between Validation and Verification
  • Ans. 

    Validation ensures the product meets the customer's needs, while verification ensures the product is built correctly.

    • Validation is the process of evaluating a product to ensure it meets the customer's requirements and needs.

    • Verification is the process of evaluating whether a product is built correctly according to the specifications and requirements.

    • Validation answers the question 'Are we building the right product?' w...

  • Answered by AI
  • Q2. What motivated you to apply for this role
  • Ans. 

    Passion for ensuring quality standards and continuous improvement in engineering processes.

    • Passion for quality assurance and process improvement

    • Interest in utilizing engineering skills to enhance product quality

    • Desire to contribute to a team focused on excellence

    • Previous experience in quality control or process optimization

  • Answered by AI

Interview Preparation Tips

Topics to prepare for ResMed Quality Engineer interview:
  • Lean Manufacturing
Interview preparation tips for other job seekers - All questions are based on what you wrote in your CV so make sure you know everything you've written in there
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

A link was provided for the 15-minute online aptitude test.

Round 2 - Coding Test 

90 minutes coding round. There were three problems. One for JavaScript and two for ReactJS

Round 3 - Technical 

(1 Question)

  • Q1. Mostly ReactJS questions were asked and a few Javascript questions were asked.
Round 4 - One-on-one 

(1 Question)

  • Q1. Again a few react based questions then it was mostly discussion on the past experiences.
Round 5 - HR 

(1 Question)

  • Q1. A general discussion about the notice period, compensation, and information about the company's culture was provided.

Codalien Technologies Interview FAQs

How many rounds are there in Codalien Technologies interview?
Codalien Technologies interview process usually has 3-4 rounds. The most common rounds in the Codalien Technologies interview process are One-on-one Round, Assignment and HR.
How to prepare for Codalien 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 Codalien Technologies. The most common topics and skills that interviewers at Codalien Technologies expect are API, Angularjs, Javascript, CSS and Full Stack.
What are the top questions asked in Codalien Technologies interview?

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

  1. What are your research sources for designing produc...read more
  2. Strategize a scenario for a product release and its success in the mark...read more
  3. Build an authentication system for ba...read more

Tell us how to improve this page.

People are getting interviews through

based on 2 Codalien Technologies interviews
Job Portal
50%
50% candidates got the interview through other sources.
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k Interviews
Accenture Interview Questions
3.9
 • 8k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
IBM Interview Questions
4.1
 • 2.4k Interviews
Oracle Interview Questions
3.7
 • 878 Interviews
View all

Codalien Technologies Reviews and Ratings

based on 16 reviews

4.5/5

Rating in categories

4.6

Skill development

4.5

Work-Life balance

4.3

Salary & Benefits

4.6

Job Security

4.5

Company culture

4.4

Promotions/Appraisal

4.4

Work Satisfaction

Explore 16 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