Upload Button Icon Add office photos
Engaged Employer

i

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

Instellars Global Consulting Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Instellars Global Consulting Interview Questions and Answers

Updated 29 Nov 2024

Instellars Global Consulting Interview Experiences

Popular Designations

4 interviews found

Interview Questions & Answers

user image Anonymous

posted on 4 Jul 2024

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

Consists basic aptitude i.e. quants and logical reasoning then a section with few pega related aptitude questions

Round 2 - Technical 

(2 Questions)

  • Q1. Explain project
  • Ans. 

    Developed a Pega Customer Decision Hub (CDH) project to optimize customer interactions.

    • Implemented decision strategies to personalize customer interactions

    • Utilized predictive analytics to anticipate customer needs

    • Integrated with various systems to gather customer data

    • Designed and executed A/B tests to optimize decision outcomes

  • Answered by AI
  • Q2. Explain about activity used in your project
  • Ans. 

    Activities in our project are used to perform specific tasks and business logic.

    • Activities are used to encapsulate business logic and can be called from other rules.

    • They can be used to perform calculations, data manipulation, or integration with external systems.

    • Activities can have input and output parameters to pass data between rules.

    • Examples include calculating loan interest, updating customer information, or sendin

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Self introduction
  • Q2. Why Instellars?
  • Ans. 

    Instellars is a leading company in the field of Pega CDH development, known for its innovative solutions and expertise.

    • Instellars has a strong track record of successful Pega CDH projects

    • The company is known for its cutting-edge technology and solutions

    • Instellars has a team of experienced and skilled developers

  • Answered by AI
Round 4 - Behavioral 

(1 Question)

  • Q1. Asked to briefly explain one pega project which you have done and also the one your are confident.

Pega Consultant Interview Questions & Answers

user image Abdul Samim

posted on 29 Nov 2024

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

(2 Questions)

  • Q1. Pega experience till now
  • Q2. Question on last project

Consultant Interview Questions & Answers

user image Anonymous

posted on 9 Sep 2022

I applied via LinkedIn and was interviewed before Sep 2021. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic to intermediate level
Round 2 - Technical 

(1 Question)

  • Q1. More questions on scenario based.

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview is to test your knowledge on the things you worked on.

Consultant Interview Questions asked at other Companies

Q1. How would you pass an entry for travel expenses incurred and paid by employee and was reimbursed? How would the end to end flow happens
View answer (8)

I applied via Referral and was interviewed before Apr 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Resume and skills etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Good

Human Resources Recruiter Interview Questions asked at other Companies

Q1. Can you cope with the policies of field sales?
View answer (1)

Instellars Global Consulting interview questions for popular designations

 Consultant

 (1)

 Human Resources Recruiter

 (1)

 Pega Consultant

 (1)

Jobs at Instellars Global Consulting

View all

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Oct 2018. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Asked me to draw spring mvc architecture and about collection framework.
  • Q2. Asked me to write the logic for pattern.
  • Q3. Asked me on core java.

Interview Preparation Tips

General Tips: be thorough with the core java and good to have knowledge on spring mvc
Skills: Communication
Duration: <1 week

I applied via Company Website and was interviewed before Dec 2019. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Regarding OOPS, wordpress and laravel.

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good and I am still working here.

I applied via Campus Placement and was interviewed in Mar 2021. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. What are Joins in SQL? Briefly explain difference between all types of joins
  • Ans. 

    Joins in SQL are used to combine data from two or more tables based on a related column.

    • Inner join returns only the matching rows from both tables

    • Left join returns all rows from the left table and matching rows from the right table

    • Right join returns all rows from the right table and matching rows from the left table

    • Full outer join returns all rows from both tables, with NULL values for non-matching rows

    • Cross join retur

  • Answered by AI
  • Q2. Find a sub array with a given sum
  • Ans. 

    Given an array of integers, find a contiguous subarray with a given sum.

    • Use a sliding window approach to iterate through the array and keep track of the current sum.

    • If the current sum exceeds the given sum, move the window's left endpoint forward.

    • If the current sum is less than the given sum, move the window's right endpoint forward.

    • If the current sum equals the given sum, return the subarray.

    • Time complexity: O(n), Spa

  • Answered by AI
  • Q3. Questions related to Projects mentioned in CV

Interview Preparation Tips

Interview preparation tips for other job seekers - My interview advice would be to remain honest throughout the interview. The interviewer checks the problem solving abilities by your approach of solving it. Ask if there are any doubts.

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Aug 2021. There were 4 interview rounds.

Round 1 - Coding Test 

1st test was aptitude and a easy coding test

Round 2 - Coding Test 

The 2nd test was pure coding based test on hacker rank platform and contains 2 easy and 2 medium question

Round 3 - Technical 

(1 Question)

  • Q1. Round 3 was technical interview and asked from basics of computer programming and architecture
Round 4 - HR 

(4 Questions)

  • Q1. What is your family background?
  • Q2. Why are you looking for a change?
  • Q3. What are your strengths and weaknesses?
  • Q4. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Advice is just improve basics of programming and DSA with a database management and basicsa of os and networks

