Upload Button Icon Add office photos

Filter interviews by

Clear (1)

Alacriti Software Engineer Interview Questions and Answers

Updated 30 Aug 2015

Alacriti Software Engineer Interview Experiences

3 interviews found

Interview Preparation Tips

Round: Interview
Experience: Interviews in two rounds1st Interview: Focused majorly on solving puzzles Sample Questions:Solving Rubik‟s cubeSorting algorithmHighest sum in a row algorithm
Tips: Maintain a minimum CGPA of 7Be prepared to answer questions related to the company profilePrepare well for CAT it shall suffice for all the quantitative ability questionsPrepare different resumes for finance & IT.Practice and express yourself wellBasic coding knowledge is very useful

College Name: IIT Madras

Rate your
company

🤫 100% anonymous

How was your last interview experience?

Share interview

Interview Questionnaire 

4 Questions

  • Q1. Let 1=1 2+2=2*2=2 2 ......................................... X+x+x+x+............=x*x=x2 Differentiate on both sides 1+1+1+1.........=2x x=2x explain where did we go wrong?
  • Ans. 

    Explaining the mistake in differentiating 1+1+1+1...=2x x=2x

    • The differentiation of x^2 is 2x, but the differentiation of an infinite sum is not the sum of the derivatives

    • The sum of an infinite series can only be differentiated term by term if the series converges

    • The series 1+1+1+1... does not converge, so it cannot be differentiated term by term

    • Therefore, the differentiation of the left side of the equation is undefine

  • Answered by AI
  • Q2. Puzzles based on Rubix cube
  • Q3. Puzzles based on Sorting algorithm
  • Q4. Puzzles based on Highest sum in a row algorithm

Interview Preparation Tips

Round: Test
Tips: Prepared for quant for CAT , which was very useful to get through initial rounds

General Tips: Take CAT seriously and prepare well
Lot of materials on puzzles in LAN explore
English , way how you express yourself does make a lot of difference
I think its my English for not getting placed early
Skill Tips: Minimum CG of 7 for most of companies
The questions related to company profile
Test score, most tests were quant based prepare well for CAT , very useful
Prepare different resumes for fin & IT , don’t let any fin content enter IT resume.
Prepared for quant for CAT , which was very useful to get through initial rounds.
Skills: Coding Knowledge, Puzzle solving ability, Quantitative Aptitude
College Name: IIT Madras

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 the Duplicate Number Problem Statement Given an integer arra ... 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 Questionnaire 

3 Questions

  • Q1. Algorithm for basic “C” questions.
  • Q2. Two puzzles
  • Q3. Questions based on your resumes

Interview Preparation Tips

Round: Test
Experience: All are general puzzles a little bit time taking.enough time was given
Duration: 60 minutes
Total Questions: 6

Round: HR Interview
Experience: Random questions , some about ur resume some on your interests. Why did
u choose this etc............

General Tips: Start preparing early.
Skills: Ability to solve all the questions
College Name: IIT Madras

Interview questions from similar companies

I was interviewed before Jan 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

It was conducted in Hacker rank which consisted of 10 aptitude questions that included C, C++, Java MCQ. 2 programming questions were also given.

  • Q1. 

    Minimum Cost Path Problem Statement

    Given an N x M matrix filled with integers, determine the minimum sum obtainable from a path that starts at a specified cell (x, y) and ends at the top left corner of t...

  • Ans. 

    The problem involves finding the minimum sum path from a specified cell to the top left corner of a matrix.

    • Start from the specified cell and calculate the minimum sum path to reach the top left corner using dynamic programming.

    • Consider the three possible moves: down, right, and down-right diagonal.

    • Keep track of the minimum sum at each cell and update it based on the minimum of the three possible moves.

    • Finally, the mini...

  • Answered by AI
  • Q2. 

    Balanced Parentheses Combinations

    Given an integer N representing the number of pairs of parentheses, find all the possible combinations of balanced parentheses using the given number of pairs.

    Explanati...

  • Ans. 

    Generate all possible combinations of balanced parentheses for a given number of pairs.

    • Use backtracking to generate all possible combinations of balanced parentheses.

    • Keep track of the number of open and close parentheses used in each combination.

    • Recursively generate combinations by adding open parentheses if there are remaining, and closing parentheses if the number of open parentheses is greater than the number of clo...

  • Answered by AI
