Upload Button Icon Add office photos

AICL

Compare button icon Compare button icon Compare

Filter interviews by

AICL Software Developer Interview Questions and Answers

Updated 24 May 2023

AICL Software Developer Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 

(2 Questions)

  • Q1. They asked which language you ate very strong they will ask basic question in that language...
  • Q2. They asked about achievements

Interview Preparation Tips

Interview preparation tips for other job seekers - My advise when ever you finished an interview just say "It was nice interactive with you sir/ mam" 75 % you will get placed

Interview questions from similar companies

I applied via Campus Placement and was interviewed before Sep 2021. There were 2 interview rounds.

Round 1 - Coding Test 

It had more than 30 aptitude questions and 2 coding questions

Round 2 - One-on-one 

(1 Question)

  • Q1. It was totally a tech round all questions were from Data structure, dbms, java, computer networking

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and if you don't know any answer don't take time say it directly with confidence

I appeared for an interview in Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

3 coding Questions:
1st : Easy question based on simple loop iteration
2nd :Medium level Dp question 
3rd : Medium level tree question(where we were not just required to complete the tree function but to build whole bst from 
scratch) 

It was conducted from 1:30 - 3:00 pm.
The coding platform was very good (as auto indentation and auto completion of brackets were there)
having camera on.

  • Q1. 

    Selling Stock Problem Statement

    You are given the stock prices for N days. Each day i signifies the price of a stock on that day. Your goal is to calculate the maximum profit that can be achieved by buyin...

  • Ans. 

    Calculate maximum profit by buying and selling stocks on different days.

    • Iterate through the stock prices and buy on the day when the price is lower than the next day's price, and sell on the day when the price is higher than the next day's price.

    • Keep track of the total profit earned by summing up the differences between buying and selling prices.

    • Return the total profit as the maximum profit that can be earned.

  • Answered by AI
  • Q2. 

    Minimum Time to Burn a Binary Tree from a Leaf Node

    You are given a binary tree with 'N' unique nodes, and a specific start node from where the fire will begin. The task is to determine the time in minute...

  • Ans. 

    The task is to determine the time in minutes required to burn the entire binary tree starting from a given node.

    • Traverse the tree from the given start node to calculate the time taken to burn the entire tree.

    • Use a queue to keep track of nodes and their burning time.

    • Increment the burning time for each level of nodes until the entire tree is burned.

  • Answered by AI
Round 2 - Coding Test 

(1 Question)

Round duration - 75-80 minutes
Round difficulty - Hard

This was a completely technical coding round where I was asked to solve the problems of data structures.
The codepad where i was asked to code was fine,
The interviewer was very friendly and was helpful and understanding.
I also asked him about his work and experience in the company and some other questions.

  • Q1. 

    Matrix Maximum Path Sum Problem

    Given an N*M matrix filled with integer numbers, your task is to find the maximum path sum starting from any cell in the first row and ending at any cell in the last row. Y...

Round 3 - HR 

Round duration - 45 minutes
Round difficulty - Easy

It was held on Gmeet platform
The interviewer was very experienced person and was very nice too.
He made me comfortable by first introducing himself in a very detailed way and then asking me mine introduction
Since I feel that his internet connection was not very good so he turned off his camera but I decided not to turn off mine as in online interviews your face reviles your confidence 
the interviewer mostly asked me questions about my interests in technical field and the project that I have done

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Punjab Engineering College(Deemed To be University). Eligibility criteriaCGPA above 6 and no backlogs (there was no branch criteria for eligibility)Phone Pe interview preparation:Topics to prepare for the interview - 1. C++ basic Coding + Data structures knowledge (learned during the two years of college Courses + Coding Ninjas course of C++ introduction and C++ data structures) 2. OOPs + Pointers (best and complete material for interviews is available at Geeks for geeks) 3. Dynamic programming and Recursion best explained in (Coding Ninjas course) + (Youtube channel of Aditya Verma if you want free material ) 4. Graphs , Hashmaps and Priority Queues (again I found Coding Ninjas course to be super amazing) 5. Operating system + DBMS(theory part) (I found best material of Gate smashers (youtube channel)) 6. Networking (just required for very few companies) (I liked TutorialsPoint tutorials a lot (very concise and to the point ))Time required to prepare for the interview - 1+2 months (rigorous practicing)Interview preparation tips for other job seekers

Tip 1 : Practice atleast(easy and medium questions from leetcode under(Top Interview Questions)) and all the questions from Gfg under(must to do coding questions for interviews))
Tip 2 : Don't learn each and every question you solved but try to solve question in a way that you can solve its variation during interviews
Tip 3 : Do one project(one is enough) which you can explain with full technical details (why you used this technology, and all logics you applied in implementation) 
Tip 4: Atleast read the round 1 (Coding round) Archives from (Geeks for geeks or Glassdoor). To get your mind prepared for the types of questions that company usually asks.(Coding round is the toughest Step in the whole Process to clear)

