Upload Button Icon Add office photos
Engaged Employer

i

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

BUSINESSNEXT Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

BUSINESSNEXT Reactjs Developer Interview Questions, Process, and Tips

Updated 25 Oct 2023

BUSINESSNEXT Reactjs Developer Interview Experiences

1 interview found

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

I appeared for an interview in Oct 2022.

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 - Technical 

(2 Questions)

  • Q1. What is webpack
  • Ans. 

    Webpack is a module bundler for JavaScript applications.

    • Webpack takes modules with dependencies and generates static assets representing those modules.

    • It can handle various types of assets like JavaScript, CSS, images, and fonts.

    • Webpack allows for code splitting, lazy loading, and hot module replacement.

    • It has a rich plugin ecosystem to extend its functionality.

    • Commonly used configuration file for webpack is webpack.co

  • Answered by AI
  • Q2. What is the role of babel
  • Ans. 

    Babel is a JavaScript compiler that converts modern JavaScript code into backward-compatible versions for browser compatibility.

    • Babel allows developers to write code using the latest ECMAScript features without worrying about browser support.

    • It transforms JSX syntax used in React components into regular JavaScript.

    • Babel can also be configured to support specific browsers or environments.

    • Plugins can be added to Babel fo

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. What is HOC in React
  • Ans. 

    HOC stands for Higher Order Component in React, a pattern where a function takes a component and returns a new component.

    • HOC is a function that takes a component and returns a new component with additional props or functionality.

    • It is used for code reusability, logic abstraction, and cross-cutting concerns like logging, authentication, etc.

    • Example: withAuth HOC can add authentication logic to a component by checking if

  • Answered by AI
  • Q2. What are lifecycle methods in React js
  • Ans. 

    Lifecycle methods in React js are special methods that allow developers to hook into the component lifecycle and perform actions at specific points.

    • componentDidMount() - called after the component is rendered for the first time

    • componentDidUpdate() - called after the component's updates are flushed to the DOM

    • componentWillUnmount() - called before the component is removed from the DOM

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

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 Feb 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude, Sql, and some programming mcq question

Round 2 - Coding Test 

Basic coding question

Round 1 - Aptitude Test 

20 Questions in CBT test you have to score minimum 60% than you passed

Round 2 - Coding Test 

For React devloper they ask advanced java script and react advance logical coding

Round 3 - HR 

(1 Question)

  • Q1. They say About here company policy and benefits

Interview Preparation Tips

Interview preparation tips for other job seekers - You have to apply online after than HR call you
And second option you have to join as a trainee for 3 month this for freshers

Interview Preparation Tips

Round: Test
Experience: Though technical questions were not that difficult but the quant section was way too hard and almost impossible to solve completely in given time limit.
Tips: It’s better if you attempt less questions (in quant) but do them right (I attempted less than 40% quant and still got through).

Round: Technical Interview
Experience: Next they would have 2-3 technical rounds where they cover most of the areas of CS. Some of the areas where they concentrated more would be Algorithms, OOPS Concepts and Logical Puzzles.
Tips: Brush up important concepts from various areas such as Operating System, OOPS, Software Engineering. Be ready for some really challenging questions in Algorithms. Also they do ask quite a few logical puzzles so it’s important you practice a lot of them online before the interview.

General Tips: D E Shaw selects very few candidates + comes in starting weeks of placement season, so competition is immense. Multiple companies come on same day, so it becomes a little tedious. Surely I wasn't the better candidate that day.
Skill Tips: D E Shaw focuses more on your ability to solve logical problems, so make sure you are in best state of your mind and speak while solving any problem because what they are looking for is not the right answer (well of course they are) but also how are you approaching the problem.
Skills: Operating System, OOPS, Algorithms, CS, logical puzzles, Quant
College Name: NIT SURATHKAL

Interview Questionnaire 

