Upload Button Icon Add office photos
Engaged Employer

i

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

Cubastion Consulting Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Cubastion Consulting Interview Questions and Answers

Updated 26 May 2025
Popular Designations

7 Interview questions

A Senior Associate Consultant was asked 3mo ago
Q. What is GraphQL and why do we use it?
Ans. 

GraphQL is a query language for APIs that allows clients to request specific data, improving efficiency and flexibility.

  • Allows clients to request only the data they need, reducing over-fetching and under-fetching.

  • Supports real-time data updates through subscriptions, enabling dynamic applications.

  • Strongly typed schema provides clear documentation and validation of data structures.

  • Example: Instead of fetching a ful...

View all Senior Associate Consultant interview questions
A Graduate Engineer was asked 8mo ago
Q. Describe your implementation of the Sieve of Eratosthenes.
Ans. 

Sieve of Eratosthenes is an algorithm used to find all prime numbers up to a given limit.

  • Create a list of numbers from 2 to the limit.

  • Start with the first number in the list (2) and mark all its multiples as composite.

  • Move to the next unmarked number in the list and repeat the process.

  • Continue until all numbers have been processed, the unmarked numbers are prime.

View all Graduate Engineer interview questions
A Graduate Trainee was asked 10mo ago
Q. Tell me about the DELETE function in SQL.
Ans. 

The DELETE function in SQL is used to remove rows from a table based on specified conditions.

  • DELETE FROM table_name WHERE condition;

  • The DELETE statement without a WHERE clause will delete all rows in the table.

  • It is important to use the WHERE clause to avoid accidentally deleting all data in a table.

  • Deleted rows can be recovered using a backup if needed.

View all Graduate Trainee interview questions
A Manager Learning & Development was asked 11mo ago
Q. How would you create a training module?
Ans. 

Training module on effective communication skills

  • Identify different communication styles

  • Practice active listening techniques

  • Provide feedback on communication exercises

  • Role-play scenarios to improve communication skills

View all Manager Learning & Development interview questions
A Graduate Engineer Trainee (Get) was asked
Q. Write a SQL query to find employees with salaries between a certain range.
Ans. 

SQL query to find employees with salaries in a certain range.

  • Use the SELECT statement to retrieve data from the table.

  • Use the WHERE clause to filter the data based on salary range.

  • Use the BETWEEN operator to specify the salary range.

  • Example: SELECT * FROM employees WHERE salary BETWEEN 50000 AND 70000;

View all Graduate Engineer Trainee (Get) interview questions
A Graduate Engineer Trainee (Get) was asked
Q. What is the use of the WHERE clause?
Ans. 

The WHERE clause is used to filter data in a SQL query.

  • It is used to specify a condition to filter the rows returned in a SELECT statement.

  • It can be used with various operators such as =, <, >, LIKE, etc.

  • It can also be used with logical operators such as AND, OR, NOT.

  • Example: SELECT * FROM customers WHERE age > 18 AND city = 'New York';

View all Graduate Engineer Trainee (Get) interview questions
A Graduate Engineer Trainee (Get) was asked
Q. Given an array of integers, find if there are any two pairs (A, B) and (C, D) such that A + B = C + D. If such pairs exist, return true; otherwise, return false.
Ans. 

Find all unique pairs of indices in an array that sum up to a specific target value.

  • Input: nums = [1, 2, 3, 4, 5], target = 5; Output: [[0, 3], [1, 2]]

  • Use a hash map to store indices of elements for quick lookup.

  • Iterate through the array and check if the complement (target - current) exists.

  • Ensure pairs are unique by using a set to store results.

View all Graduate Engineer Trainee (Get) interview questions
Are these interview questions helpful?

Cubastion Consulting Interview Experiences

20 interviews found

Analyst Interview Questions & Answers

user image Anonymous

posted on 26 May 2025

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview in Apr 2025, where I was asked the following questions.

  • Q1. Three dsa question easy level, fibbonacci series, find missing number in between 1 to n.
  • Q2. Three SQL queries of easy level one was to uppdate the table, second was to count peoples those were not belonging from any departement in employee table.
  • Q3. Oops based questions and java based question of easy level

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare standard questions and communicate well.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Group Discussion 

We were required to discuss on the certain topic.

Round 2 - Technical 

(2 Questions)

  • Q1. Basics Question related my projects
  • Q2. Implementation of seive
  • Ans. 

    Sieve of Eratosthenes is an algorithm used to find all prime numbers up to a given limit.

    • Create a list of numbers from 2 to the limit.

    • Start with the first number in the list (2) and mark all its multiples as composite.

    • Move to the next unmarked number in the list and repeat the process.

    • Continue until all numbers have been processed, the unmarked numbers are prime.

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Create a training module
  • Ans. 

    Training module on effective communication skills

    • Identify different communication styles

    • Practice active listening techniques

    • Provide feedback on communication exercises

    • Role-play scenarios to improve communication skills

  • Answered by AI
  • Q2. What learning initiatives can you start
  • Ans. 

    I can start learning initiatives by conducting training needs assessments, developing training programs, implementing e-learning platforms, and creating mentorship programs.

    • Conduct training needs assessments to identify gaps in knowledge and skills

    • Develop training programs tailored to address identified needs

    • Implement e-learning platforms to provide flexible learning opportunities

    • Create mentorship programs to support o...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, believe in your skills, state examples of your work. talk facts.

