Upload Button Icon Add office photos

Filter interviews by

Jforce Solutions Springboot Developer Interview Questions and Answers

Updated 8 Nov 2024

Jforce Solutions Springboot Developer Interview Experiences

1 interview found

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

They give you a task like attendance management system and you have to create this task

Springboot Developer Jobs at Jforce Solutions

View all

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
No response

I applied via Walk-in

Round 1 - Technical 

(5 Questions)

  • Q1. Write a Spring boot application to accept two values and generate an XML file.
  • Ans. 

    Create a Spring Boot application to generate an XML file from two input values.

    • Create a Spring Boot project using Spring Initializr

    • Create a REST controller to accept two input values

    • Use JAXB to generate XML from the input values

    • Return the generated XML file as response

  • Answered by AI
  • Q2. Write a program to insert comma after every character.
  • Ans. 

    Program to insert comma after every character in a string.

    • Iterate through each character in the string

    • Append the character and a comma to a new string

    • Handle the last character to avoid adding an extra comma

  • Answered by AI
  • Q3. Find the third max Salary in Oracle.
  • Ans. 

    Use SQL query with ROW_NUMBER() function to find the third max salary in Oracle.

    • Use ROW_NUMBER() function to assign a unique row number to each row based on the salary in descending order.

    • Filter the result where the row number is 3 to get the third max salary.

  • Answered by AI
  • Q4. Microservies design pattern. Explain annotation used in circuit breaker.
  • Ans. 

    Circuit breaker is a design pattern used in microservices to prevent cascading failures.

    • Circuit breaker is used to detect failures and prevent them from causing further issues.

    • It works by wrapping a protected function call in a circuit breaker object.

    • Annotations like @CircuitBreaker in Spring Cloud are used to implement circuit breaker pattern.

    • These annotations allow developers to easily add circuit breaker functionali

  • Answered by AI
  • Q5. JPA vs Hibernate
  • Ans. 

    JPA is a specification while Hibernate is an implementation of JPA.

    • JPA is a Java specification for managing relational data in applications.

    • Hibernate is an ORM framework that implements the JPA specification.

    • Hibernate provides additional features beyond JPA, such as caching and lazy loading.

    • JPA is vendor-neutral, allowing developers to switch between different JPA implementations.

    • Hibernate is a popular choice for JPA i...

  • Answered by AI

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(8 Questions)

  • Q1. Spring filters explained briefly
  • Ans. 

    Spring filters are components in Spring framework that intercept incoming HTTP requests and outgoing HTTP responses.

    • Filters are used to perform tasks like logging, authentication, authorization, etc.

    • They are configured in the web.xml file or using annotations like @WebFilter.

    • Example: javax.servlet.Filter interface is implemented to create custom filters.

  • Answered by AI
  • Q2. Spring security concepts
  • Q3. Flat map vs map
  • Ans. 

    Flat map is used to flatten nested collections, while map is used to transform elements in a collection.

    • Flat map is used when you have a collection of collections and you want to flatten it into a single collection.

    • Map is used to transform each element in a collection using a given function.

    • Example: Using flatMap to flatten a list of lists - list.stream().flatMap(List::stream).collect(Collectors.toList())

    • Example: Using...

  • Answered by AI
  • Q4. Stream apI in java 8 explanation
  • Ans. 

    Stream API in Java 8 allows for functional-style operations on collections.

    • Stream API provides a way to process collections of objects in a functional way.

    • It supports operations like filter, map, reduce, and collect.

    • Example: List names = Arrays.asList("Alice", "Bob", "Charlie"); Stream stream = names.stream();

    • Example: List numbers = Arrays.asList(1, 2, 3, 4, 5); int sum = numbers.stream().filter(n -> n % 2 == 0).mapToI

  • Answered by AI
  • Q5. Paraller programming concepts in java 8
  • Ans. 

    Java 8 introduced parallel programming concepts like streams, parallel streams, and CompletableFuture.

    • Java 8 introduced streams which allow for functional-style operations on collections.

    • Parallel streams allow for parallel processing of stream elements, improving performance on multi-core processors.

    • CompletableFuture class enables asynchronous programming by representing a future result of an asynchronous computation.

  • Answered by AI
  • Q6. Abstract vs interfcae
  • Ans. 

    Abstract classes can have both abstract and non-abstract methods, while interfaces can only have abstract methods.

    • Abstract classes can have constructors, fields, and methods, while interfaces cannot.

    • A class can implement multiple interfaces but can only extend one abstract class.

    • Abstract classes are used to define a common behavior for subclasses, while interfaces are used to define a contract for classes to implement.

    • ...

  • Answered by AI
  • Q7. SOLID principle explain
  • Ans. 

    SOLID is a set of five design principles to make software designs more understandable, flexible, and maintainable.

    • S - Single Responsibility Principle: A class should have only one reason to change.

    • O - Open/Closed Principle: Software entities should be open for extension but closed for modification.

    • L - Liskov Substitution Principle: Objects of a superclass should be replaceable with objects of its subclasses without aff...

  • Answered by AI
  • Q8. Static keyword explain
  • Ans. 

    Static keyword is used in Java to create class-level variables and methods.

    • Static variables are shared among all instances of a class

    • Static methods can be called without creating an instance of the class

    • Static keyword can also be used to create static blocks for initialization

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
No response
Round 1 - HR 

