Upload Button Icon Add office photos
Engaged Employer

i

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

Chetu Verified Tick

Compare button icon Compare button icon Compare
3.2

based on 970 Reviews

Filter interviews by

Chetu Full Stack Developer Interview Questions and Answers for Freshers

Updated 24 Dec 2024

Chetu Full Stack Developer Interview Experiences for Freshers

1 interview found

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

Basic aptitude test with technical and non technical question

Round 2 - Technical 

(1 Question)

  • Q1. What is event loop

Interview questions from similar companies

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

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

Round 1 - Technical 

(4 Questions)

  • Q1. Very basic top 50 questions on internet, basic java, inheritance, oops, solid, collections
  • Q2. Diff between abstract and interface, method overloading, overriding, microservices, how do microservice communicate
  • Ans. 

    Abstract class is a class that cannot be instantiated, while an interface is a blueprint of a class with only abstract methods.

    • Abstract class cannot be instantiated, but can have both abstract and non-abstract methods.

    • Interface can only have abstract methods and cannot have method implementations.

    • Method overloading is having multiple methods in the same class with the same name but different parameters.

    • Method overridin...

  • Answered by AI
  • Q3. Spring boot annotations, DI, hibernate, bean scopes
  • Q4. Fibonacci series print

Interview Preparation Tips

Interview preparation tips for other job seekers - HR is very rude, they want to schedule interview in same day within 1 hour of notice. they just want to complete their daily interview list i guess. because interview was so so easy, just top 50 java interview questions on internet. but they just rejected after 5 mins of finishing interview.

Skills evaluated in this interview

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

Coding questions related to trees and graphs

Round 2 - Technical 

(2 Questions)

  • Q1. Anagrams related
  • Q2. Sorting related
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Sethu Institute of Technology, Madurai and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Group Discussion 

A groups of 10 were formed for GD

Round 2 - Coding Test 

The question were very basic related to OOPS.

Interview Preparation Tips

Topics to prepare for AVASOFT Software Developer interview:
  • Python
  • OOPS
Interview preparation tips for other job seekers - As a fresher all I can advise is to prepare well and stay confident.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
No response

I applied via Job Portal and was interviewed in Dec 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Online Coding test conducted virtually .

Round 2 - One-on-one 

(1 Question)

  • Q1. Python fundamentals and java fundamentals
Round 3 - HR 

(1 Question)

  • Q1. Asking About us and Background?
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a passionate software developer with experience in Java, Python, and web development.

    • Experienced in Java, Python, and web development technologies

    • Strong problem-solving skills

    • Team player with excellent communication skills

  • Answered by AI
  • Q2. Motivation behind the move
  • Ans. 

    I was motivated to move to this role because of my passion for coding and desire to work on challenging projects.

    • Passion for coding and technology

    • Desire to work on challenging projects

    • Opportunity for growth and learning

    • Interest in the company's products or services

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in May 2023. There were 3 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 

(1 Question)

  • Q1. They will ask questions based on what you have mentioned in your resume
Round 3 - One-on-one 

(1 Question)

  • Q1. They have asked about my previous company project and questions related to that

I was interviewed in Sep 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 minutes
Round difficulty - Hard

Test was conducted on Hackerearth. 
Test consist of 3 questions (1 medium strings related question + 1 hard digit dp question + 1 hard lazy segment tree question)

  • Q1.  Given a string, find the next smallest palindrome

    You are given a number 'N' in the form of a string 'S', your task is to find the smallest number strictly greater than the given number &#...

  • Ans. Palindromic String

    In this method, Before we start let us define what is the right half (or right part) and what is left half (or left part) in the string. There can be two cases based on the length of the string:

     

    • Case-1: (Odd length string), consider the string “1234567”, the part of the string “123” is the left part(or left half) and the part “567” is the right part(or right half), and the one left(4) is called t...
  • Answered by CodingNinjas
  • Q2. Count all sub-arrays having sum divisible by k

    Given an array ‘ARR’ and an integer ‘K’, your task is to find all the count of all sub-arrays whose sum is divisible by the given integer ‘K’.

    Note:
    If ther...
  • Ans. Brute Force (Time Limit Exceed)

    The basic idea is that try each and every possible subarray and find the sum of the current subarray and check if the current sum is divisible by ‘K’. 

     

    • To implement this approach we use two nested loops and one ‘COUNT’ variable to store all subarray with sum divisible by ‘K’ and initially ‘COUNT’ is ‘0’.
    • Iterate outer loop ‘i’ from ‘0’ to ‘N-1’ for every position of ‘ARR’.
    • Add che...
  • Answered by CodingNinjas
  • Q3. Minimum Operations To Make Array Equal

    You are given an array ‘ARR’ of length ‘N’ which is filled with the values such that ARR[i] = (2*i + 1). You have to perform operations on the ‘ARR’ to make all eleme...

  • Ans. Brute Force
    • The idea behind this approach is we have to calculate the average of all the elements of the array ‘ARR’ because the sum of all elements of the array always remains constant.
    • So calculating the average will help us to virtually divide the elements into two halves around the average i.e left and the right. So calculating the answer for the left half only will be our required answer. It is because in one operat...
  • Answered by CodingNinjas