Engineer Trainee Interview Questions & Answers

user image Jatin chetiwal

posted on 14 Oct 2024

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

They will ask you questions regarding sql in a written mcq questions format

Round 2 - Group Discussion 

They will provide you with a topic for group discussion and the topic can be anything.

Round 3 - Coding Test 

They will ask you questions from your CV

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

I applied via Approached by Company and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

It was Easy like we can do it

Round 2 - Coding Test 

Basic coding like sum of the numbers

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I appeared for an interview in Sep 2024, where I was asked the following questions.

  • Q1. What is GraphQL and Why do we use it.
  • Ans. 

    GraphQL is a query language for APIs that allows clients to request specific data, improving efficiency and flexibility.

    • Allows clients to request only the data they need, reducing over-fetching and under-fetching.

    • Supports real-time data updates through subscriptions, enabling dynamic applications.

    • Strongly typed schema provides clear documentation and validation of data structures.

    • Example: Instead of fetching a full use...

  • Answered by AI
  • Q2. What is Kafka and Related to Kafka question
  • Q3. Microservices and Spring Boot Questions
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Aug 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

Sql, aptitude questions, basic programming

Round 2 - Group Discussion 

Some latest topic ongoing in the world

Round 3 - One-on-one 

(2 Questions)

  • Q1. Tell about delete function in sql?
  • Ans. 

    The DELETE function in SQL is used to remove rows from a table based on specified conditions.

    • DELETE FROM table_name WHERE condition;

    • The DELETE statement without a WHERE clause will delete all rows in the table.

    • It is important to use the WHERE clause to avoid accidentally deleting all data in a table.

    • Deleted rows can be recovered using a backup if needed.

  • Answered by AI
  • Q2. About ACID properties
Round 4 - HR 

(1 Question)

  • Q1. Simple hr questions

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
-

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

There was an online test which contained aptitude questions along with some coding as well as situational questions.

Round 3 - Group Discussion 

In this a group of 5 or 6 students was made and each group was given a topic to speak on and have a discussion.

Round 4 - One-on-one 

(4 Questions)

  • Q1. There were questions related to my skills and language that I use that is Java.
  • Q2. Along with that I was asked about SQL (queries and keys etc.)
  • Q3. Web development questions were also asked as it was mentioned in my resume as one of my tech skills.
  • Q4. After that I was asked a puzzle which was a bit difficult to solve on spot and required presence of mind.
Round 5 - HR 

(2 Questions)

  • Q1. In this I was asked situational questions like what i would do in such situation.
  • Q2. Also about my inspiration and what I have observed in a particular situation

Interview Preparation Tips

Topics to prepare for Cubastion Consulting Graduate Engineer Trainee (Get) interview:
  • Java
  • Javascript
  • Web Development
  • SQL
  • C++
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 Dec 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

It was a total of a 2-hour assessment where the Aptitude skills and Personality of a student were evaluated. This was done in 2 parts first there was a normal general Aptitude test followed by a round where we had to answer HR questions on the platform itself. The whole process took place in their own exam platform.

Round 2 - Group Discussion 

It was a 20 min round and the topic was "Work from Office vs Work from home"

Round 3 - Technical 

(7 Questions)

  • Q1. Write a code for "Two-pair Sum". You can find the question by searching two-pair sum in Leetcode
  • Ans. 

    Find all unique pairs of indices in an array that sum up to a specific target value.

    • Input: nums = [1, 2, 3, 4, 5], target = 5; Output: [[0, 3], [1, 2]]

    • Use a hash map to store indices of elements for quick lookup.

    • Iterate through the array and check if the complement (target - current) exists.

    • Ensure pairs are unique by using a set to store results.

  • Answered by AI
  • Q2. Another generic coding question
  • Q3. What is the use of the Where clause?
  • Ans. 

    The WHERE clause is used to filter data in a SQL query.

    • It is used to specify a condition to filter the rows returned in a SELECT statement.

    • It can be used with various operators such as =, <, >, LIKE, etc.

    • It can also be used with logical operators such as AND, OR, NOT.

    • Example: SELECT * FROM customers WHERE age > 18 AND city = 'New York';

  • Answered by AI
  • Q4. A SQL-based query to find employees with salaries between a certain range?
  • Ans. 

    SQL query to find employees with salaries in a certain range.

    • Use the SELECT statement to retrieve data from the table.

    • Use the WHERE clause to filter the data based on salary range.

    • Use the BETWEEN operator to specify the salary range.

    • Example: SELECT * FROM employees WHERE salary BETWEEN 50000 AND 70000;

  • Answered by AI
  • Q5. Puzzle 1 - A cake is there 3 cuts are allowed how to make 8 pieces
  • Q6. Puzzle 2 - 10 bags each have 10 coins each coin weighs 1 gm but in 1 bag only all coins weigh 0.9 gm. You can use the weighing machine only once how to find the bag with 0.9 gm coins?
  • Q7. Several questions based on Projects

