Upload Button Icon Add office photos
Engaged Employer

i

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

Successive Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Successive Technologies Interview Questions and Answers

Updated 21 Feb 2025
Popular Designations

33 Interview questions

An Associate Software Engineer was asked
Q. How do Promises work?
Ans. 

Promises in JavaScript are objects representing the eventual completion or failure of an asynchronous operation.

  • Promises are used to handle asynchronous operations in JavaScript.

  • A Promise can be in one of three states: pending, fulfilled, or rejected.

  • Promises can be chained using .then() method to handle success and failure cases.

  • Promises can be created using the Promise constructor.

  • Example: const myPromise = new ...

View all Associate Software Engineer interview questions
A Trainee Business Analyst was asked
Q. What are the differences between agile and waterfall methodologies?
Ans. 

Agile is iterative and flexible, while waterfall is sequential and rigid.

  • Agile involves continuous feedback and adaptation, while waterfall follows a linear approach.

  • Agile allows for changes throughout the project, while waterfall requires detailed planning upfront.

  • Agile is best suited for projects with evolving requirements, while waterfall is better for projects with well-defined requirements.

  • Agile promotes coll...

View all Trainee Business Analyst interview questions
A Trainee Business Analyst was asked
Q. How do you manage conflict between QA and developers in a team?
Ans. 

Managing conflict between QA and developers requires effective communication, collaboration, and conflict resolution skills.

  • Encourage open communication and collaboration between QA and developers to address issues early on

  • Establish clear roles and responsibilities for both QA and developers to avoid misunderstandings

  • Implement a structured process for resolving conflicts, such as holding regular team meetings or u...

View all Trainee Business Analyst interview questions
A Lead Business Analyst was asked
Q. What is risk management and its intricacies?
Ans. 

Risk management is the process of identifying, assessing, and prioritizing risks followed by coordinated and economical application of resources to minimize, monitor, and control the probability and impact of unfortunate events.

  • Identifying potential risks that could impact a project or organization

  • Assessing the likelihood and impact of each risk

  • Prioritizing risks based on their potential impact and likelihood

  • Devel...

View all Lead Business Analyst interview questions
An Angular Frontend Developer was asked
Q. What is the difference between call and apply?
Ans. 

Call and apply are both methods used to invoke a function with a specific 'this' value.

  • Call takes arguments as a comma-separated list, while apply takes arguments as an array.

  • Call is used when the number of arguments is known, while apply is used when the number of arguments is unknown.

  • Call is generally faster than apply.

  • Both methods are used to set the 'this' value of a function.

View all Angular Frontend Developer interview questions
An Angular Frontend Developer was asked
Q. Which map should be used for autocomplete?
Ans. 

The map to use for auto complete is the Trie data structure.

  • Trie is a tree-like data structure that efficiently stores and retrieves strings.

  • It is commonly used for auto complete functionality as it allows for fast prefix matching.

  • Each node in the Trie represents a character, and the edges represent the next possible characters.

  • By traversing the Trie, all possible completions for a given prefix can be found.

  • Exampl...

View all Angular Frontend Developer interview questions
An Angular Frontend Developer was asked
Q. How do you pass parameters as an array in apply?
Ans. 

Using apply() to pass parameters as an array in JavaScript functions.

  • The apply() method calls a function with a given this value and arguments provided as an array.

  • Syntax: function.apply(thisArg, [argsArray])

  • Example: function greet(name) { console.log('Hello ' + name); } greet.apply(null, ['Alice']);

  • Useful for functions that accept multiple arguments when you have them in an array.

  • Can be used with built-in functio...

View all Angular Frontend Developer interview questions
Are these interview questions helpful?
A Marketing Associate was asked
Q. How many years of experience do you have in marketing?
Ans. 

I have 3 years of experience in marketing.

  • I have worked in various marketing roles for the past 3 years.

  • During my time in marketing, I have successfully executed multiple campaigns and strategies.

  • I have experience in both traditional and digital marketing channels.

  • I have worked with cross-functional teams to achieve marketing objectives.

  • I have a strong understanding of market research and analysis.

View all Marketing Associate interview questions
A Full Stack Developer was asked
Q. What is async/await?
Ans. 

Async/await is a way to write asynchronous code in a synchronous style.

  • Async/await is a syntax for writing asynchronous code in JavaScript.

  • It allows you to write asynchronous code that looks like synchronous code.

  • It uses the 'async' keyword to define an asynchronous function and the 'await' keyword to wait for a promise to resolve.

  • It helps to avoid callback hell and makes code more readable and maintainable.

