Upload Button Icon Add office photos
Engaged Employer

i

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

Ceipal Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Ceipal Interview Questions, Process, and Tips

Updated 30 Nov 2023

Top Ceipal Interview Questions and Answers

Ceipal Interview Experiences

Popular Designations

5 interviews found

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

I applied via Walk-in and was interviewed in Jan 2023. There were 5 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 - Aptitude Test 

5 qsns apptitude
5 reasoning
5 teche

Round 3 - Technical 

(3 Questions)

  • Q1. Palindrome Max element in array Duplicates in array Length of string Number of "l" present in hello world Odd number Prime number Class and obj Sorting Html table create Anchor element Image element Drop d...
  • Ans. 

    The question covers various topics related to programming and web development.

    • Palindrome - Check if a string reads the same forwards and backwards.

    • Max element in array - Find the largest element in an array.

    • Duplicates in array - Identify and handle duplicate elements in an array.

    • Length of string - Determine the number of characters in a string.

    • Number of 'l' present in hello world - Count the occurrences of a specific c...

  • Answered by AI
  • Q2. Max element in array
  • Ans. 

    Finding the maximum element in an array.

    • Iterate through the array and keep track of the maximum element seen so far.

    • Use built-in functions like Math.max() or spread operator to find the maximum element.

    • For large arrays, consider using divide and conquer algorithms like binary search.

  • Answered by AI
  • Q3. Print Duplicates in array
  • Ans. 

    Print duplicates in an array

    • Iterate through the array and use a hash table to keep track of seen elements

    • If an element is already in the hash table, print it as a duplicate

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. Separate of numbers from string Sql joins Expection handling Distinct elements in two arrays
  • Ans. 

    Answering interview questions on SQL joins, exception handling, and array manipulation.

    • To separate numbers from a string, use regular expressions or string manipulation functions.

    • SQL joins are used to combine data from multiple tables based on a common column.

    • Exception handling is used to gracefully handle errors in code.

    • To find distinct elements in two arrays, use array_diff() function in PHP or similar functions in o

  • Answered by AI
Round 5 - HR 

(1 Question)

  • Q1. Not yet received call

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and honesty. Prepare your resume very well.

Skills evaluated in this interview

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 (220)
Interview experience
4
Good
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 - Aptitude Test 

They conduct aptitude test on main concept s in aptitude and reasoning questions and also verbal questions

Round 3 - Coding Test 

They are conduct questions on core php and some logical questions on coding

Round 4 - Technical 

(1 Question)

  • Q1. Asking technical question on html, css, JS, jQuery, SQL, java ,php and writing and execute codes
Round 5 - Technical 

(1 Question)

  • Q1. Asking Advanced level technical questions and real time scenarios
Round 6 - HR 

(1 Question)

  • Q1. In this round only discussion on salary, training period, company policies , and so on..

Php Full Stack Developer Interview Questions asked at other Companies

Q1. Common #1 - What if an issue arise on a "Production" server that we can't troubleshoot in "Staging" or "Local", So how to fix that issue ?
View answer (1)
Round 1 - Coding Test 

Here you may face both Theoretical questions and code knowledge.

Round 2 - Technical 

(1 Question)

  • Q1. In-depth knowledge on particular skill
Round 3 - HR 

(2 Questions)

  • Q1. About your experiences
  • Q2. Salary discussion based on the experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Very best company in level 3,
Redirect hit will work here for interview need to prepare something.

Senior Software Engineer Interview Questions asked at other Companies

Q1. Tell me about yourself. What technology are you using? What is a Collection? What are the different types of collection there? What is the difference between ArrayList and LinkedList What are the basic building blocks of Stream operators, s... read more
View answer (2)

Interview Questionnaire 

1 Question

  • Q1. What do u know abt role & company.
  • Ans. 

    The role of a Customer Support Executive is to provide assistance and resolve customer issues. The company is a leading provider of customer support services.

    • Customer Support Executive provides assistance and resolves customer issues

    • Company is a leading provider of customer support services

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be fully prepared with role & every relevant information abt company

Customer Support Executive Interview Questions asked at other Companies

Q1. Understanding customer problems,whT i know about BPO nd how they work,how i will handle a difficult nd angry customer,i can satisfied my client.
View answer (22)

Ceipal interview questions for popular designations

 Customer Support Executive

 (1)

 Php Full Stack Developer

 (1)

 Software Engineer

 (1)

 Senior Software Engineer

 (1)

 Sales Executive

 (1)

I applied via Naukri.com and was interviewed before May 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. About Sales process. What competencies are required for a good sales representative?

Interview Preparation Tips

