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
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Unstop and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

The assessment round conduct on unstop and there was 70 question in 45 minutes.

1. MS excel questions
2. business sales related question
3. Quantitative, verbal, logical reasoning question

Round 2 - One-on-one 

(2 Questions)

  • Q1. Self Intro tell me about yourself. about job description. tell me about company.
  • Q2. Why u want to choose this role, how you generate lead for company, strength and weakness etc

Interview Preparation Tips

Topics to prepare for WebGo Software Labs Business Development Executive interview:
  • Excel
  • Quantitative
  • HTML
  • Verbal
Interview preparation tips for other job seekers - prepare according job description.

Web Developer & Designer Interview Questions & Answers

Paras Cadd user image Abdul Samad Atiullah Ansari

posted on 22 Dec 2023

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

I applied via LinkedIn and was interviewed in Nov 2023. 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 - One-on-one 

(5 Questions)

  • Q1. There was f2f interview.. Mostly asked basic questions and from your resume What is flex box How react components used CSS styling properties Javascript basic fundamentals like array lomanipulation,mergi...
  • Q2. What are flexbox properties
  • Ans. 

    Flexbox properties are CSS properties that allow for flexible layout and positioning of elements within a container.

    • Flexbox properties are used to create responsive and dynamic layouts.

    • Some commonly used flexbox properties include flex-direction, justify-content, align-items, and flex-grow.

    • Flexbox properties can be applied to both the parent container and the child elements within it.

    • Flexbox provides a powerful and int

  • Answered by AI
  • Q3. Javascript data types properties
  • Ans. 

    JavaScript data types have different properties that define their behavior and characteristics.

    • JavaScript has several built-in data types such as string, number, boolean, object, array, etc.

    • Each data type has its own set of properties and methods that can be accessed and manipulated.

    • For example, the string data type has properties like length, which returns the length of the string.

    • The number data type has properties l...

  • Answered by AI
  • Q4. Responsive design properties
  • Ans. 

    Responsive design properties ensure websites adapt to different screen sizes and devices.

    • Fluid grids: Use relative units like percentages to create flexible layouts.

    • Flexible images: Use CSS to ensure images scale proportionally.

    • Media queries: Apply different styles based on screen size and device capabilities.

    • Viewport meta tag: Control how a webpage is displayed on different devices.

    • Responsive typography: Adjust font s...

  • Answered by AI
  • Q5. Javascript array manipulation

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for basics at most and whatever you written in resume have basic understanding

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Yourself in a short way
  • Ans. 

    Passionate graphic designer with 5+ years of experience in creating visually appealing designs for various clients.

    • Proficient in Adobe Creative Suite

    • Strong understanding of design principles

    • Excellent communication skills

    • Ability to work under tight deadlines

    • Experience in branding and marketing design

  • Answered by AI

Intern Interview Questions & Answers

Idfy user image Anonymous

posted on 7 Aug 2024

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

I applied via campus placement at Indian Institute of Technology (IIT), Mumbai and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Coding Test 

It had 2 coding questions

Round 2 - Technical 

(2 Questions)

  • Q1. About projects I mentioned in resume
  • Q2. React questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Oct 2023. There were 5 interview rounds.

Round 1 - Aptitude Test 

CCAT has around 40-50 questions to be solved within 15 minutes

Round 2 - Coding Test 

Codility test has some basic coding questions that come along with an IDE

Round 3 - Technical 

(1 Question)

  • Q1. About NodeJS, React, APIs
Round 4 - Technical 

(1 Question)

  • Q1. Mostly about system design, code in depth, code architecture, security
Round 5 - HR 

(1 Question)

  • Q1. Mostly about explaining how it works at the company, questions on personal work preferences etc
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in May 2023. There were 6 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 - Aptitude Test 

U get a game kind of aptitude test to clear and it’s easy to clear.

Round 3 - Voice and accent round 

(2 Questions)

  • Q1. Tell me about yourself and describe or sell your place as a product
  • Q2. Tell about yourself and explain why u think or how u can sell your city or place as a product to the customer. They basically check your accent here….
Round 4 - One-on-one 

(4 Questions)

  • Q1. Discussion on your past experiences and your future goals
  • Q2. Explain everything in detail
  • Ans. 

    Explaining everything in detail requires thorough and comprehensive explanation of the topic.

    • Start by providing an overview of the topic

    • Break down the key components or steps involved

    • Provide examples or scenarios to illustrate the concept

    • Address any potential questions or concerns that may arise

    • Conclude by summarizing the main points discussed

  • Answered by AI
  • Q3. Analysing communications and checks if u r okay with their policies
  • Ans. 

    I am comfortable analysing communications and adhering to company policies.

    • I have experience reviewing and interpreting company policies and procedures.

    • I am able to effectively communicate any concerns or questions regarding policies.

    • I understand the importance of following policies to maintain compliance and security.

    • I am detail-oriented and can identify any discrepancies in communications or policies.

  • Answered by AI
  • Q4. It’s easy to clear
Round 5 - One-on-one 

(5 Questions)

  • Q1. Tell me about yourself
  • Q2. Explanation on your past experiences
  • Q3. Why you want this job
  • Q4. Communication and policies acceptations is asked again
  • Q5. Easy to clear this round
Round 6 - Behavioral 

(1 Question)

  • Q1. Salary discussion happens here
  • Ans. Demand the maximum amount you can ask. At the end it will be negotiated very low
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - Ask more package and the company is really good

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