View all Full Stack Developer interview questions
A Full Stack Developer was asked
Q. What is callback hell and how can we resolve it?
Ans. 

Callback hell is a situation where nested callbacks make code difficult to read and maintain.

  • Use named functions instead of anonymous functions

  • Use Promises or async/await to handle asynchronous operations

  • Use modularization and separation of concerns to break down complex code

  • Use error handling to prevent code from breaking

View all Full Stack Developer interview questions

Successive Technologies Interview Experiences

25 interviews found

I applied via Company Website and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

21 Questions

  • Q1. I applied for MEAN stack developer. So they asked me Explain Event Loop in details?
  • Ans. 

    The Event Loop is a core concept in JavaScript that enables non-blocking I/O operations, allowing asynchronous programming.

    • JavaScript is single-threaded, meaning it can execute one command at a time.

    • The Event Loop manages the execution of code, collecting and processing events, and executing queued sub-tasks.

    • When an asynchronous operation (like a network request) is initiated, it runs in the background, freeing the mai...

  • Answered by AI
  • Q2. What is difference in forEach and map?
  • Ans. 

    forEach and map are both array methods in JavaScript, but they differ in their return values and usage.

    • forEach executes a provided function once for each array element and does not return anything.

    • map creates a new array with the results of calling a provided function on every element in the array.

    • forEach is used when we want to perform an action on each element of the array, while map is used when we want to transform...

  • Answered by AI
  • Q3. What is rest and spread operator?
  • Ans. 

    Rest and spread operators are used in JavaScript to manipulate arrays and objects.

    • Rest operator allows us to represent an indefinite number of arguments as an array.

    • Spread operator allows us to spread an array or object into individual elements.

    • Rest operator is denoted by three dots (...)

    • Spread operator is also denoted by three dots (...) but is used in a different context.

    • Rest operator can be used in function paramete...

  • Answered by AI
  • Q4. What are closures?
  • Ans. 

    Closures are functions that have access to variables in their outer scope, even after the outer function has returned.

    • Closures are created when a function is defined inside another function.

    • The inner function has access to the outer function's variables and parameters.

    • Closures can be used to create private variables and methods in JavaScript.

    • Closures can also be used to create functions with pre-set arguments.

  • Answered by AI
  • Q5. What is call, apply, bind ?
  • Ans. 

    Call, apply, and bind are methods used to manipulate the 'this' keyword in JavaScript functions.

    • Call invokes a function with a specified 'this' value and arguments provided individually.

    • Apply invokes a function with a specified 'this' value and arguments provided as an array.

    • Bind returns a new function with a specified 'this' value and initial arguments.

    • All three methods are used to control the value of 'this' in a fun...

  • Answered by AI
  • Q6. What is hoisting?
  • Ans. 

    Hoisting is a JavaScript mechanism where variables and function declarations are moved to the top of their scope.

    • Variables declared with var are hoisted to the top of their scope

    • Function declarations are also hoisted to the top of their scope

    • Function expressions are not hoisted

    • Hoisting can lead to unexpected behavior and bugs

  • Answered by AI
  • Q7. What is difference of for of and for in loop?
  • Ans. 

    for of loop is used to iterate over iterable objects while for in loop is used to iterate over object properties.

    • for of loop is used with arrays, strings, maps, sets, etc.

    • for in loop is used with objects to iterate over its properties.

    • for of loop returns the values of the iterable object while for in loop returns the keys of the object properties.

    • for of loop cannot be used with plain objects while for in loop can be us...

  • Answered by AI
  • Q8. What is dependency injection?
  • Ans. 

    Dependency injection is a design pattern that allows objects to receive dependencies rather than creating them internally.

    • Dependency injection is a way to achieve loose coupling between objects.

    • It allows for easier testing and maintenance of code.

    • There are three types of dependency injection: constructor injection, setter injection, and interface injection.

    • Example: Instead of creating a database connection object insid...

  • Answered by AI
  • Q9. How Angular project starts?
  • Ans. 

    Angular project starts with creating a new project using Angular CLI.

    • Install Angular CLI globally using npm

    • Create a new project using ng new command

    • Serve the project using ng serve command

    • Open the project in a browser at http://localhost:4200/

  • Answered by AI
  • Q10. What is package.json what are the different segments?
  • Ans. 

    package.json is a file used in Node.js projects to manage dependencies and scripts.

    • Contains metadata about the project

    • Lists dependencies and devDependencies

    • Scripts for running tasks

    • Version of Node.js required

    • Author and license information

  • Answered by AI
  • Q11. What is service in Angular, Observables?
  • Ans. 

    Services in Angular are singleton objects that provide functionality to components. Observables are used for asynchronous data streams.

    • Services are used to share data and functionality across components

    • Services are singleton objects that can be injected into components

    • Observables are used for asynchronous data streams

    • Observables can be subscribed to in order to receive data

    • Observables can emit multiple values over time

  • Answered by AI
  • Q12. What is component in Angular?
  • Ans. 

    A component is a building block of an Angular application that represents a part of the UI.

    • Components are reusable and can be nested within other components.

    • Each component has its own template, styles, and logic.

    • Components communicate with each other using inputs and outputs.

    • Angular CLI generates components using the command 'ng generate component'.

  • Answered by AI
  • Q13. What is difference between Observables and Promises?
  • Ans. 

    Observables are streams of data that can be subscribed to, while Promises are one-time operations that return a single value.

    • Observables can emit multiple values over time, while Promises can only return a single value.

    • Observables can be cancelled, while Promises cannot.

    • Observables are lazy, meaning they only emit values when subscribed to, while Promises are eager and immediately execute when created.

    • Observables have ...

  • Answered by AI
  • Q14. What is Promises?
  • Ans. 

    Promises are a way to handle asynchronous operations in JavaScript.

    • Promises represent a value that may not be available yet, but will be resolved at some point in the future.

    • They have three states: pending, fulfilled, or rejected.

    • Promises can be chained together using .then() and .catch() methods.

    • They help avoid callback hell and make code more readable and maintainable.

    • Example: fetch() API returns a Promise that resol...

  • Answered by AI
  • Q15. What is Callbacks?
  • Ans. 

    Callbacks are functions passed as arguments to another function to be executed later.

    • Callbacks are commonly used in asynchronous programming.

    • They allow for non-blocking execution of code.

    • Callbacks can be anonymous or named functions.

    • Example: setTimeout(function() { console.log('Hello, world!'); }, 1000);

  • Answered by AI
  • Q16. What is callback hell and how we can resolve it?
  • Ans. 

    Callback hell is a situation where nested callbacks make code difficult to read and maintain.

    • Use named functions instead of anonymous functions

    • Use Promises or async/await to handle asynchronous operations

    • Use modularization and separation of concerns to break down complex code

    • Use error handling to prevent code from breaking

  • Answered by AI
  • Q17. What is async await?
  • Ans. 

    Async/await is a way to write asynchronous code in a synchronous style.

    • Async/await is a syntax for writing asynchronous code in JavaScript.

    • It allows you to write asynchronous code that looks like synchronous code.

    • It uses the 'async' keyword to define an asynchronous function and the 'await' keyword to wait for a promise to resolve.

    • It helps to avoid callback hell and makes code more readable and maintainable.

  • Answered by AI
  • Q18. What is CSS Box model?
  • Ans. 

    CSS Box model is a design concept that describes how elements are displayed on a webpage.

    • It consists of content, padding, border, and margin.

    • Content is the actual element content, padding is the space between content and border, border is the element's border, and margin is the space between border and other elements.

    • The box model can be adjusted using CSS properties such as padding, border, and margin.

    • Understanding th...

  • Answered by AI
  • Q19. What is Flex box?
  • Ans. 

    Flexbox is a CSS layout module that allows you to easily align and distribute space among items in a container.

    • Flexbox is used for creating responsive and flexible layouts.

    • It allows you to specify how much space each item should take up in a container.

    • You can align items vertically and horizontally using flexbox properties.

    • Flexbox is supported by all modern browsers.

    • Example: display: flex; justify-content: center; alig...

  • Answered by AI
  • Q20. What is keyframes?
  • Ans. 

    Keyframes are markers in time used for animation.

    • Keyframes define the starting and ending points of an animation.

    • They can also define intermediate points for more complex animations.

    • CSS and JavaScript both use keyframes for animation.

    • Example: @keyframes in CSS or the Keyframe API in JavaScript.

  • Answered by AI
  • Q21. What is media queries?
  • Ans. 

    Media queries are CSS rules that apply different styles based on the device's screen size, orientation, and resolution.

    • Media queries are used to create responsive web designs.

    • They allow developers to target specific devices and adjust the layout accordingly.

    • Media queries use the @media rule in CSS.

    • Examples of media queries include adjusting font sizes, hiding or showing elements, and changing the layout.

    • Media queries c...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Writing this for the freshers.