Round 2 - Video Call 

(5 Questions)

Round duration - 90 Minutes
Round difficulty - Medium

Timing : 8:00 am - 9:30 am
The interview took place on google meet. The interviewer gave 1 coding question on google docs and have to write the code on google doc itself.
After 45 minutes a second interviewer came in the same meeting and he also gave a coding question in the same google doc.

  • Q1. Rank from Stream

    You are given an array of ‘N’ integers say ‘ARR’ and provided with other integer say ‘K’. Now you have to find the Rank of ‘ARR[K]’.

    Note:

    The rank of any element in ‘ARR’ is equal to t...
  • Ans. Binary Search Tree

    The idea is to use the binary search tree.

     

    First of all, we will make a binary search tree say ‘BST’ from the given array ‘ARR’ after this we can use ‘BST’ to find the rank of ‘ARR[K]’.

    Each node of ‘BST’ will store the data value and size of its left subtree.

     

    Here is the complete algorithm:

     

    Step 1- Making the ‘BST’ :

     

    Let insert(TreeNode* <int> ROOT, int VAL) be a function whi...

  • Answered by CodingNinjas
  • Q2. Edit Distance

    You are given two strings 'S' and 'T' of lengths 'N' and 'M' respectively. Find the "Edit Distance" between the strings.

    Edit Distance of two strin...

  • Ans. Recursive Approach
    • We will write a recursive approach.
    • The base case would be if the length of the first string is 0 then we need to add all the characters of the second string to the first string hence return the length of the second string. Similarly, if the length of the second string is 0 return length of the first string.
    • Now the recurrence relation is as follows:
      • If the last characters of two strings are not the same...
  • Answered by CodingNinjas
  • Q3. OS Questions

    Process vs thread
    why we do threading, advantages of multithreading.
    What is context switching?
    Where do we store the process data when we do the context switching.
    Memory layout of process.
    What fi...

  • Q4. DBMS Questions

    What is concurrency control is dbms.
    How is synchronization done in readers and writers.

  • Q5. Technical Questions

    Explain meta tags in HTML

    What Is Load Balancing?

    Explain the CSS “box model” and the layout components that it consists of

Round 3 - Video Call 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

Timing : 10:30 am - 11:30 am
The interview took place on google meet. The interviewer gave 1 coding question on google docs and have to write the code on google doc itself.

  • Q1. Count of Smaller Elements

    Given an array of size 'N' return the count array such that COUNT[i] equals the number of element which are smaller than ARR[ i ] on its the right side.

    For Example : A...

  • Ans. Brute force

    The main idea is for every element to count the number of elements less than ARR[i] on its right using a loop.

     

    Algorithm:

    • Create an ‘ANSWER’ array of size ‘N’ with an initial value 0.
    • Run a loop from ‘i’ = 0 to ‘N’. Inside this run another loop from ‘j’ = ‘i+1’ to ‘N’. If  ARR[i] > ARR[j] then increment the ANSWER[i].
    • In the end, return the ‘ANSWER’ array.
    Space Complexity: O(1)Explanation:

    O(1)

    &nbs...

  • Answered by CodingNinjas
  • Q2. OS Questions

    What is critical section.
    How does mutex work.
    How does semaphores work and how it is implemented.
    Binary vs counting semaphores.
    Difference betweek mutex and binary semaphore.
    Can we replace a code...

Round 4 - HR 

(1 Question)