(2 Questions)

  • Q1. What is your experience and current compensation (CTC)?
  • Ans. 

    I have 5 years of experience in process development with a current CTC of $70,000.

    • 5 years of experience in process development

    • Current CTC of $70,000

    • Experience in optimizing processes and improving efficiency

  • Answered by AI
  • Q2. What are your communication skills?
  • Ans. 

    I have strong communication skills, both written and verbal, with the ability to effectively convey information and ideas.

    • Excellent verbal communication skills demonstrated through clear and concise articulation of ideas

    • Strong written communication skills shown through drafting clear and professional emails and reports

    • Ability to actively listen and respond appropriately in conversations

    • Experience in presenting informat...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. What is the accounts payable cycle?
  • Ans. 

    The accounts payable cycle is the process of receiving, verifying, and paying invoices from vendors.

    • Invoices are received from vendors for goods or services provided

    • Invoices are verified for accuracy and approved for payment

    • Payments are made to vendors within the agreed upon terms

    • The cycle repeats for each invoice received

  • Answered by AI
  • Q2. Miro processing
Round 3 - One-on-one 

(2 Questions)

  • Q1. What are the implications of invoice deductions related to disputes?
  • Ans. 

    Invoice deductions related to disputes can impact cash flow, customer relationships, and operational efficiency.

    • Invoice deductions can lead to delayed or reduced payments, affecting cash flow.

    • Disputes can strain relationships with customers, leading to potential loss of business.

    • Resolving disputes can be time-consuming and resource-intensive, impacting operational efficiency.

    • Examples: Deductions for damaged goods, inco

  • Answered by AI
  • Q2. What is the process of evolving reconciliation?
  • Ans. 

    The process of evolving reconciliation involves identifying discrepancies, investigating root causes, implementing corrective actions, and monitoring progress.

    • Identify discrepancies in financial records or accounts

    • Investigate root causes of discrepancies, such as errors in data entry or miscommunication

    • Implement corrective actions to address the root causes and prevent future discrepancies

    • Monitor progress regularly to ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I would like to advance to the next level.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(8 Questions)

  • Q1. What improvements to interfaces were introduced in Java 8 that were missing in Java 7, specifically regarding static and default methods?
  • Ans. 

    Java 8 introduced static and default methods in interfaces, allowing for method implementation and code reusability.

    • Java 8 introduced static methods in interfaces, allowing for method implementation directly in the interface itself.

    • Default methods were also introduced in Java 8, enabling interfaces to have method implementations without affecting implementing classes.

    • Static methods in interfaces can be called using the...

  • Answered by AI
  • Q2. Explain internal working of HashMap ? How to synchronize it ?
  • Ans. 

    HashMap is a data structure that stores key-value pairs and uses hashing to efficiently retrieve values.

    • HashMap uses an array of linked lists to store key-value pairs.

    • When a key-value pair is added, the key is hashed to determine the index in the array where it will be stored.

    • If multiple keys hash to the same index, a linked list is used to handle collisions.

    • To synchronize a HashMap, you can use the synchronizedMap() m...

  • Answered by AI
  • Q3. Given a list of employees with their ratings, how can you sort the employees based on their ratings using the Java 8 Streaming API?
  • Q4. Will the program compile if the parent class throws a runtime exception while the child class throws an arithmetic exception?
  • Ans. 

    No, the program will not compile if the parent class throws a runtime exception while the child class throws an arithmetic exception.

    • In Java, if a parent class method throws a checked exception, the child class method can only throw the same exception or its subclasses.

    • ArithmeticException is an unchecked exception, so if the parent class throws a checked exception and the child class throws an unchecked exception, the ...

  • Answered by AI
  • Q5. In a Spring Boot application with two databases, how can you configure JDBC to specify which database to use?
  • Ans. 

    Configure JDBC in Spring Boot to specify which database to use

    • Define multiple DataSource beans in the configuration class

    • Use @Primary annotation to specify the primary DataSource

    • Use @Qualifier annotation to specify the secondary DataSource

    • Inject the DataSource beans where needed in the application

  • Answered by AI
  • Q6. How to use a jetty server in your spring boot application ?
  • Ans. 

    To use a Jetty server in a Spring Boot application, you can configure it as a dependency and customize its settings.

    • Add Jetty server dependency in your pom.xml file

    • Exclude Tomcat server dependency if it's included by default in Spring Boot

    • Configure Jetty server settings in application.properties or application.yml file

    • Example: Add Jetty dependency - <dependency> <groupId>org.springframework.boot</groupId...

  • Answered by AI
  • Q7. Difference between @RequestParam and @PathVariable ?
  • Ans. 

    RequestParam is used to extract query parameters from the URL, while PathVariable is used to extract values from the URI path.

    • RequestParam is used for query parameters in the URL, while PathVariable is used for values in the URI path.

    • RequestParam is optional, while PathVariable is required.

    • RequestParam is used with the @RequestParam annotation, while PathVariable is used with the @PathVariable annotation.

    • Example: @Requ...

  • Answered by AI
  • Q8. How would you handle a scenario where one microservice is awaiting a response from another microservice that is taking an extended time to respond?
  • Ans. 

    I would implement timeout mechanisms and retries to handle the scenario of one microservice awaiting a response from another microservice taking an extended time.

    • Implement timeout mechanisms in the calling microservice to limit the waiting time for a response.

    • Set up retry logic to automatically resend the request to the slow microservice if no response is received within the specified timeout period.

    • Use circuit breaker...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare the basics about Java 8 , Core Java , Springboot , Microservices and MySql.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Dec 2024. There were 5 interview rounds.