1) Build some portfolio projects.
- You will get practical experience
- You can showcase your portfolio to recruiters, It will increase your chances of getting selected.

2) Prepare your answer template
Eg - Definition, Overview, Example

- This way you know where you are strong and weak.
- Recruiter panel may have some people from business, some tech guys

So by definition and overview everyone understands what are you saying, tech people consider example or tech answers. This way you are catching everyone's attention. If you go with example and typical tech answers non-technical guy will get bored and no example means less practical knowledge.

If you don't know much about what they ask, tell whatever you know def or overview or example..

3) If you got rejected, don't get disappointed, remember the Questions they asked, note down in book. Calm down, prepare those questions.

This way you are increasing your ammunition for next interviews ?

4) Don't get nervous if you don't know the answer, be confident calm and composed.

Thanks, Best of luck ??

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I appeared for an interview in Jan 2025.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Basic Java Questions
  • Q2. One Steam coding question
Round 2 - Techno-Mangerial 

(1 Question)

  • Q1. Normal discussion around project and architecture

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not give interview in this company. They will never provide feeback.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website

Round 1 - Coding Test 

Make a node js api with express server

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

I applied via Campus Placement and was interviewed in Nov 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

2hrs exam basic questions of aptitude, English

Round 2 - Group Discussion 

Digitalization, social media impact in Indian societies, Deep fake AI