Round duration - 15 Minutes
Round difficulty - Easy

Timing : 11:45am - 12:00 pm.
The interview took place on google meet.

  • Q1. Basic HR Questions

    Introduce yourself.
    Tell me about your family and friends.
    Tell me somthing that you love to do.
    What do you expect from Sprinklr.
    Where do you want to see yourself from 3-4 years from now.

  • Ans. 

    Tip 1 : Be confident while giving the answer
    Tip 2 : Be honest while sharing your thoughts.
    Tip 3 : Be prepared with your answers for the most asked HR interview questions.

  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Full Stack Engineer in DelhiEligibility criteria7 CGPASprinklr interview preparation:Topics to prepare for the interview - Data structures and Algorithms, Object Oriented Programming, Operating Systems, Database Managament System, Computer Networks, System DesignTime required to prepare for the interview - 6 MonthsInterview preparation tips for other job seekers

Tip 1 : Practice data structures and algorithms daily.
Tip 2 : Do at least one project and be ready with any type of questions based on the project.
Tip 3 : Have a proper understanding of all the CS fundaments and OOPs concepts.
Tip 4 : If you have have learn basics of system design.

Application resume tips for other job seekers

Tip 1 : Do not mention such skills in which you are not so confident.
Tip 2 : Have at least one project.
Tip 3 : Do not keep so much of empty spaces.
Tip 4 : Use hyperlinks to attach your programming accounts and project (if it is hosted somewhere or else github).

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed in Oct 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 50 Minutes
Round difficulty - Medium

1 Coding question

  • Q1. Meeting

    Ninja is organizing a meeting in an office that starts at a time ‘0’ and will end at a time ‘LAST’. There are ‘N’ presentations that are going to take place in that meeting whose start and end time...

  • Ans. Brute Force Approach

    Algorithm:

     

    • The idea here is to find the maximum sum subarray of size ‘K+1’, where the array will contain empty slots.
    • First, we create an array named emptySlots[], to store the time duration in which there is no presentation.
    • Run a loop to traverse all presentations, and in each iteration, add START[i] - END[i-1] (which gives a free slot between the ith presentation) into the array emptySlots[].
    • N...
  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Developer in GurgaonEligibility criteriaabove 6.5 CGPACvent interview preparation:Topics to prepare for the interview - Data Structures, Algorithms ( Sorting, Searching, Recursion, Graph algos,DP etc) , Operating System, Computer Networking, DBMS ( SQL and No Sql databases), Programming Languages ( C++, Java, Python), Object Oriented Programming, Web development ( MERN technology)Time required to prepare for the interview - 8 monthsInterview preparation tips for other job seekers

Tip 1 : First Learn Basic Programming Concepts start with c/c++ then go for different data structures and basic algorithms
Tip 2 : Start doing CP ( competitive programming on different platforms ), Make sure you are consistent this way you will most likely become good in cp 
Tip 3 : Always stay in touch with those important subjects which are asked in interviews. Start learning web development or android/ios apps development or ML whatever you think you like work on some projects. Interviewer sometimes asks about your projects. If you have worked as an intern somewhere make sure you put it in resume as well as the kind of work you have done there

Application resume tips for other job seekers

Tip 1 : Make sure you put your skills in order in which you are good. 
Tip 2 : Put projects and Intern details ( If worked somewhere as imtern)
Tip 3 : Make it easily readable, Keeps the points in focus which you want them to see

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 Minutes
Round difficulty - Medium

It was an online technical round. There were around 20 MCQs and two coding questions. The round had an login window of 30 minutes. One coding question was of the level leetcode medium and the other was leetcode hard.

  • Q1. Search in a row wise and column wise sorted matrix

    You are given an N * N matrix of integers where each row and each column is sorted in increasing order. You are given a target integer 'X'. Find t...

  • Ans. Brute Force
    • Run a loop from i = 0 to N - 1, to check each row.
      • Run a loop from j = 0 to N - 1, to check each element of the row.
        • If there is a match, return {i, j}.
    • If the element is not found in the entire matrix, return {-1, -1}
    Space Complexity: O(1)Explanation:

    O(1).

     

    Since only constant extra space is required.

    Time Complexity: O(n^2)Explanation:

    O(N ^ 2), where ‘N’ is the number of rows or columns in the matrix.

    &nb...

  • Answered by CodingNinjas
  • Q2. Euler’s Totient Function

    You are given an integer 'N'. Your task is to count the number of integers between 1 and 'N' both inclusive which are coprime to 'N'.

    Note:
    Two numbers ar...
  • Ans. Euler’s product formula

    The better solution is to use Euler’s product formula which states that the total number of integers between 1 and N - 1 inclusive which are coprime to N can be found using this formula Euler Product Formula N * (1 - (1 / p1)) * (1 - (1 / p2)) *.......* (1 - (1 / pk)) where p1,p2...pk are the prime factors of N.

     

    So now the problem is to find all the prime factors and use the above formula.

    &n...

  • Answered by CodingNinjas