21 Questions

  • Q1. AVL tree balance checking
  • Q2. Median of 2 sorted arrays in O(log N) time complexity and O(1) space complexity
  • Ans. 

    Find median of 2 sorted arrays in O(log N) time complexity and O(1) space complexity

    • Use binary search to find the partition point in both arrays

    • Calculate the median based on the partition point and array sizes

    • Adjust the partition points based on the median value

    • Repeat until the partition points are at the median

    • Handle edge cases such as empty arrays and uneven array sizes

  • Answered by AI
  • Q3. Strings Anagram in O(1) space complexity
  • Ans. 

    Anagram of strings in O(1) space complexity

    • Use a fixed size array of integers to store the frequency of characters in the first string

    • Iterate through the second string and decrement the frequency of each character in the array

    • If all the frequencies are zero, then the strings are anagrams

    • Return true or false accordingly

  • Answered by AI
  • Q4. Level order traversal of a tree using Queue
  • Ans. 

    Level order traversal of a tree using Queue

    • Create a queue and add the root node to it

    • While the queue is not empty, remove the front node and print its value

    • Add the left and right child nodes of the removed node to the queue

    • Repeat until the queue is empty

  • Answered by AI
  • Q5. Reverse level order traversal of a tree using Queue
  • Ans. 

    Reverse level order traversal of a tree using Queue

    • Create a queue and push the root node into it

    • While the queue is not empty, pop the front node and push its children into the queue

    • Add the popped node to a stack

    • Once the queue is empty, pop elements from the stack and print them

  • Answered by AI
  • Q6. BFS and DFS Difference
  • Ans. 

    BFS and DFS are graph traversal algorithms. BFS explores nodes level by level while DFS explores nodes depth by depth.

    • BFS uses a queue while DFS uses a stack or recursion.

    • BFS is optimal for finding shortest path while DFS is optimal for finding a path between two nodes.

    • BFS requires more memory as it stores all the nodes at each level while DFS requires less memory.

    • BFS can be used to find connected components while DFS

  • Answered by AI
  • Q7. OS Concepts – Starvation, Demand Paging, Virtual Memory, Deadlocks
  • Q8. Parenthesis Balance Checking
  • Q9. Three Jars - 1 with apples, 1 with oranges, 1 with apples and oranges. All of them wrongly labelled. Find min no of attempts to find the correct nature of boxes
  • Q10. Find product of each element of an array except that element in O(N) time complexity without using / operation
  • Ans. 

    Find product of each element of an array except that element in O(N) time complexity without using / operation

    • Use prefix and suffix products

    • Multiply prefix and suffix products for each element to get the final product

    • Handle edge cases where array has 0 or 1 element separately

  • Answered by AI
  • Q11. Recursively deleting linked list
  • Ans. 

    Recursively delete a linked list

    • Create a recursive function that takes the head of the linked list as input

    • Base case: if the head is null, return

    • Recursively call the function with the next node as input

    • Delete the current node

  • Answered by AI
  • Q12. Recursively deleting linked list from end
  • Ans. 

    Recursively delete a linked list from the end.

    • Start from the head and recursively traverse to the end of the list.

    • Delete the last node and set the second last node's next pointer to null.

    • Repeat until the entire list is deleted.

    • Use a recursive function to implement the deletion process.

  • Answered by AI
  • Q13. Recursively deleting tree
  • Ans. 

    Recursively delete a tree by deleting all its child nodes and then the parent node.

    • Start from the leaf nodes and delete them first.

    • Then move up to the parent nodes and delete them.

    • Repeat until the root node is deleted.

    • Use post-order traversal to ensure child nodes are deleted before parent nodes.

  • Answered by AI
  • Q14. Recursively deleting from end
  • Ans. 

    Recursively delete elements from the end of an array.

    • Create a recursive function that removes the last element of the array.

    • Call the function recursively until the desired number of elements are removed.

    • Handle edge cases such as empty arrays and removing more elements than the array contains.

  • Answered by AI
  • Q15. Difference between Floyd Warshall and Djikstra
  • Ans. 

    Floyd Warshall finds shortest path between all pairs of vertices while Djikstra finds shortest path from a single source.

    • Floyd Warshall is used for dense graphs while Djikstra is used for sparse graphs.

    • Floyd Warshall has a time complexity of O(n^3) while Djikstra has a time complexity of O((n+m)logn).

    • Floyd Warshall can handle negative edge weights while Djikstra cannot.

    • Floyd Warshall can detect negative cycles while Dj

  • Answered by AI
  • Q16. Shortest path between 2 points in 2-D space in O(log N) time
  • Ans. 

    There is no known algorithm to find shortest path in 2-D space in O(log N) time.

    • The best known algorithm for finding shortest path in 2-D space is Dijkstra's algorithm which has a time complexity of O(N^2).

    • Other algorithms like A* and Bellman-Ford have better time complexity but still not O(log N).

    • If the points are on a grid, Lee algorithm can be used which has a time complexity of O(N).

  • Answered by AI
  • Q17. Design a system for putting newspapers using classes and functions taking different aspects into account
  • Ans. 

    Design a system for putting newspapers using classes and functions

    • Create a Newspaper class with attributes like title, date, and content

    • Create a Publisher class with methods to publish and distribute newspapers

    • Create a Subscriber class with methods to subscribe and receive newspapers

    • Use inheritance to create different types of newspapers like daily, weekly, etc.

    • Implement a database to store newspaper information and ha

  • Answered by AI
  • Q18. SQL commands
  • Q19. Career Prospects - Long Term Plans
  • Q20. Why not higher studies?
  • Ans. 

    I believe practical experience is more valuable than higher studies.

    • I have gained valuable experience through internships and projects.

    • I prefer hands-on learning and problem-solving over theoretical knowledge.

    • I am constantly learning and improving my skills through online courses and workshops.

  • Answered by AI
  • Q21. Machine Learning Concepts - Based on my projects