Round 3 - Technical 

(6 Questions)

  • Q1. Agile practices
  • Q2. Difference between agile and waterfall
  • Ans. 

    Agile is iterative and flexible, while waterfall is sequential and rigid.

    • Agile involves continuous feedback and adaptation, while waterfall follows a linear approach.

    • Agile allows for changes throughout the project, while waterfall requires detailed planning upfront.

    • Agile is best suited for projects with evolving requirements, while waterfall is better for projects with well-defined requirements.

    • Agile promotes collabora...

  • Answered by AI
  • Q3. About SDLC and it's process
  • Q4. Roles and responsibilities of people in SDLC
  • Q5. How to manage the conflict between QA and developer in a team
  • Ans. 

    Managing conflict between QA and developers requires effective communication, collaboration, and conflict resolution skills.

    • Encourage open communication and collaboration between QA and developers to address issues early on

    • Establish clear roles and responsibilities for both QA and developers to avoid misunderstandings

    • Implement a structured process for resolving conflicts, such as holding regular team meetings or using ...

  • Answered by AI
  • Q6. What is Scrum? Why is it important
  • Ans. 

    Scrum is an agile project management framework that emphasizes teamwork, accountability, and iterative progress.

    • Scrum involves breaking down projects into small, manageable tasks called user stories.

    • It includes daily stand-up meetings to track progress and address any obstacles.

    • Scrum promotes collaboration, adaptability, and continuous improvement.

    • It helps teams deliver high-quality products quickly and efficiently.

    • Exa...

  • Answered by AI
Round 4 - HR 

(4 Questions)

  • Q1. Why this job being from engineering background
  • Q2. Are you available for urgent ad-hoc activities
  • Ans. 

    Yes, I am available for urgent ad-hoc activities and can prioritize tasks effectively to meet business needs.

    • I can quickly adapt to changing priorities, ensuring urgent tasks are addressed promptly.

    • For example, if a team member is unavailable, I can step in to complete their analysis.

    • I have experience managing multiple tasks simultaneously, which helps in handling urgent requests efficiently.

    • I am proactive in communica...

  • Answered by AI
  • Q3. Family background
  • Q4. Why not core job, why BA

Interview Preparation Tips

Topics to prepare for Successive Technologies Trainee Business Analyst interview:
  • Scrum
  • Agile Methodology
  • Waterfall
  • role of business anlayst
Interview preparation tips for other job seekers - Always give your answer by using an example. Rather than definition, give examples. Be very confident, they will try to make you nervous, but be very confident. Always make an eye contact and take small pauses while you answer. Take 2-3sec to think before you speak of you feel the question is difficult or twisted to answer. Always answer diplomatically and make sure the resume has no line left that you don't know about.

Skills evaluated in this interview

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

(1 Question)

  • Q1. Introduction part
Round 2 - Assignment 

Share set of task to complete within the time period

Interview Preparation Tips

Interview preparation tips for other job seekers - Good place to learn and having opportunity, also depends on Your reporting manager.

Trainee Interview Questions & Answers

user image avneesh srivastava

posted on 1 May 2024

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