Interview preparation tips for other job seekers - 2 functional interviews and 1 HR interview

Sales Executive Interview Questions asked at other Companies

Q1. Do you know what is selling and how you can sell it?
View answer (52)

Interview questions from similar companies

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

I applied via Campus Placement and was interviewed in Apr 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 - Coding Test 

Platform - Mettl
3 Questions of medium level difficulty to do in 2 hours, typically contain concepts like DSA, DP etc.

Round 3 - Technical 

(3 Questions)

  • Q1. What is structure padding?
  • Ans. 

    Structure padding is the insertion of unused bytes between structure members to align them on memory boundaries.

    • Padding is added to ensure that each member of a structure starts at a memory address that is a multiple of its size.

    • Padding is compiler-dependent and can vary between different platforms and architectures.

    • Padding can affect the size of a structure and the performance of the program.

    • Example: struct example { ...

  • Answered by AI
  • Q2. College Project discussion
  • Q3. Form a dictionary from name.
  • Ans. 

    Forming a dictionary from name

    • Create an empty dictionary

    • Iterate through each character in the name

    • Add the character as a key and its frequency as value in the dictionary

  • Answered by AI

Skills evaluated in this interview

Associate Interview Questions & Answers

SOTI user image Gurubalaji Balaji

posted on 1 Jul 2024

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

Easy coding round ,like 2d array,pattern

Round 2 - Assignment 

It makes to develop any static website or any static project techniques

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

1 hour 3 questions easy to medium leetcode.

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Coding Test 

There will be 3 coding questions given to us for solving,we need solve two questions compulsory.

Round 2 - HR 

(2 Questions)

  • Q1. Introduce yourself
  • Ans. 

    I am a software engineer with 5 years of experience in developing web applications using Java, Spring, and Angular.

    • 5 years of experience in software development

    • Proficient in Java, Spring, and Angular

    • Strong problem-solving skills

  • Answered by AI
  • Q2. Questions related to frontend
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Coding Test 

Questions were high level

Interview Preparation Tips

Topics to prepare for SOTI Software Engineer interview:
  • array
  • Data Dictionary
  • tree
Interview preparation tips for other job seekers - before applying to soti you should have a good coding skill

Ceipal Interview FAQs

How many rounds are there in Ceipal interview?
Ceipal interview process usually has 3-4 rounds. The most common rounds in the Ceipal interview process are Technical, HR and Coding Test.
How to prepare for Ceipal 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 Ceipal. The most common topics and skills that interviewers at Ceipal expect are Software Sales, MySQL, Java, Product Sales and Software Solution Sales.
What are the top questions asked in Ceipal interview?

Some of the top questions asked at the Ceipal interview -

  1. Palindrome Max element in array Duplicates in array Length of string Number of ...read more
  2. Separate of numbers from string Sql joins Expection handling Distinct elements ...read more
  3. Max element in arr...read more

Tell us how to improve this page.

Ceipal Interview Process

based on 5 interviews

Interview experience

4.4
  
Good
View more

Interview Questions from Similar Companies

Darwinbox Interview Questions
3.9
 • 44 Interviews
Grey Orange Interview Questions
3.2
 • 38 Interviews
Mobileum Interview Questions
3.3
 • 37 Interviews
CodeClouds Interview Questions
4.5
 • 36 Interviews
Sakon Interview Questions
3.2
 • 30 Interviews
SirionLabs Interview Questions
3.8
 • 23 Interviews
SOTI Interview Questions
3.3
 • 23 Interviews
View all

Ceipal Reviews and Ratings

based on 117 reviews

3.1/5

Rating in categories

3.0

Skill development

3.1

Work-life balance

3.1

Salary

2.5

Job security

3.0

Company culture

2.9

Promotions

3.0

Work satisfaction

Explore 117 Reviews and Ratings
Product Support Specialist

Noida,

Hyderabad / Secunderabad

1-3 Yrs

Not Disclosed

Explore more jobs
Software Engineer
66 salaries
unlock blur

₹2.9 L/yr - ₹10 L/yr

Junior Software Engineer
42 salaries
unlock blur

₹3 L/yr - ₹7 L/yr

Senior Software Engineer
37 salaries
unlock blur

₹5 L/yr - ₹18.2 L/yr

Softwaretest Engineer
34 salaries
unlock blur

₹3.1 L/yr - ₹9 L/yr

Software Developer
15 salaries
unlock blur

₹3.2 L/yr - ₹9.4 L/yr

Explore more salaries
Compare Ceipal with

AgreeYa Solutions

3.3
Compare

Grey Orange

3.2
Compare

Mobileum

3.3
Compare

Agilysys Technologies India

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