I appeared for an interview before Apr 2021.

Round 1 - Video Call 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical interview round with questions on DSA and DBMS mainly.

  • Q1. 

    Maximum Sum Subarray Problem Statement

    Given an array ARR consisting of N integers, determine the sum of the subarray with the maximum sum, including the possibility of an empty subarray.

    A subarray is a...

  • Ans. 

    Find the sum of the subarray with the maximum sum in a given array.

    • Iterate through the array and keep track of the current sum and maximum sum.

    • Update the maximum sum if the current sum becomes greater.

    • Handle cases where the array has all negative numbers or empty subarray.

    • Example: For input [-2, 1, -3, 4, -1], the maximum sum subarray is [4] with sum 4.

  • Answered by AI
  • Q2. 

    Prime Numbers Identification

    Given a positive integer N, your task is to identify all prime numbers less than or equal to N.

    Explanation:

    A prime number is a natural number greater than 1 that has no po...

  • Ans. 

    Identify all prime numbers less than or equal to a given positive integer N.

    • Iterate from 2 to N and check if each number is prime

    • Use the Sieve of Eratosthenes algorithm for efficient prime number identification

    • Optimize by only checking numbers up to square root of N for divisibility

  • Answered by AI
  • Q3. What are Joins in the context of databases?
  • Ans. 

    Joins in databases are used to combine rows from two or more tables based on a related column between them.

    • Joins are used to retrieve data from multiple tables based on a related column.

    • Common types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.

    • INNER JOIN returns rows when there is at least one match in both tables.

    • LEFT JOIN returns all rows from the left table and the matched rows from the right ta...

  • Answered by AI
Round 2 - HR 

Round duration - 30 minutes
Round difficulty - Easy

Typical HR round with behavioral problems.

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPABigStep Technologies interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, DBMS, SQL, Aptitude, OOPSTime required to prepare for the interview - 4 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 applied via Recruitment Consulltant and was interviewed before May 2021. There were 5 interview rounds.

Round 1 - Coding Test 

Hackerrank Test

Round 2 - Technical 

(1 Question)

  • Q1. Questions related to NodeJS and Javascript Basics
Round 3 - Technical 

(1 Question)

  • Q1. Technical questions based on past experience
Round 4 - HR 

(1 Question)

  • Q1. Company Culture related
Round 5 - Behavioral 

(1 Question)

  • Q1. Expectations and Processes

Interview Preparation Tips

Interview preparation tips for other job seekers - Read the basics. Medium level interview questions. All the best.

Instellars Global Consulting Interview FAQs

How many rounds are there in Instellars Global Consulting interview?
Instellars Global Consulting interview process usually has 2-3 rounds. The most common rounds in the Instellars Global Consulting interview process are Technical, Aptitude Test and HR.
How to prepare for Instellars Global 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 Instellars Global Consulting. The most common topics and skills that interviewers at Instellars Global Consulting expect are Pega, Architecting, Consulting, Customer Engagement and IT Services.
What are the top questions asked in Instellars Global Consulting interview?

Some of the top questions asked at the Instellars Global Consulting interview -

  1. Why Instella...read more
  2. Explain proj...read more
  3. More questions on scenario bas...read more

Tell us how to improve this page.

Instellars Global Consulting Interview Process

based on 3 interviews

Interview experience

4.3
  
Good
View more

Interview Questions from Similar Companies

Webdew Interview Questions
4.4
 • 106 Interviews
HyScaler Interview Questions
4.5
 • 92 Interviews
Quantsapp Interview Questions
2.9
 • 35 Interviews
Appsierra Interview Questions
4.4
 • 31 Interviews
NexTurn Interview Questions
4.1
 • 28 Interviews
View all

Instellars Global Consulting Reviews and Ratings

based on 63 reviews

4.4/5

Rating in categories

4.3

Skill development

4.5

Work-life balance

4.5

Salary

4.2

Job security

4.5

Company culture

4.4

Promotions

4.5

Work satisfaction

Explore 63 Reviews and Ratings
Senior Decisioning Architect

Kolkata,

Mumbai

+5

4-8 Yrs

Not Disclosed

Senior Decisioning Architect - Presales

Kolkata,

Mumbai

+5

8-10 Yrs

Not Disclosed

Pega Developer

Kolkata,

Mumbai

+5

3-6 Yrs

Not Disclosed

Explore more jobs
Senior Consultant
30 salaries
unlock blur

₹13.2 L/yr - ₹42 L/yr

Consultant
21 salaries
unlock blur

₹13 L/yr - ₹32.7 L/yr

Associate Consultant
17 salaries
unlock blur

₹8.2 L/yr - ₹26.1 L/yr

Pega Developer
6 salaries
unlock blur

₹5.6 L/yr - ₹18.9 L/yr

Software Developer
5 salaries
unlock blur

₹1.8 L/yr - ₹4 L/yr

Explore more salaries
Compare Instellars Global Consulting with

Accel Frontline

4.0
Compare

Northcorp Software

4.3
Compare

Elentec Power India (EPI) Pvt. Ltd.

3.7
Compare

HyScaler

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