Round 2 - Face to Face 

(3 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

It was a technical + HR round. The interview panel consisted of two technical guys and one person from HR.

  • Q1. Sort Array Of Strings

    You are given an array of strings 'ARRSTR[]' of size 'N' and a character 'C'. Your task is to sort the 'ARRSTR[]' according to the new alphabetical ord...

  • Ans. HashMap Approach

    Approach: The idea here is to use a data structure HashMap to store each character’s order in the new alphabetical order, starting with a letter c (given in the problem). Now, start comparing the strings in the ‘ARRSTR[]’ using HashMap that has been created to define the order.

     

    Suppose that we are comparing two strings of ‘ARRSTR[]’ named ‘X’ and ‘Y’. Let us assume that we have found the first diff...

  • Answered by CodingNinjas
  • Q2. DBMS Question

    What are ACID Properties?
    What is a foriegn key?
    Some SQL Queries on JOINS

  • Q3. OOPS Questions

    Explain Pillars of OOPS

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from Amity School Of Engineering And Technology. I applied for the job as SDE - 1 in BengaluruEligibility criteriaAbove 7.5 CGPA, No BacklogsAmadeus interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, OOPS, Database Manangement Systems, SQL Queries, Greedy and DP Problems, Basics of Computer Networks.Time required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Practice questions on CP platforms such as codechef and codeforces. It will greatly help you for clearing coding round.
Tip 2 : Make notes of theory Subjects. It will greatly help you in last minute preparation.
Tip 3 : Go through the interview experience of the company before hand.
Tip 4 : Practice questions by narrating the explaination. Else it gets very difficult to both explain and code at the same time of interview.

Application resume tips for other job seekers

Tip 1 : Never lie on the resume. If you are not confident about something dont add it.
Tip 2 : Have atleast 2 projects on resume.
Tip 3 : Dont make it colourful. Follow any formal standard template.
Tip 4 : Add links to the project or your work if possible.
Tip 5 : Have only one Page. Dont write stories.

Final outcome of the interviewSelected

Skills evaluated in this interview

Chetu Interview FAQs

How many rounds are there in Chetu Full Stack Developer interview for freshers?
Chetu interview process for freshers usually has 2 rounds. The most common rounds in the Chetu interview process for freshers are Aptitude Test and Technical.
How to prepare for Chetu Full Stack Developer interview for freshers?
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 Chetu. The most common topics and skills that interviewers at Chetu expect are .Net, .Net Core, API, C# and CSS.

Tell us how to improve this page.

Chetu Full Stack Developer Salary
based on 29 salaries
₹4 L/yr - ₹10.2 L/yr
17% less than the average Full Stack Developer Salary in India
View more details

Chetu Full Stack Developer Reviews and Ratings

based on 5 reviews

2.4/5

Rating in categories

3.8

Skill development

1.8

Work-Life balance

1.9

Salary & Benefits

1.5

Job Security

1.5

Company culture

3.7

Promotions/Appraisal

3.3

Work Satisfaction

Explore 5 Reviews and Ratings
Software Engineer
1.2k salaries
unlock blur

₹2.5 L/yr - ₹10.4 L/yr

Software Developer
1k salaries
unlock blur

₹2 L/yr - ₹9.7 L/yr

Senior Software Engineer
644 salaries
unlock blur

₹4.4 L/yr - ₹10.5 L/yr

Team Lead
284 salaries
unlock blur

₹5 L/yr - ₹13 L/yr

Senior Software Developer
216 salaries
unlock blur

₹4.9 L/yr - ₹11 L/yr

Explore more salaries
Compare Chetu with

TCS

3.7
Compare

Infosys

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