Upload Button Icon Add office photos
Engaged Employer

i

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

Prismagic Solutions Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Prismagic Solutions Interview Questions and Answers

Updated 23 Jun 2023

Prismagic Solutions Interview Experiences

1 interview found

Team Lead Interview Questions & Answers

user image Anonymous

posted on 23 Jun 2023

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

I applied via LinkedIn and was interviewed before Jun 2022. 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 - HR 

(1 Question)

  • Q1. Basic introduction questions? Told me what do they actually need? Salary discussion? Reason for change?
Round 3 - One-on-one 

(1 Question)

  • Q1. Discussions regarding my last company. Roles & Responsibilities. Client base.

Interview Preparation Tips

Interview preparation tips for other job seekers - Good communication skills are important, as they work with big clients in the US, understanding of your job. Read your resume properly.

Team Lead Interview Questions asked at other Companies

Q1. write a java program to get maxing profit by buying and selling a share from a given set of values (they will change the question after you give solution, like if consider buying only once and selling once they will say to buying multiple t... read more
View answer (3)

Interview questions from similar companies

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

(1 Question)

  • Q1. About Experience, about recruitment & Naukri
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Dec 2023. There was 1 interview round.

Round 1 - Aptitude Test 

I was asked about the portals I have used for sourcing, some search strings, the roles and clients I have worked with, my understanding of these roles, and the recruitment process I follow.

Interview Preparation Tips

Interview preparation tips for other job seekers - Possess a strong knowledge and understanding of Naukri, Monster, Shine, and LinkedIn sourcing. Strong communication skills are essential. The manner in which you respond is also significant. Maintain a positive attitude and answer with confidence.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Dec 2023. There were 2 interview rounds.

Round 1 - HR 

(3 Questions)

  • Q1. Can you tell me about yourself?
  • Ans. 

    Experienced consultant with a background in finance and strategy, specializing in helping companies optimize their operations and achieve growth.

    • Over 10 years of experience in consulting for various industries

    • Strong background in finance and strategy

    • Expertise in optimizing operations and driving growth

    • Proven track record of successfully implementing solutions for clients

    • Excellent communication and problem-solving skill

  • Answered by AI
  • Q2. Where do you see yourself in the next five years?
  • Ans. 

    In five years, I see myself as a senior consultant leading a team of experts and working on high-impact projects.

    • Advancing to a senior consultant role

    • Leading a team of experts

    • Working on high-impact projects

    • Continuing professional development and learning

  • Answered by AI
  • Q3. From where did you got the motivation to work,
  • Ans. 

    I am motivated by the desire to make a positive impact and constantly challenge myself to grow and learn.

    • Passion for helping others and making a difference

    • Desire to continuously improve and develop new skills

    • Setting goals and working towards achieving them

    • Inspiration from successful role models or mentors

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. What are your thoughts about the company
  • Ans. 

    I am impressed by the company's innovative solutions and strong reputation in the industry.

    • The company has a track record of delivering high-quality services to clients.

    • I appreciate the company's commitment to staying ahead of industry trends.

    • The company's culture of collaboration and teamwork is evident in their success.

  • Answered by AI
  • Q2. Are you looking forward to this opportunity?
  • Ans. 

    Yes, I am excited about the opportunity to contribute my expertise and make a positive impact.

    • Excited to utilize my skills and knowledge in a new environment

    • Looking forward to collaborating with a talented team

    • Eager to take on new challenges and grow professionally

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - You will find working with us enjoyable, as it is one of the great places to work, offering motivation, exposure, and new opportunities. We pride ourselves on being one of the best in the industry, providing hybrid working opportunities.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Questions about previous work exp
Round 2 - HR 

(1 Question)

  • Q1. Technology related questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Naukri.com and was interviewed before Dec 2023. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. Tell About Yourself?
  • Q2. What Was your expectation
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. Introduction and about yourself
  • Q2. HR round with details
Round 2 - HR 

(1 Question)

  • Q1. About experience

I appeared for an interview in Mar 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 120 minutes
Round difficulty - Easy

There were few mcqs. MCQs were easy but coding questions were little complex.

  • Q1. 

    Minimum and Maximum Candy Cost Problem

    Ram is in Ninjaland, visiting a unique candy store offering 'N' candies each with different costs. The store has a special offer: for every candy you purchase, you c...

  • Ans. 

    Determine the minimum and maximum amounts of money needed to purchase all candies with a special offer.

    • Iterate through each test case to calculate the minimum and maximum costs

    • For minimum cost, sort the candy costs and take the lowest 'K' values

    • For maximum cost, sort the candy costs in descending order and take the highest 'K' values

    • Consider edge cases like when K is 0 or equal to N

  • Answered by AI
  • Q2. 

    Multiply Linked Lists Problem Statement

    Your task is to multiply two numbers represented as linked lists and return the resultant multiplied linked list.

    Explanation:

    The multiplied list should be a lin...

  • Ans. 

    Multiply two numbers represented as linked lists and return the resultant multiplied linked list.

    • Create a function that takes two linked lists as input and returns the product as a linked list

    • Traverse both linked lists to extract the numbers, multiply them, and create a new linked list with the result

    • Handle carry over digits appropriately while multiplying the numbers

  • Answered by AI
Round 2 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Hard

Round was very difficult . I prefer first just try to learn how to operate hackerrank site, only then you can good with it. It was an online coding round. To clear coding rounds you have to clear your basics.

  • Q1. 

    Right View of Binary Tree

    Given a binary tree of integers, your task is to output the right view of the tree.

    The right view of a binary tree includes the nodes that are visible when the tree is observed...

  • Ans. 

    The task is to output the right view of a binary tree given its level order traversal.

    • Traverse the tree level by level and keep track of the rightmost node at each level

    • Use a queue to perform level order traversal

    • Print the rightmost node at each level to get the right view

    • Example: For input 1 2 3 4 -1 5 6 -1 7 -1 -1 -1 -1 -1 -1, the output should be 1 3 6 7

  • Answered by AI
  • Q2. 

    Buy and Sell Stock Problem Statement

    Imagine you are Harshad Mehta's friend, and you have been given the stock prices of a particular company for the next 'N' days. You can perform up to two buy-and-sell ...

  • Ans. 

    The task is to determine the maximum profit that can be achieved by performing up to two buy-and-sell transactions on a given set of stock prices.

    • Iterate through the array of stock prices to find the maximum profit that can be achieved by buying and selling stocks.

    • Keep track of the maximum profit that can be achieved by considering all possible combinations of buy and sell transactions.

    • Ensure that you sell the stock be...

  • Answered by AI
Round 3 - Face to Face 

Round duration - 35 minutes
Round difficulty - Medium

Basic interview questions, few related to basic domain questions, few from behavioral questions, few from projects. This round was not that much hard.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Developer in JaipurEligibility criteriaAbove 7.5 CGPAScaleneWorks People Solutions LLP interview preparation:Topics to prepare for the interview - C++, Data Structures, Algorithms, Graph and Trees, Operating Systems, Object Oriented Programming, Database Management System, Project, Development, Programming Language, Dynamic Programming, AptitudeTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Interviews ask few questions from Oops, DBMS, OS
Tip 2 : Brush up fundamental concepts 
Tip 3 : Have a good hold on your projects and have some internships in your resume
Tip 4 : Practice as many questions as you can

Application resume tips for other job seekers

Tip 1 : Never lie something in resume. Do not fake any skills, projects or achievements.
Tip 2 : Only write about those certificates which were related to your important things.
Tip 3 : Keep it simple (It should not be long)
Tip 4 : Do internships so that you can highlight that in your resume

Final outcome of the interviewSelected

Skills evaluated in this interview

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

(1 Question)

  • Q1. About Experience and Operations

Interview Preparation Tips

Interview preparation tips for other job seekers - It's a really good company..
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Apr 2023. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Oops concepts, mvc related questions
  • Q2. Store procedure, function,
  • Q3. Asked SQL query scenario based questions
Round 2 - Technical 

(1 Question)

  • Q1. Oops , SQL and mvc questions. Mostly question was scenario based

Prismagic Solutions Interview FAQs

How many rounds are there in Prismagic Solutions interview?
Prismagic Solutions interview process usually has 3 rounds. The most common rounds in the Prismagic Solutions interview process are Resume Shortlist, HR and One-on-one Round.

Tell us how to improve this page.

Prismagic Solutions Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Aarvi Encon Interview Questions
3.9
 • 64 Interviews
Symphoni HR Interview Questions
4.2
 • 20 Interviews
Xpheno Interview Questions
3.6
 • 18 Interviews
Scaleneworks Interview Questions
3.5
 • 12 Interviews
View all

Prismagic Solutions Reviews and Ratings

based on 22 reviews

4.1/5

Rating in categories

4.0

Skill development

4.1

Work-life balance

4.0

Salary

4.1

Job security

4.1

Company culture

3.9

Promotions

4.1

Work satisfaction

Explore 22 Reviews and Ratings
US IT Recruiter
3 salaries
unlock blur

₹3 L/yr - ₹9 L/yr

Lead Recruiter
3 salaries
unlock blur

₹9.2 L/yr - ₹10.5 L/yr

Explore more salaries
Compare Prismagic Solutions with

Aarvi Encon

3.9
Compare

Bonace Engineers

4.0
Compare

S2 Infotech

3.6
Compare

US Tech Solutions

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