Application resume tips for other job seekers

Tip 1: Have at least one project which you have made yourself and you should know all the technical questions related to that project (I feel project domain hardly matters like web development or android or ML/AI)
Tip 2: You should Put only those skills in resume :
1. Which the company requires (eg if you know company doesn't require Networking domain knowledge so 
don't include it unnecessary if you are not much confident in it)
2. For on campus internships resume shortlisting is very easy so don't add anything unnecessary which might 
cause you pain during interview.

Final outcome of the interviewSelected

Skills evaluated in this interview

I appeared for an interview in Jan 2021.

Round 1 - Coding Test 

Round duration - 40 Minutes
Round difficulty - Easy

Round 2 - Coding Test 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Easy

  • Q1. 

    Reverse the String Problem Statement

    You are given a string STR which contains alphabets, numbers, and special characters. Your task is to reverse the string.

    Example:

    Input:
    STR = "abcde"
    Output:
    "e...
  • Ans. 

    Reverse a given string containing alphabets, numbers, and special characters.

    • Iterate through the string from the end to the beginning and append each character to a new string.

    • Use built-in functions like reverse() or slicing to reverse the string.

    • Handle special characters and numbers while reversing the string.

    • Ensure to consider the constraints on the input string length and number of test cases.

  • Answered by AI
  • Q2. 

    Max GCD Pair Problem Statement

    Given an array of positive integers, determine the Greatest Common Divisor (GCD) of a pair of elements such that it is the maximum among all possible pairs in the array. The...

  • Ans. 

    Find the maximum GCD of a pair of elements in an array of positive integers.

    • Iterate through all pairs of elements in the array

    • Calculate the GCD of each pair using Euclidean algorithm

    • Keep track of the maximum GCD found

    • Return the maximum GCD value

  • Answered by AI
Round 3 - HR 

Round duration - 20 Minutes
Round difficulty - Easy

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from JSPM Rajarshi shahu college of engineering , Tathawade. Eligibility criteriaNo criteriaPhone Pe interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : Practice Atleast 250 Questions
Tip 2 : Do atleast 2 projects
 

Application resume tips for other job seekers

Tip 1 : Have some projects on resume.
Tip 2 : Do not put false things on resume.

Final outcome of the interviewRejected

Skills evaluated in this interview

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

I applied via Company Website and was interviewed before May 2022. There were 2 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 - One-on-one 

(2 Questions)

  • Q1. 1. JS questions - map, callback functions, higher order functions, coding on array/strings traversing and perform array/strings methods like to strong(), stringify(), push(), shift(), etc.
  • Q2. 2. React questions- go through normal top 100 interview questions like lifecycle, hooks, etc. and that's it.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just focus more on JS, for any kind of software developer role preparation
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Oct 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Coding Test 

Java, HTML, CSS, BASIC aptitude questions

Round 3 - Technical 

(1 Question)

  • Q1. Linked list code, core Java questions, project discussion
Round 4 - HR 

(1 Question)

  • Q1. Compensation discussion
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Oct 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Coding Test 

Core Java, HTML, CSS, BASIC aptitude questions

Round 3 - Technical 

(1 Question)

  • Q1. Linked list coding, CORE JAVA, Project discussion
Round 4 - HR 

(1 Question)

  • Q1. Compensation discussion
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. SQL joins Views Cte
  • Q2. Cte Trigger Joins Complex query
Round 2 - HR 

(1 Question)

  • Q1. Salary expectations
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Whats your hobby
  • Ans. 

    My hobby is photography, where I enjoy capturing moments and exploring different perspectives.

    • I love experimenting with different camera settings and techniques

    • I enjoy exploring new locations and finding unique angles to shoot from

    • I like editing photos to enhance their visual appeal

    • I often participate in photography contests and exhibitions

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Delegates and events

AICL Interview FAQs

How many rounds are there in AICL Software Developer interview?
AICL interview process usually has 2 rounds. The most common rounds in the AICL interview process are Resume Shortlist and Technical.

Tell us how to improve this page.

AICL Software Developer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more
HR Executive
4 salaries
unlock blur

₹3 L/yr - ₹3.2 L/yr

Administration Assistant
4 salaries
unlock blur

₹1.5 L/yr - ₹1.5 L/yr

Junior HR Executive
3 salaries
unlock blur

₹2.5 L/yr - ₹3 L/yr

Explore more salaries
Compare AICL with

HDB Financial Services

3.9
Compare

AU Small Finance Bank

4.2
Compare

Bajaj Finance

4.0
Compare

Equitas Small Finance Bank

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