Round 2 - Face to Face 

(4 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Technical round with questions based on data structures, oops and networking.

  • Q1. 

    Character Counting Challenge

    Create a program that counts and prints the total number of specific character types from user input. Specifically, you need to count lowercase English alphabets, numeric digi...

  • Ans. 

    Create a program to count lowercase alphabets, digits, and white spaces from user input until '$' is encountered.

    • Read characters from input stream until '$' is encountered

    • Count lowercase alphabets, digits, and white spaces separately

    • Print the counts of each character type as three integers separated by spaces

  • Answered by AI
  • Q2. 

    K Largest Elements Problem Statement

    Given an unsorted array containing 'N' integers, you are required to find 'K' largest elements from the array and return them in non-decreasing order.

    Input:

    The fir...
  • Ans. 

    Find K largest elements in an unsorted array and return them in non-decreasing order.

    • Sort the array in non-decreasing order.

    • Return the last K elements of the sorted array.

  • Answered by AI
  • Q3. How can you check whether you have an internet connection on your system?
  • Ans. 

    To check internet connection on a system, you can use various methods like pinging a website or checking network status.

    • Use ping command to check connectivity to a website (e.g. ping www.google.com)

    • Check network status using network settings or command line tools

    • Try accessing a website or online service to verify internet connection

  • Answered by AI
  • Q4. What happens when you type a URL in a web browser?
  • Ans. 

    When you type a URL in a web browser, the browser sends a request to the server hosting the website, which then responds with the necessary files to display the webpage.

    • Browser checks cache for DNS resolution

    • If not found, browser sends a DNS query to resolve the domain name to an IP address

    • Browser establishes a TCP connection with the server

    • Browser sends an HTTP request to the server for the webpage

    • Server processes the...

  • Answered by AI
Round 3 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Technical round with questions based on data structures, oops and networking.

  • Q1. 

    Counting Sort Problem Statement

    Ninja is learning about sorting algorithms, specifically those that do not rely on comparisons. Can you help Ninja implement the counting sort algorithm?

    Example:

    Input:
    ...
  • Ans. 

    Implement counting sort algorithm to sort an array of integers without comparisons.

    • Count the frequency of each element in the input array.

    • Calculate the prefix sum of frequencies to determine the position of each element in the sorted array.

    • Place each element in its correct position based on the prefix sum.

    • Time complexity of counting sort is O(n+k), where n is the number of elements and k is the range of input.

    • Example: ...

  • Answered by AI
  • Q2. What are the applications of the Fibonacci series in real life?
  • Ans. 

    The Fibonacci series has applications in various fields such as mathematics, computer science, art, and nature.

    • Used in algorithms for optimization problems and dynamic programming.

    • Found in nature, such as the arrangement of leaves on a stem, the branching of trees, and the spiral shapes of shells.

    • Applied in financial markets for predicting stock prices and analyzing market trends.

    • Utilized in art and design for creating

  • Answered by AI
Round 4 - HR 

Round duration - 30 minutes
Round difficulty - Easy

HR round where the interviewer asked questions to know more about me.

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAPaypal interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed before Jan 2021.

Round 1 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

I couldn't find an optimal approach to the first question, so she skipped that question and proceeded to next questions. Remaining questions I have answered satisfactorily.

  • Q1. 

    Subset Sum Equal To K Problem Statement

    Given an array/list of positive integers and an integer K, determine if there exists a subset whose sum equals K.

    Provide true if such a subset exists, otherwise r...

  • Ans. 

    Given an array of positive integers and an integer K, determine if there exists a subset whose sum equals K.

    • Use dynamic programming to solve this problem efficiently

    • Create a 2D array to store if a subset with a particular sum exists

    • Iterate through the array and update the 2D array accordingly

    • Check if the value at the end of the iteration is true for the given K

  • Answered by AI
  • Q2. 

    BFS Traversal in a Graph

    Given an undirected and disconnected graph G(V, E) where V vertices are numbered from 0 to V-1, and E represents edges, your task is to output the BFS traversal starting from the ...

  • Ans. 

    BFS traversal in a disconnected graph starting from vertex 0.

    • Implement BFS algorithm to traverse the graph starting from vertex 0.

    • Use a queue to keep track of visited nodes and their neighbors.

    • Ensure to print the traversal sequence in the correct order.

    • Handle disconnected components by checking for unvisited nodes.

    • Follow the BFS approach of exploring neighbors before moving to the next level.

  • Answered by AI
Round 2 - HR 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

I told that my strength is problem solving and I can always find a way when there is a bottle-neck. Gave some examples of my experiences while doing my assignments.

  • Q1. 

    Replace Spaces in a String

    Given a string STR consisting of words separated by spaces, your task is to replace all spaces between words with the characters "@40".

    Input:

    The first line contains an integ...
  • Ans. 

    Replace spaces in a string with '@40'.

    • Iterate through each character in the string

    • Replace spaces with '@40'

    • Return the modified string

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAPaypal interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed before Jan 2021.

Round 1 - Face to Face 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical Interview Round with questions based on Data structures, OOPS and SQL.

  • Q1. 

    Delete a Node from a Linked List

    You are provided with a linked list of integers. Your task is to implement a function that deletes a node located at a specified position 'POS'.

    Input:

    The first line co...
  • Ans. 

    Implement a function to delete a node from a linked list at a specified position.

    • Traverse the linked list to find the node at the specified position.

    • Update the pointers of the previous and next nodes to skip the node to be deleted.

    • Handle edge cases such as deleting the head or tail of the linked list.

    • Ensure to free the memory of the deleted node to avoid memory leaks.

  • Answered by AI
  • Q2. Write an SQL query to find the nth highest salary.
  • Ans. 

    SQL query to find the nth highest salary

    • Use the ORDER BY clause to sort salaries in descending order

    • Use the LIMIT and OFFSET clauses to skip the first n-1 highest salaries

    • Combine the above steps in a single query to find the nth highest salary

  • Answered by AI
  • Q3. Can you explain the concepts of Object-Oriented Programming (OOP)?
  • Ans. 

    OOP is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.

    • OOP focuses on creating objects that interact with each other to solve problems.

    • Key concepts include encapsulation, inheritance, and polymorphism.

    • Encapsulation involves bundling data and methods that operate on the data into a single unit.

    • Inheritance allows classes to inherit at...

  • Answered by AI
Round 2 - Face to Face 

(4 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Was asked me about my favorite technologies, What i liked about Facebook. And asked me to design a cinema ticket reservation web site­ like the one satyam has.

  • Q1. 

    Kth Largest Element Problem

    Given an array containing N distinct positive integers and a number K, determine the Kth largest element in the array.

    Example:

    Input:
    N = 6, K = 3, array = [2, 1, 5, 6, 3, ...
  • Ans. 

    Find the Kth largest element in an array of distinct positive integers.

    • Sort the array in non-increasing order and return the Kth element.

    • Handle multiple test cases efficiently.

    • Ensure all elements in the array are distinct.

  • Answered by AI
  • Q2. What are virtual functions?
  • Ans. 

    Virtual functions are functions in a base class that are overridden in derived classes to achieve runtime polymorphism.

    • Virtual functions are declared in a base class with the 'virtual' keyword.

    • They are overridden in derived classes using the 'override' keyword.

    • They allow a function to be called based on the runtime type of an object.

    • Virtual functions enable dynamic binding and late binding in C++.

    • Example: virtual void ...

  • Answered by AI
  • Q3. Design a Cinema Ticket Reservation System.
  • Ans. 

    Design a Cinema Ticket Reservation System

    • Use a database to store movie information, showtimes, and seat availability

    • Allow users to search for movies, select showtimes, and choose seats

    • Implement a payment system for ticket purchases

    • Send confirmation emails with QR codes for ticket validation

  • Answered by AI
  • Q4. In how many attempts can you find a defective ball among 10 given balls using a two-pan balance scale?
  • Ans. 

    You can find a defective ball among 10 given balls in 2 attempts using a two-pan balance scale.

    • Divide the 10 balls into two groups of 5 each.

    • Weigh the two groups on the balance scale.

    • If one group is heavier, it contains the defective ball. If they are equal, the defective ball is in the remaining 5 balls.

    • Divide the group of 5 balls with the defective one into two groups of 2 and 3 balls.

    • Weigh the two groups on the bala...

  • Answered by AI
Round 3 - HR 

(1 Question)

Round duration - 30 minutes
Round difficulty - Easy

HR round that lasted for about 30 minutes. The interviewer asked me questions to know more about me and a puzzle.

  • Q1. Can you tell me about your projects and your extracurricular activities?

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAPaypal interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Preparation Tips

Round: Technical Interview
Experience: Lots of C questions and also questions from ur branch
Tips: Be confident..give smart answers

Round: Group Discussion
Experience: Your voice should be clear. u have to stand out from others
Tips: Be confident and rock

General Tips: Just be your best. Dont imitate anyone. Be yourself
Skill Tips: be well dressed and speak clearlly
Skills: smartness, communication
College Name: KIIT
Motivation: The welcoming attitude for core branch students

Interview Preparation Tips

Round: Test
Experience: to.me totally there were three sections.verbal,apti and reasoning.each section carries 15,15 and 10 questions respectively.to me verabal and apti was little bit easy and it consumes more time to solve the apti questions.so i have been solved 8 apti questions and at last 1minute i.just qlicked the answers for remaining questions randomly becasue we didnt have negative mark and finally reasobing was much easier and solved every answers.
Tips: to get selected in the first round you should practice more online tests.then you can easily manage your time.and be cool. so dont worry every thing will become easier and do well.
all the best!!!

Round: HR Interview
Experience: when i faced my HR he asked me to tell three things about me, i.have told generosity,confidence and friendship.and he asked me to elobrate it and i have done well and he goes with the projects that i have done .afterwards he asked about my stream and why it.and i have answered that iam from electrical and electronics background but now a days IT has been entered into every sector and without IT there would be nothing in this world.thats why i choose IT.and asked about my extra curricular activities and iam a sports person too and finally few questions from C and C++.
Tips: Be confident in your speech and try to answer even if not knows the answer well,because they will see how we are trying to answer so dont hesitate to answer.and keep your mind free and every thing will be alright.be cool and all the best

General Tips: start to prpare atleast before one week from the interview.and be cool at any situations and to get speak english fluently practice with your friends and try to converse every thing in english even with customer care, it will be funny to and thats make you to survive your interviews easily...
Skills:
College Name: sri krishna college of engineering and technology
Motivation: in this company there will be friendly environment and there will be less working pressure and have some cultural clubs to have fun with it
Funny Moments: before one week to our placements our friends get started to chat in english and every where we conversed in english it was funny and later we realised how it helped us. so dont bother about others and what they think. just go on with your friends confidently in english...

Interview Questionnaire 

10 Questions

  • Q1. Tell me about yourself
  • Ans. 

    I am a recent graduate with a degree in Computer Science and a passion for software development.

    • Recent graduate with a degree in Computer Science

    • Passionate about software development

    • Experience with programming languages like Java and Python

  • Answered by AI
  • Q2. Tell me about your project
  • Ans. 

    Developed a web-based inventory management system for a retail company

    • Used React for front-end development

    • Implemented RESTful APIs using Node.js and Express for back-end

    • Utilized MongoDB for database management

  • Answered by AI
  • Q3. Difference between primary key and unique key
  • Ans. 

    Primary key uniquely identifies a record in a table, while unique key ensures uniqueness of a column.

    • Primary key cannot have null values, while unique key can have one null value.

    • A table can have only one primary key, but multiple unique keys.

    • Primary key is automatically indexed, while unique key may or may not be indexed.

    • Example: Primary key - employee ID, Unique key - email address

  • Answered by AI
  • Q4. A basic C program to find the frequency of an alphabet in a string
  • Ans. 

    This program calculates the frequency of a given alphabet in a string using a basic C program.

    • Declare an array of size 26 to store the frequency of each alphabet

    • Iterate through the string character by character

    • For each character, check if it is an alphabet

    • If yes, increment the corresponding frequency count in the array

    • Print the frequency of the desired alphabet

  • Answered by AI
  • Q5. 2 trick questions
  • Q6. How you started your day?
  • Ans. 

    I start my day by waking up early, exercising, having a healthy breakfast, and planning my tasks for the day.

    • Wake up early

    • Exercise

    • Have a healthy breakfast

    • Plan tasks for the day

  • Answered by AI
  • Q7. Tell me about your hobbies
  • Ans. 

    I enjoy hiking, reading, and playing the guitar in my free time.

    • Hiking: I love exploring new trails and being in nature.

    • Reading: I enjoy diving into different genres and expanding my knowledge.

    • Playing the guitar: I find it relaxing and love learning new songs.

  • Answered by AI
  • Q8. Do you have any problem in relocation?
  • Ans. 

    No, I am open to relocation for the right opportunity.

    • I am open to relocating for the right job opportunity

    • I have relocated in the past for career advancement

    • I am flexible and adaptable to new environments

  • Answered by AI
  • Q9. What if you are sent to Coimbatore? How will you manage there?
  • Ans. 

    I am adaptable and resourceful, so I will manage well in Coimbatore.

    • Research about the city's culture, language, and local amenities.

    • Connect with local professionals or expats for guidance and support.

    • Explore transportation options and create a budget for living expenses.

    • Stay open-minded and embrace the new experience with enthusiasm.

  • Answered by AI
  • Q10. Questions on modern day technology

Interview Preparation Tips

Round: Test
Experience: This round is the most common round in a general campus recruitment procedure. I have been practising for this round for quite some time, like for 4-5 months. And finally the day came. It was on 1st of September 2016. So it is still fresh in my mind. The test started at somewhere around 2 p.m (as because the number of computers were less than the number of applicants, so we were divided into batches). I was confident enough with the paper as i practised many of them at the time of preparation. We have been told that the paper will be adaptive type. But those who gave the test denied this fact. There were three rounds, aptitude, followed by verbal and logical reasoning. I was tensed at the time of the test as i was fresher and many had expectations from me. Verbal round was easy ( many questions were common with the previous years questions), logical round was easy too, but the aptitude round was a bit tricky. I did some grave mistakes in the aptitude round. So after the test was completed, i was surely not confident with the aptitude portion,(If you are unable to clear one of them, no matter how well you score in the others, you will be rejected). In the evening the results came and luckily i was selected for the second round i.e the technical round.
Tips: KEEP PRACTISING THE QUESTIONS..!! Solve questions online as the final test will be machine based and not written. try to solve the question quickly. If possible, buy an aptitude book and solve questions from there. In the final test, If you can't solve a question, SIMPLY LEAVE it and go for the next question. NEVER EVER TRY TO SEE WHAT OTHERS ARE DOING. Its a grave mistake and can cost you your career. Do your best. Believe in yourself and let your hard work speak..!!
Good luck.!!
Duration: 55 minutes
Total Questions: 55

Round: Technical Interview
Experience: The technical round started at around 10-11 a.m. The interviewer was young and neutral at expression. It wasn't easy to judge how the interviewer was. He started with the default question which was "TELL ME ABOUT YOURSELF". I practised that question for about 1000 times and as expected i nailed it. Then he went through my resume. I had included C,JAVA and DBMS as my skill sets. So the questions were from that portions only. i some how managed to answer them all. But i answered wrong in many of them. Seeing the body language of the recruiter. i was sure that i failed to impress him and i'll get rejected. But at last he asked 2 trick questions and i answered it LIKE A BOSS.!! That was the turning point of my interview and he was impressed with that. My interview was over there and shortly after, i was told that i was selected for the HR round. I was too excited as i was selected for the HR round.
Tips: PRESENCE OF MIND IS THE KEY..!!! No matter how many wrong answers you give. One impressive right answer can get you your job. Recruiter is no machine or God. He is also a man. Be confident, speak well and to the point. If you don't know the answer, at least try once. Don't be overconfident and over smart. Be yourself. Practise Tell me about yourself thoroughly.

Round: HR Interview
Experience: This round is simple conversation round. The HR will ask you question to see what you are. Your behaviour, your body language, your temper, etc, There is no rocket science to crack this round. If you manage to qualify for this round, Consider 90% job done. Be frank, jolly, answer questions to the point. Try to mix up with him. and always KEEP A SMILE ON YOUR FACE. You will definitely qualify..!!
Tips: BE CONFIDENT & BE YOURSELF..!!

General Tips: Start practising for the aptitude round from 4-5 months before the actual test. Practise from various enlisted websites. It helps a lot..!! Believe me. Strengthen your basic concepts. Give only those subjects in your resume with whom you are confident with. Do add your extra curricular activities. It helps.
Skills: Proficiency In English, Basic Concepts Of Launguages, Basic Coding, Presence Of Mind, Confidence
College Name: st.thomas college of engineering and technology
Motivation: Infosys is a big company with a very good reputation in the market. loads and loads of people are orking in the company which itself says how the company is.
Funny Moments: There were many. I am a bit humorous. So it was easy for me to make the environment light. Though i didn't cracked any joke, but my body language made it so..!!! I was asked that how will i manage with the transport system of the new place where i will go to work. As i am from Kolkata (one of the most busiest public transport system is here), i said that "Sir i have managed with the public transport here in Kolkata, transport in other city is a piece of cake for me..!!", and we both laughed. :-P

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Nov 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Java 8 features and angular questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep improve your skills simutaniously attempt job
Contribute & help others!
anonymous
You can choose to be anonymous

Alacriti Interview FAQs

What are the top questions asked in Alacriti Software Engineer interview?

Some of the top questions asked at the Alacriti Software Engineer interview -

  1. Let 1=1 2+2=2*2=2 2 ......................................... X+x+x+x+.......read more
  2. Puzzles based on Rubix c...read more
  3. Puzzles based on Highest sum in a row algori...read more

Recently Viewed

SALARIES

Amazon Sellers Services

No Salaries

SALARIES

Amazon Sellers Services

SALARIES

Amazon Sellers Services

SALARIES

Amazon Sellers Services

DESIGNATION

SALARIES

Amazon Sellers Services

SALARIES

Alacriti

SALARIES

Alacriti

SALARIES

Amazon Sellers Services

SALARIES

Amazon Sellers Services

Tell us how to improve this page.

Anonymously discuss salaries, work culture, and many more

Get Ambitionbox App

Alacriti Software Engineer Salary
based on 17 salaries
₹6 L/yr - ₹10.7 L/yr
5% more than the average Software Engineer Salary in India
View more details

Alacriti Software Engineer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

3.0

Skill development

4.0

Work-life balance

4.0

Salary

4.0

Job security

4.0

Company culture

4.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
Associate Software Engineer
20 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
17 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
8 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Software Developer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Database Analyst
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Alacriti with

BillDesk

3.2
Compare

Paytm

3.3
Compare

Razorpay

3.6
Compare

PhonePe

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