Interview Preparation Tips

Round: Test
Experience: All Computer Science Topics Covered: Data Structures, Algorithms, Object Oriented Systems, C, C++, Operating Systems, Computer Architectures, Databases, SQL, Basic Quantitative Aptitude
Tips: Solve all of them. Cut off's generally go high.
Duration: 30 minutes
Total Questions: 30

Round: Interview
Experience: Nice Experience. Interviewer was friendly. He wanted exact solutions.
Tips: Be thorough with everything and your projects.

Round: Interview
Experience: Nice Experience. Interviewer was friendly. He wanted exact solutions.
Tips: Be thorough with everything and your projects.

Round: Interview
Experience: Nice Experience. Interviewer was friendly.
Tips: Do not fake yourself.

General Tips: Be thorough with all CS related concepts and projects.
Skill Tips: ""Be thorough.""
Skills: Algorithms, Data Structures, Operating Systems, Machine Learning, SQL, Operating Systems, Computer Architecture, Data Analytics
College Name: IIT Kharagpur
Motivation: Kind of application oriented work and the rising nature of the company. Obviously money also.
Funny Moments: Many funny questions and answers like did you have lunch, when did you last eat, etc

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. For me there was just one interview combined of guesstimates and Puzzles

Interview Preparation Tips

Round: Test
Experience: Consisted of 5 sections - English, Quant, Logical Reasonong, Statistics, Probability/Analytical questions. 10 questions per section. Medium level difficulty. It was followed by an subjective test by 1 question. The question was describe the most challenging experience while working in a Team.10 mins for this question
Tips: Practise Quant and logical reasoning. Stay focussed and confident.
Duration: 60 minutes
Total Questions: 50

Round: Group Discussion
Experience: First 1 min everyone has to speak then the group has to conclude in last 5 mins.
Tips: Reading newspaper is a must.
Duration: 20 minutes

Round: Interview
Experience: 1. Estimate the length of your hairs.2. What will you infer from the data of your collage (if provided) consisting of name contact details rank and sitting/not sitting for placements.3. Divide a disk/circle into 8 equal parts.4. 100 coins to be put into infinite boxes. How to place so that by just taking the EXACT number of boxes I can have money of any denomination under 100.5. 10% discount followed by 15% discount and then vice-versa. Which is better for shopekeeper?
Tips: Ans to last 33. three cuts4. 1 2 4 8 16 32 375. same for both

General Tips: Read about the company and work profile before hand. It helps a lot to frame the answer of Why Axtria?
Skill Tips: Practise and stay confident
Skills: Quantitative, communication skills
College Name: IIT Kharagpur
Motivation: Analytical job. Tremendous growth opportunities.

Business Analyst Interview Questions & Answers

Axtria user image P B Viswa Vardhan

posted on 14 Jan 2015

Interview Questionnaire 