Round 1 - Aptitude Test 

An aptitude test is an assessment to measure a candidate mental aptitude/mental ability

Round 2 - Technical 

(3 Questions)

  • Q1. Can you briefly Tell us about yourself?
  • Ans. 

    I am a passionate software developer with 5 years of experience in web development and a strong background in computer science.

    • 5 years of experience in web development

    • Strong background in computer science

    • Passionate about software development

  • Answered by AI
  • Q2. What do you consider to be your strongest points?
  • Ans. 

    My strongest points include problem-solving skills, attention to detail, and ability to work well in a team.

    • Strong problem-solving skills - I enjoy tackling complex issues and finding creative solutions.

    • Attention to detail - I am meticulous in my work and strive for perfection in every task.

    • Team player - I collaborate effectively with colleagues, communicate openly, and contribute positively to group projects.

  • Answered by AI
  • Q3. Which programming languages do you use regularly in your work
  • Ans. 

    I regularly use Java, Python, and SQL in my work as a Software Developer.

    • Java

    • Python

    • SQL

  • Answered by AI
Round 3 - Group Discussion 

A group discussion is a structured conversation in which participants share their ideas, perspectives, and solutions on a specific topic.

Round 4 - HR 

(2 Questions)

  • Q1. What motivates you to seek employment at Wipro?
  • Ans. 

    I am motivated to seek employment at Wipro because of their reputation for innovation and opportunities for growth.

    • Impressed by Wipro's track record of delivering cutting-edge solutions

    • Excited about the chance to work with a diverse and talented team

    • Eager to take advantage of Wipro's professional development programs

  • Answered by AI
  • Q2. What are your long-term career goals?
  • Ans. 

    My long-term career goal is to become a lead software developer and eventually move into a management role.

    • Advance to a lead software developer position

    • Gain experience in managing a team of developers

    • Develop strong leadership and communication skills

    • Continue learning new technologies and staying updated with industry trends

  • Answered by AI
Round 5 - Assignment 

Assignment details refer to the specifics of an assignment, including any documents and/or emails or subsequent correspondence between the company and the client.

Interview Preparation Tips

Topics to prepare for Wipro Software Developer interview:
  • Your academic achievement
  • Responsibility related to your p
  • The way you address mistakes at