Interview Preparation Tips

Topics to prepare for Cubastion Consulting Graduate Engineer Trainee (Get) interview:
  • SQL
  • Python
  • Coding
  • OOPS
Interview preparation tips for other job seekers - For Aptitude, the drill is usual to practice from Indiabix.
For Behavioral assessment, write the HR questions quickly and give a personal touch.
For the GD round, try to be neutral and list out the pros and cons of the two choices and try to suggest a solution inclusive of both cases. P.S. May vary from topic to topic.
For the PI round, be ready with the basics and have complete authority on projects and that's all.
The HR and Interviewer were very friendly so don't worry just give your best.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Where do you seek 5 years from now
  • Ans. 

    In five years, I envision myself as a skilled Associate Consultant, leading projects and mentoring junior team members.

    • I aim to deepen my expertise in consulting methodologies, perhaps by obtaining relevant certifications.

    • I see myself taking on leadership roles in projects, driving strategic initiatives for clients.

    • I hope to build strong relationships with clients, becoming a trusted advisor in their business decisions...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Not good for you if you are looking for work life balance

Top trending discussions

View All
Interview Tips & Stories
5d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Cubastion Consulting?
Ask anonymously on communities.

Cubastion Consulting Interview FAQs

How many rounds are there in Cubastion Consulting interview?
Cubastion Consulting interview process usually has 3-4 rounds. The most common rounds in the Cubastion Consulting interview process are Aptitude Test, Group Discussion and Resume Shortlist.
How to prepare for Cubastion Consulting 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 Cubastion Consulting. The most common topics and skills that interviewers at Cubastion Consulting expect are Enterprise Sales, IT Services Sales, Javascript, SQL and Siebel CRM.
What are the top questions asked in Cubastion Consulting interview?

Some of the top questions asked at the Cubastion Consulting interview -

  1. Puzzle 2 - 10 bags each have 10 coins each coin weighs 1 gm but in 1 bag only a...read more
  2. Puzzle 1 - A cake is there 3 cuts are allowed how to make 8 pie...read more
  3. A SQL-based query to find employees with salaries between a certain ran...read more
What are the most common questions asked in Cubastion Consulting HR round?

The most common HR questions asked in Cubastion Consulting interview are -

  1. What are your strengths and weakness...read more
  2. What is your family backgrou...read more
  3. Why should we hire y...read more
How long is the Cubastion Consulting interview process?

The duration of Cubastion Consulting interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

4.1/5

based on 17 interview experiences

Difficulty level

Easy 38%
Moderate 50%
Hard 13%

Duration

Less than 2 weeks 88%
2-4 weeks 13%
View more

Interview Questions from Similar Companies

Affine Interview Questions
3.3
 • 51 Interviews
DotPe Interview Questions
3.1
 • 42 Interviews
IT By Design Interview Questions
3.6
 • 41 Interviews
View all

Cubastion Consulting Reviews and Ratings

based on 152 reviews

3.2/5

Rating in categories

3.3

Skill development

3.1

Work-life balance

3.2

Salary

3.2

Job security

3.0

Company culture

3.2

Promotions

3.1

Work satisfaction

Explore 152 Reviews and Ratings
PHP or .net Developer

New Delhi,

Delhi/Ncr

5-10 Yrs

₹ 16-27.5 LPA

Cyber Security Expert

New Delhi,

Delhi/Ncr

10-15 Yrs

₹ 16-31 LPA

Gis Developer

Delhi/Ncr

5-8 Yrs

₹ 9-19 LPA

Explore more jobs
Associate Consultant
256 salaries
unlock blur

₹5 L/yr - ₹11.5 L/yr

Consultant
84 salaries
unlock blur

₹7 L/yr - ₹23 L/yr

Senior Associate Consultant
70 salaries
unlock blur

₹8.5 L/yr - ₹14.5 L/yr

Graduate Engineer Trainee (Get)
31 salaries
unlock blur

₹6 L/yr - ₹9.6 L/yr

Senior Consultant
25 salaries
unlock blur

₹17.5 L/yr - ₹37.5 L/yr

Explore more salaries
Compare Cubastion Consulting with

Maxgen Technologies

4.6
Compare

JoulestoWatts Business Solutions

3.1
Compare

Value Point Systems

3.5
Compare

F1 Info Solutions and Services

3.8
Compare
write
Share an Interview