14 Questions

  • Q1. He gave me a puzzle to solve
  • Q2. What is your GRE score ?
  • Ans. 

    I apologize, but I do not have a GRE score as it is not applicable to my role as a Business Analyst.

    • As a Business Analyst, my skills and experience are evaluated through my work history, education, and certifications.

    • GRE scores are typically required for admission to graduate programs, but not for a Business Analyst position.

    • My focus is on utilizing my analytical and problem-solving skills to support business decisions

  • Answered by AI
  • Q3. What is your CAT score ?
  • Ans. 

    CAT score is not applicable for a Business Analyst role.

    • CAT score is a standardized test for admission to management programs.

    • It is not relevant for a Business Analyst role.

    • Business Analysts require skills in data analysis, problem-solving, and communication.

    • Other relevant qualifications for a Business Analyst role include a degree in business, economics, or a related field, and experience in data analysis or project m

  • Answered by AI
  • Q4. Why do you want to join our firm?
  • Ans. 

    I am impressed with the company's reputation and growth potential.

    • Your company has a strong reputation in the industry.

    • I am excited about the opportunity to work with a talented team.

    • I believe your company's growth potential aligns with my career goals.

    • Your company's values and mission resonate with me.

    • I am impressed with the innovative projects your company is working on.

  • Answered by AI
  • Q5. Who is the CEO of our company ?
  • Ans. 

    I'm sorry, I don't have access to that information.

    • No data available

    • I don't have access to that information

  • Answered by AI
  • Q6. You have written some PORs in you CV, But I feel this is not at all a POR!!! ?
  • Q7. What are your plans for the future?
  • Ans. 

    My plans for the future include continuous learning, career growth, and contributing to the success of the company.

    • Continuously improve my skills and knowledge through training and development programs

    • Take on challenging projects and responsibilities to advance my career

    • Collaborate with colleagues to achieve company goals and objectives

  • Answered by AI
  • Q8. How do people remember you by ? define it in one word
  • Ans. 

    Reliable

    • Consistent in meeting deadlines and delivering quality work

    • Trustworthy and dependable

    • Known for being organized and detail-oriented

  • Answered by AI
  • Q9. What are your 2 strengths ?
  • Ans. 

    My strengths are attention to detail and problem-solving skills.

    • Attention to detail helps me identify potential issues and ensure accuracy in my work.

    • Problem-solving skills enable me to analyze complex situations and find effective solutions.

    • For example, in my previous role, I was able to identify a flaw in the company's inventory management system and proposed a solution that saved the company thousands of dollars.

    • I a...

  • Answered by AI
  • Q10. What is your weakness?
  • Ans. 

    My weakness is public speaking.

    • I tend to get nervous when speaking in front of large groups.

    • I am actively working on improving my public speaking skills through practice and training.

    • I have found that preparing thoroughly and practicing beforehand helps me feel more confident.

    • I also try to focus on the message I am trying to convey rather than my own nerves.

  • Answered by AI
  • Q11. What people dont like in you ?
  • Q12. Where do you see yourself 5 years down the line ?
  • Ans. 

    In 5 years, I see myself as a senior business analyst leading a team and contributing to the growth of the company.

    • Leading a team of business analysts

    • Contributing to the growth of the company through data-driven insights and recommendations

    • Continuing to develop my skills and knowledge in the field of business analysis

    • Building strong relationships with stakeholders and clients

    • Exploring opportunities for process improvem

  • Answered by AI
  • Q13. What is your JEE Rank, 10th and Inter Math score ?
  • Ans. 

    I do not have the JEE rank, but my 10th and Inter Math scores are above average.

    • I do not have my JEE rank available at the moment.

    • However, my 10th and Inter Math scores are above average.

    • I can provide more details on my academic achievements and relevant experience.

    • For example, I have completed a course in data analysis and have experience in using SQL for data querying.

  • Answered by AI
  • Q14. He too asked me a puzzle on probability

Interview Preparation Tips

Round: Test
Experience: The test was organized by cocubes.com .After writing many tests in cocubes.com , I felt a little better and easier.
Tips: Answers the questions you know. Don't forget to tick all the left overs before submitting the test if there are no negative markings :P .Write the exam in your normal pace. Don't panic or get tensed. Just be your self
Duration: 50 minutes
Total Questions: 50

