Upload Button Icon Add office photos

Filter interviews by

24/7 Customer Software Developer Interview Questions, Process, and Tips

Updated 21 Mar 2022

24/7 Customer Software Developer Interview Experiences

1 interview found

Software Developer Interview Questions & Answers

user image CodingNinjas

posted on 21 Mar 2022

I was interviewed before Mar 2021.

Round 1 - Face to Face 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Medium

Technical Interview round with questions on DSA.

  • Q1. Reverse words in a string

    You are given a string of length N. You need to reverse the string word by word. There can be multiple spaces between two words and there can be leading or trailing spaces but in ...

  • Ans. 

    Steps :
    1. Initially, reverse the individual words of the given string one by one. 
    2. Reverse the whole string from start to end to get the desired output

  • Answered by CodingNinjas
  • Q2. Reverse a stack

    Reverse a given stack of integers using recursion.

    Note:

    You are not allowed to use any extra space other than the internal stack space used due to recursion.
    You are not allowed to use ...
  • Ans. 

    Recursion can be used to reverse a stack. In this approach, we pop the top element from the given stack and recursively call another instance of the same function. When this child function returns to the parent function, append the popped element to the bottom of the stack. For this, two recursive functions can be used: reverseStack() and insertAtBottom(). 


    reverseStack():
    It checks if the stack is empty or not. The...

  • Answered by CodingNinjas
Round 2 - Face to Face 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Medium

Technical Interview round with questions on DSA.

  • Q1. Convert a Binary Tree to its Mirror Tree

    Given a binary tree, convert this binary tree into its mirror tree.

    A binary tree is a tree in which each parent node has at most two children.

    Mirror of a Tree...

  • Ans. 

    This can be solved using recursion. 
    Steps :
    (1) Call Mirror for left-subtree i.e., Mirror(left-subtree)
    (2) Call Mirror for right-subtree i.e., Mirror(right-subtree)
    (3) Swap left and right subtrees.
    temp = left->subtree
    left->subtree = right->subtree
    right->subtree = temp

    Worst-case Time complexity is O(n) 
    Auxiliary space complexity : O(h) where h is the height of the tree.

  • Answered by CodingNinjas
  • Q2. Delete Nth node from end of Linked List

    You have been given a singly Linked List of 'N' nodes with integer data and an integer 'K'. Your task is to remove the Kth node from the end of the g...

  • Ans. 

    Intuition:
    Lets K be the total nodes in the linked list.
    Observation : The Nth node from the end is (K-N+1)th node from the beginning.
    So the problem simplifies down to that we have to find (K-N+1)th node from the beginning.

    One way of doing it is to find the length (K) of the linked list in one pass and then in the second pass move (K-N+1) step from the beginning to reach the Nth node from the end.
    To do it in one pass. Le...

  • Answered by CodingNinjas
Round 3 - HR 

(1 Question)

Round duration - 30 minutes
Round difficulty - Easy

Typical Managerial round.

  • Q1. Basic HR Questions

    1. Behavioral questions like why are you leaving current company?
    2. Why 24*7?
    3. What technologies do you want to learns and work on etc ?


     

  • Ans. 

    Tip 1 : The cross questioning can go intense some time, think before you speak.

    Tip 2 : Be open minded and answer whatever you are thinking, in these rounds I feel it is important to have opinion.

    Tip 3 : Context of questions can be switched, pay attention to the details. It is okay to ask questions in these round, like what are the projects currently the company is investing, which team you are mentoring. How all is the

  • Answered by CodingNinjas

Interview Preparation Tips

Eligibility criteriaAbove 6 months of experience24/7 customer private limited interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 5 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 questions from similar companies

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

I applied via Campus Placement

Round 1 - Aptitude Test 

Question related to operating system and computer network

Round 2 - Technical 

(1 Question)

  • Q1. Traverse all child nodes in tree
Round 3 - Technical 

(1 Question)

  • Q1. Question related to cloud and oops
Round 4 - Technical 

(1 Question)

  • Q1. Question related to my background and how web site work
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Coding Test 

In first round 4 coding question like 1 dsa 2 database and one is api and question is very simple . coding round was conducted in hackerrank

Round 2 - Technical 

(2 Questions)

  • Q1. DSA QUESTION LIKE TREE AND GRAPH
  • Q2. DP AND SORTING APPROACH