I applied via Referral and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Coding Test 

It was excellent and ask moderate types of questions.

Round 2 - Technical 

(1 Question)

  • Q1. As a freshers mostly ask questions Opps concepts, solid principal. And also well know about data structure.

Interview Preparation Tips

Interview preparation tips for other job seekers - Excellent!!
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Basics of JS, Node JS. Deep dive in React JS concept

Round 2 - Technical 

(1 Question)

  • Q1. About project. Technologies used. More deep dive in the concepts
Round 3 - HR 

(1 Question)

  • Q1. Just HR round for salary negogiation
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Coding Test 

The coding round is of 1 hr in which they ask questions related to skills and project mention in my resume

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

(1 Question)

  • Q1. Oops concept , static class , function , trigger , constructor , dB context

Interview Preparation Tips

Interview preparation tips for other job seekers - its very good company
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

The first round is coding round which consists of 7round each round is a elimination round but questions are basic like pattern printing,reverse string or find odd and even number

Round 3 - Coding Test 

The next round consist of 4 medium level coding questions questions are from dsa or database scheduling.

Round 4 - HR 

(1 Question)

  • Q1. I was eleminate before.
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Jul 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 - HR 

(1 Question)

  • Q1. Formal job description
Round 3 - Technical 

(1 Question)

  • Q1. Technical knowledge expect
  • Ans. 

    Desktop Support Engineers troubleshoot and resolve hardware and software issues for users, ensuring smooth IT operations.

    • Familiarity with operating systems like Windows, macOS, and Linux. For example, resolving boot issues in Windows 10.

    • Knowledge of common software applications, such as Microsoft Office and troubleshooting installation problems.

    • Experience with hardware components, including replacing RAM or hard drives...

  • Answered by AI

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 Successive Technologies?
Ask anonymously on communities.

Successive Technologies Interview FAQs

How many rounds are there in Successive Technologies interview?
Successive Technologies interview process usually has 2-3 rounds. The most common rounds in the Successive Technologies interview process are Technical, Coding Test and HR.
How to prepare for Successive Technologies 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 Successive Technologies. The most common topics and skills that interviewers at Successive Technologies expect are Javascript, Consulting, Healthcare, HTML and Logistics.
What are the top questions asked in Successive Technologies interview?

Some of the top questions asked at the Successive Technologies interview -

  1. What is package.json what are the different segmen...read more
  2. How to manage the conflict between QA and developer in a t...read more
  3. I applied for MEAN stack developer. So they asked me Explain Event Loop in deta...read more
How long is the Successive Technologies interview process?

The duration of Successive Technologies 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 24 interview experiences

Difficulty level

Easy 7%
Moderate 86%
Hard 7%

Duration

Less than 2 weeks 92%
2-4 weeks 8%
View more

Interview Questions from Similar Companies

MAQ Software Interview Questions
1.9
 • 104 Interviews
Webkul Software Interview Questions
4.0
 • 71 Interviews
Softenger Interview Questions
4.0
 • 59 Interviews
Zenoti Interview Questions
3.0
 • 45 Interviews
View all

Successive Technologies Reviews and Ratings

based on 200 reviews

3.9/5

Rating in categories

3.8

Skill development

3.9

Work-life balance

3.7

Salary

3.4

Job security

3.7

Company culture

3.5

Promotions

3.6

Work satisfaction

Explore 200 Reviews and Ratings
Content Writer

Prayagraj / Allahabad,

Varanasi

+4

3-5 Yrs

Not Disclosed

MERN Developer

Noida

2-7 Yrs

Not Disclosed

Performance Marketing

Prayagraj / Allahabad,

Varanasi

+4

4-6 Yrs

Not Disclosed

Explore more jobs
Associate Engineer
185 salaries
unlock blur

₹2.8 L/yr - ₹9.4 L/yr

Senior Associate Engineer
158 salaries
unlock blur

₹9 L/yr - ₹16.2 L/yr

Associate Software Engineer
117 salaries
unlock blur

₹3.5 L/yr - ₹8.4 L/yr

Desktop Support Engineer
81 salaries
unlock blur

₹1.4 L/yr - ₹1.8 L/yr

Technical Lead
53 salaries
unlock blur

₹18.6 L/yr - ₹28.2 L/yr

Explore more salaries
Compare Successive Technologies with

Tekwissen

4.8
Compare

Softenger

4.0
Compare

XcelServ Solutions

4.4
Compare

Capital Numbers Infotech

4.4
Compare
write
Share an Interview