Round: Group Discussion
Experience: We were 15 in the group. This wasn't like normal GDs. We were given a minute each to speak. I was the last member to speak. Almost all the points were covered. I did add new points and new dimensions to the discussion.
Tips: You will find many tips on the Internet.The most important thing I felt was " Create interest in people to listen to what you are speaking, And Speak the right things". Maintain Eye contact. Smile often. Always add points to the make the discussion constructive.

Round: Interview
Experience: I was a bit stressed out when he pointed out that I didn't do the works which actually I did them. But I always kept my cool. Answered him wisely.
Tips: Be Honest. take your time. Never admit the things which he will try to confuse you. Better answer him the right way than answering him quickly. Be a thoughtful person

Round: Interview
Experience: I was honest through out the interview.
Tips: Always be Honest. Keep your confidence levels high.Do your Homework. Prepare before hand for the most important HR questions. Don't fumble upon in front of the interviewer. Rehearse the answers which you have written down in front of a mirror or Best Friend. I prefer Friends to mirror as mirrors don't give you feedback :P .

General Tips: Be Honest.Just Recollect your past events.
Skill Tips: "Be yourself and " Sell the buyer what he is looking for ""
Skills: Quick learning, Confidence, Logical reasoning
College Name: IIT Kharagpur
Motivation: Good learning environment and Data Analysis is an emerging field.
Funny Moments: As soon as I entered the room HR was busy doing some phone calls and stuff, After a minute I asked him whether He was tensed :P :D

Interview Preparation Tips

Round: Group Discussion
Experience: It was not a group discussion to be exact. It was more like an extempore. We were given 2-3 minutes before starting, to think about the topic and then the coordinator would call out a name and that person had to speak for about 2 minutes or so, after which the coordinator would call another name.
Tips: Take a paper with you to write down the points.
Always make short points and elaborate on your own. Don't write down the whole paragraph. It wastes a lot of time.
Don't deviate from the topic. Just make sure whatever you speak, in favor or against, should make sense.
Do not use any fake accent.
Duration: 10 minutes

College Name: IIT ROORKEE

Interview Questionnaire 

4 Questions

  • Q1. A plane is 200Km away from its destination and starts to descend. What would be the angle at which the plane descends? (Guesstimates)
  • Ans. 

    The angle at which the plane descends cannot be accurately determined without additional information.

    • The angle of descent depends on the rate of descent and the distance remaining to the destination.

    • The weight of the plane, wind speed and direction, and other factors can also affect the angle of descent.

    • Without knowing the rate of descent or the remaining distance, it is impossible to accurately estimate the angle of d

  • Answered by AI
  • Q2. General Questions from resume
  • Q3. Why am I opting for a job instead for MS/MBA?
  • Ans. 

    I believe gaining practical experience in a job will complement my theoretical knowledge from MS/MBA.

    • Practical experience is crucial for a business analyst role

    • A job will provide opportunities to apply theoretical knowledge in real-world scenarios

    • A job will also help me develop soft skills such as communication and teamwork

    • MS/MBA can be pursued later for further career growth

    • A job can provide financial stability while

  • Answered by AI
  • Q4. Which area would I love to work after I join Axtria?

Interview Preparation Tips

Round: Technical Interview
Experience: My Final Year Thesis was on Data Analytics which was a big plus. I was asked general questions on the aim of my project and how can I sell it to the concerned persons. It was a short interview of about 15-20 mins.
I told the interviewer that 5-10 degree would be the angle at which the plane will be descending but he forced that it is too less. Having seen a lot of air crash investigations, I was sure about it and confidently proved that 5-10 degrees is good enough by assuming the altitude at which the plane flies.
Tips: Practice Guessestimates. Be confident on what you say. You should be thorough with every point written on your resume.

Round: HR Interview
Experience: It wasn't hard to convince him about going for Job instead of MS/MBA. No such difficulty in answering the questions put forth by the interviewer.

Skills: Confidence, Knowledge of Analytics
College Name: IIT GUWHATI

I appeared for an interview before Mar 2016.

Interview Questionnaire 