Round 3 - Coding Test 

Again same but dsa question and oops concept in deep level

Interview Preparation Tips

Interview preparation tips for other job seekers - good knowledge in dsa , database , programming thats it
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What are the key concepts of Object-Oriented Programming (OOP)?
  • Ans. 

    Key concepts of OOP include encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (object).

    • Inheritance: Allowing a class to inherit properties and behavior from another class.

    • Polymorphism: Objects of different classes can be treated as objects of a common superclass.

    • Abstraction: Hiding complex implementation details and showing onl

  • Answered by AI
  • Q2. What is the internal working mechanism of a HashMap?
  • Ans. 

    HashMap is a data structure that stores key-value pairs and uses hashing to quickly retrieve values based on keys.

    • HashMap internally uses an array of linked lists to store key-value pairs.

    • When a key-value pair is added, the key is hashed to determine the index in the array where the pair will be stored.

    • If multiple keys hash to the same index (collision), a linked list is used to store these pairs.

    • To retrieve a value, t...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

I applied via Campus Placement and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Bubble sort and array was given
  • Q2. Create binary tree
  • Ans. 

    A binary tree is a data structure where each node has at most two children.

    • Start by creating a Node class with left and right child pointers.

    • Implement methods to insert, search, and delete nodes in the tree.

    • Consider different traversal methods like inorder, preorder, and postorder.

  • Answered by AI
  • Q3. HightBuilding Pattern

Interview Preparation Tips

Interview preparation tips for other job seekers - just go through strivers videos

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Coding Test 

2medium level questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Project discussion for 30 mins
  • Q2. Dsa problem medium level
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(5 Questions)

  • Q1. String reverse
  • Q2. Dsa linked lists
  • Q3. Linked lists reverse
  • Q4. Map unique elements
  • Ans. 

    Map unique elements in an array of strings

    • Create a map to store unique elements

    • Iterate through the array and add each element to the map as a key

    • Retrieve the keys of the map to get the unique elements

  • Answered by AI
  • Q5. Sets find elements in set
  • Ans. 

    Sets are data structures that store unique elements and can be used to efficiently find elements in the set.

    • Sets do not allow duplicate elements, so each element in a set is unique.

    • To find elements in a set, you can use the 'has' method to check if a specific element is present in the set.

    • Sets are commonly used in programming for tasks like removing duplicates from a list or checking for the presence of specific elemen

  • Answered by AI

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Rest Apis questions
Round 2 - One-on-one 

(1 Question)

  • Q1. Core java and OOPS and LLD

Interview Preparation Tips

Interview preparation tips for other job seekers - Good understanding of Core language and its framework

Software Developer Interview Questions & Answers

Amadeus user image Aswini Ramachandran

posted on 2 Oct 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Something based on hashet
  • Q2. Same with this too
Round 2 - Aptitude Test 

Basic questions were given..bar graphs,pie charts

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

(2 Questions)

  • Q1. Questions on Oops concepts
  • Q2. Questions on design patterns

Tell us how to improve this page.

24/7 Customer Software Developer Salary
based on 16 salaries
₹6.8 L/yr - ₹21 L/yr
75% more than the average Software Developer Salary in India
View more details

24/7 Customer Software Developer Reviews and Ratings

based on 3 reviews

4.4/5

Rating in categories

3.4

Skill development

4.4

Work-Life balance

3.8

Salary & Benefits

4.2

Job Security

4.6

Company culture

3.6

Promotions/Appraisal

3.8

Work Satisfaction

Explore 3 Reviews and Ratings
Digital Interaction Advisor
1.2k salaries
unlock blur

₹1 L/yr - ₹4.5 L/yr

Digital Interactive Specialist
1k salaries
unlock blur

₹1 L/yr - ₹5.5 L/yr

Advisor
512 salaries
unlock blur

₹1 L/yr - ₹5 L/yr

Digital Interaction Executive
391 salaries
unlock blur

₹1.2 L/yr - ₹5.5 L/yr

Executive
278 salaries
unlock blur

₹2 L/yr - ₹5.2 L/yr

Explore more salaries
Compare 24/7 Customer with

WNS

3.4
Compare

Genpact

3.9
Compare

Concentrix Corporation

3.8
Compare

Teleperformance

3.9
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