Interview preparation tips for other job seekers - Reflect on the activities you enjoy and what brings you happiness, while also taking into account your skills and strengths.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(8 Questions)

  • Q1. How much exp in docker?
  • Ans. 

    I have 2 years of experience working with Docker in various projects.

    • 2 years of experience working with Docker in various projects

    • Proficient in creating Docker containers, managing images, and orchestrating containers using Docker Compose

    • Familiar with Docker Swarm and Kubernetes for container orchestration

    • Experience in troubleshooting Docker-related issues and optimizing container performance

  • Answered by AI
  • Q2. Do you have exp in Kubernetes?
  • Ans. 

    Yes, I have experience in Kubernetes.

    • I have worked on deploying and managing applications on Kubernetes clusters.

    • I am familiar with creating and managing Kubernetes resources such as pods, deployments, services, and ingresses.

    • I have experience in using tools like kubectl and Helm for interacting with Kubernetes clusters.

    • I have implemented CI/CD pipelines using Kubernetes for automated deployment and scaling of applicat

  • Answered by AI
  • Q3. What is OOP?
  • Ans. 

    OOP stands for Object-Oriented Programming, a programming paradigm based on the concept of objects.

    • OOP focuses on creating objects that contain data and methods to manipulate that data.

    • Encapsulation, inheritance, and polymorphism are key principles of OOP.

    • Examples of OOP languages include Java, C++, and Python.

  • Answered by AI
  • Q4. Types of polymorphism
  • Ans. 

    Polymorphism in Java refers to the ability of a method to do different things based on the object it is acting upon.

    • Types of polymorphism in Java include method overloading and method overriding.

    • Method overloading is when multiple methods have the same name but different parameters.

    • Method overriding is when a subclass provides a specific implementation of a method that is already defined in its superclass.

  • Answered by AI
  • Q5. Thread in java
  • Ans. 

    Threads in Java allow multiple tasks to run concurrently within a single program.

    • Threads are lightweight sub-processes that share the same memory space.

    • They are used to improve performance by allowing tasks to run simultaneously.

    • Examples include creating a new thread using the Thread class or implementing the Runnable interface.

  • Answered by AI
  • Q6. Knowledge in which spring modules
  • Q7. What is spring profile
  • Ans. 

    Spring profile is a way to segregate parts of your application configuration and make it only available in certain environments.

    • Spring profiles allow you to define different configurations for different environments such as development, testing, and production.

    • You can use @Profile annotation to specify which beans should be loaded based on the active profile.

    • Profiles can be activated in various ways such as through app...

  • Answered by AI
  • Q8. What is @PreAuthorize and @PostAuthorize
  • Ans. 

    Annotations used in Spring Security to apply authorization rules before and after a method is called.

    • Used in Spring Security to define authorization rules

    • @PreAuthorize is used to apply authorization rules before a method is called

    • @PostAuthorize is used to apply authorization rules after a method is called

    • Both annotations support SpEL expressions for defining rules

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Deloitte Java Developer interview:
  • Basics in java
  • Spring security
  • Spring Boot
  • Docker
  • Cloud Computing
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I was interviewed in Jan 2025.

Round 1 - Technical 

(5 Questions)

  • Q1. What is a polymorphism?
  • Q2. Can you explain difference between == and euqals()?
  • Q3. What is dependency inversion?
  • Q4. Can you explain ACID?
  • Q5. Please tell me about isolation levels
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Technical questions asked
  • Q2. Coding questions
Round 2 - HR 

(1 Question)

  • Q1. Technical questions
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Company is good , but getting less hike
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Walk-in and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Technical 

(6 Questions)

  • Q1. Introduced yourself?
  • Ans. 

    I am a Senior Software Developer with 8 years of experience in full-stack development, specializing in Java and Angular.

    • 8 years of experience in full-stack development

    • Specialize in Java and Angular

    • Strong problem-solving skills

    • Experience with Agile methodologies

    • Excellent communication and teamwork abilities

  • Answered by AI
  • Q2. What is the use of the yield() method in threading?
  • Ans. 

    The yield() method in threading is used to give up the CPU and allow other threads to run.

    • Allows other threads to run by giving up the CPU temporarily

    • Useful for preventing one thread from dominating the CPU

    • Can be used to implement cooperative multitasking

  • Answered by AI
  • Q3. What is hash collision and how it can be handled?
  • Ans. 

    Hash collision occurs when two different inputs produce the same hash value. It can be handled by using techniques like chaining or open addressing.

    • Hash collision is a common issue in hash tables where different keys produce the same hash value.

    • One way to handle hash collisions is by using chaining, where each bucket in the hash table stores a linked list of key-value pairs with the same hash value.

    • Another way to handl...

  • Answered by AI
  • Q4. What is use of Method reference instead lambada expressions in java 8?
  • Ans. 

    Method references provide a more concise way to refer to methods by name instead of using lambda expressions.

    • Method references can make code more readable and maintainable by reducing boilerplate code.

    • They can be used to refer to static methods, instance methods, and constructors.

    • Example: list.forEach(System.out::println) is equivalent to list.forEach(item -> System.out.println(item)).

  • Answered by AI
  • Q5. What is vertical and horizontal scaling in micro services?
  • Ans. 

    Vertical scaling increases the capacity of a single server, while horizontal scaling adds more servers to distribute the load.

    • Vertical scaling involves increasing the resources of a single server, such as CPU, RAM, or storage.

    • Horizontal scaling involves adding more servers to distribute the load, often done through containerization or virtualization.

    • Vertical scaling is limited by the capacity of a single server, while ...

  • Answered by AI
  • Q6. Write a java program to make upper case of first letter in the each word in the below String "i am a java programmer"?
  • Ans. 

    Java program to capitalize first letter of each word in a given string

    • Split the input string by space to get individual words

    • Iterate through each word and capitalize the first letter

    • Join the words back together to form the final capitalized string

  • Answered by AI