6 Questions

  • Q1. Tell me about yourself. Resume based questions. Be well prepared with your resume. Guesstimate and puzzles.
  • Q2. Guesstimate: Estimate the quantity of detergent used in india in 1 year.
  • Ans. 

    Approximately 2 million metric tons of detergent is used in India annually.

    • Consider the population of India and the average usage of detergent per person.

    • Factor in the usage of detergent in industries and commercial establishments.

    • Take into account the different types of detergents used for various purposes.

    • Refer to market research reports for more accurate data.

    • Assume a growth rate in detergent usage based on populati...

  • Answered by AI
  • Q3. Puzzle: Given a dice with only 2 possible outcomes 1 & 3 and with probabilities 1/3 and 2/3 respectively. What will you do so that the dice can be used for tossing(in tossing, we expect unbiased outcomes).
  • Q4. Any questions?
  • Ans. 

    Yes, I have a few questions regarding the role and responsibilities of a Business Analyst.

    • Can you tell me more about the company's current business processes?

    • What are the key performance indicators (KPIs) that the company tracks?

    • How does the company measure the success of a project?

    • What tools and software does the company use for data analysis?

    • Can you provide an example of a successful project that the Business Analyst

  • Answered by AI
  • Q5. The interviewer asked general questions about me and varanasi city. Since i am from non-circuit branch, he asked why i am not choosing to go for core jobs. Then Basic programming questions in python and f...
  • Q6. Do you have any questions?

Interview Preparation Tips

Round: Technical Interview
Experience: Employer was cool and has made it very comfortable. It was more of a friendly conversation.
Tips: Which ever analytics interview it is, you should have thorough practice in guesstimates, case studies and puzzles whether or not you have done any project in analytics.

Round: Technical + HR Interview
Tips: Staying confident is important. You can make best use of 'Do you have any questions?' It can give good impression on you if you can ask good questions about the profile/working/competitors etc. If you are shortlisted go through the company website to know about the company. That will help you a lot in asking these type of questions.

Skills: Problem Solving Abilties, Programming, Communication And Confidence
College Name: IIT BHU

BUSINESSNEXT Interview FAQs

How many rounds are there in BUSINESSNEXT Reactjs Developer interview?
BUSINESSNEXT interview process usually has 3 rounds. The most common rounds in the BUSINESSNEXT interview process are Technical and Resume Shortlist.
How to prepare for BUSINESSNEXT Reactjs Developer 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 BUSINESSNEXT. The most common topics and skills that interviewers at BUSINESSNEXT expect are CSS, DOM, HTML, Javascript and React.Js.
What are the top questions asked in BUSINESSNEXT Reactjs Developer interview?

Some of the top questions asked at the BUSINESSNEXT Reactjs Developer interview -

  1. What are lifecycle methods in React...read more
  2. What is the role of ba...read more
  3. What is webp...read more

Tell us how to improve this page.

BUSINESSNEXT Reactjs Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

KPIT Technologies Interview Questions
3.3
 • 291 Interviews
Chetu Interview Questions
3.2
 • 176 Interviews
AVASOFT Interview Questions
2.9
 • 168 Interviews
Oracle Cerner Interview Questions
3.7
 • 158 Interviews
Brane Enterprises Interview Questions
2.0
 • 136 Interviews
ivy Interview Questions
3.6
 • 129 Interviews
DE Shaw Interview Questions
3.8
 • 121 Interviews
ServiceNow Interview Questions
4.1
 • 121 Interviews
Axtria Interview Questions
3.0
 • 118 Interviews
View all

BUSINESSNEXT Reactjs Developer Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

3.0

Skill development

4.0

Work-life balance

3.0

Salary

3.0

Job security

3.0

Company culture

2.0

Promotions

2.0

Work satisfaction

Explore 1 Review and Rating
Engineer
253 salaries
unlock blur

₹3.5 L/yr - ₹11.7 L/yr

Consultant
239 salaries
unlock blur

₹4.8 L/yr - ₹14.7 L/yr

Business Analyst
220 salaries
unlock blur

₹4 L/yr - ₹13.7 L/yr

Software Engineer
200 salaries
unlock blur

₹3.5 L/yr - ₹12.5 L/yr

Senior Consultant
161 salaries
unlock blur

₹6.2 L/yr - ₹15 L/yr

Explore more salaries
Compare BUSINESSNEXT with

KPIT Technologies

3.3
Compare

Thomson Reuters

4.1
Compare

Oracle Cerner

3.7
Compare

NextComm Corporation

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