Round 2 - Magerial round 

(4 Questions)

  • Q1. How the escalation matrix works in case of production defects?
  • Ans. 

    Escalation matrix defines the process for escalating production defects based on severity and impact.

    • Escalation matrix typically includes levels of escalation, responsible parties at each level, and criteria for escalating defects.

    • For example, a Level 1 escalation may involve the development team, while a Level 2 escalation may involve senior management.

    • Criteria for escalation may include severity of the defect, impact...

  • Answered by AI
  • Q2. What is your recent challenging task you have done in current project?
  • Ans. 

    Implemented a real-time data synchronization feature between multiple servers.

    • Designed a custom protocol for efficient data transfer

    • Implemented server-side logic to handle data conflicts

    • Utilized websockets for real-time communication

  • Answered by AI
  • Q3. Can you have ability to handle tasks individually?
  • Ans. 

    Yes, I have the ability to handle tasks individually.

    • I have a proven track record of successfully completing projects on my own.

    • I am self-motivated and can prioritize tasks effectively.

    • I have strong problem-solving skills which allow me to tackle challenges independently.

  • Answered by AI
  • Q4. Is it okay to give the Deliverables under pressure?
  • Ans. 

    Yes, it is okay to give deliverables under pressure as long as quality is not compromised.

    • Meeting deadlines is important in software development.

    • Pressure can sometimes lead to increased focus and productivity.

    • Communication with stakeholders about realistic timelines is key.

    • Prioritizing tasks and managing time effectively can help in delivering under pressure.

  • Answered by AI
Round 3 - HR 

(4 Questions)

  • Q1. Introduce yourself?
  • Ans. 

    I am a Senior Software Developer with 8 years of experience in developing web applications using various technologies.

    • Experienced in full stack development

    • Proficient in languages like Java, JavaScript, and Python

    • Skilled in using frameworks like Spring, React, and Django

    • Strong understanding of database management systems

    • Familiar with Agile development methodologies

  • Answered by AI
  • Q2. Why your leaving current company?
  • Ans. 

    Seeking new challenges and growth opportunities.

    • Desire for career advancement

    • Looking for new challenges

    • Seeking better work-life balance

    • Company restructuring or changes in management

  • Answered by AI
  • Q3. What is your current CTC and expected CTC?
  • Ans. 

    My current CTC is $100,000 and my expected CTC is $120,000.

    • Current CTC: $100,000

    • Expected CTC: $120,000

  • Answered by AI
  • Q4. Do you have all the relevant documents of previous companies?
  • Ans. 

    Yes, I have all relevant documents from previous companies.

    • I have copies of offer letters, employment contracts, and performance reviews.

    • I also have any relevant certifications or training records.

    • I can provide references from previous employers if needed.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please prepare thoroughly related to java8 and mutithreading and Microservices

Skills evaluated in this interview

Jforce Solutions Interview FAQs

How many rounds are there in Jforce Solutions Springboot Developer interview?
Jforce Solutions interview process usually has 1 rounds. The most common rounds in the Jforce Solutions interview process are Assignment.
How to prepare for Jforce Solutions Springboot 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 Jforce Solutions. The most common topics and skills that interviewers at Jforce Solutions expect are Spring, Microservices, Spring Boot, React.Js and Redis.

Tell us how to improve this page.

Jforce Solutions Springboot Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Amazon Interview Questions
4.1
 • 5.1k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
View all
Software Engineer
19 salaries
unlock blur

₹3 L/yr - ₹7.8 L/yr

Software Developer
16 salaries
unlock blur

₹3.6 L/yr - ₹10 L/yr

Java Developer
5 salaries
unlock blur

₹3 L/yr - ₹3.6 L/yr

Data Analyst
4 salaries
unlock blur

₹2.5 L/yr - ₹8.2 L/yr

Salesforce Developer
4 salaries
unlock blur

₹2.1 L/yr - ₹6.8 L/yr

Explore more salaries
Compare Jforce Solutions with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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