Upload Button Icon Add office photos
Engaged Employer

i

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

Direction Software LLP Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Direction Software LLP Software Engineer Interview Questions and Answers

Updated 13 Oct 2024

6 Interview questions

🔥 Asked by recruiter 2 times
A Software Engineer was asked 9mo ago
Q. What are microservices?
Ans. 

Microservices are an architectural style that structures an application as a collection of loosely coupled services.

  • Microservices enable independent deployment of services, allowing for faster updates.

  • Each microservice can be developed using different programming languages or technologies.

  • They communicate over lightweight protocols, typically HTTP/REST or messaging queues.

  • Examples include Netflix, which uses micro...

A Software Engineer was asked 9mo ago
Q. Coding problem - Find the maximum and minimum sum after removing one element from an array. (what is the time complexity of the program?)
Ans. 

Find max and min sum after removing one element from array. Time complexity analysis required.

  • Iterate through array to find sum of all elements

  • For each element, calculate sum after removing it

  • Track max and min sum as you iterate

  • Time complexity: O(n) where n is the number of elements in the array

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Four people need to cross a bridge at night with only one torch t ... read more
asked in Capgemini
Q2. In a dark room, there is a box of 18 white and 5 black gloves. Yo ... read more
Q3. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q4. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
asked in TCS
Q5. Find the Duplicate Number Problem Statement Given an integer arra ... read more
A Software Engineer was asked 9mo ago
Q. How can you secure a spring boot application, especially in the context of a banking application? what are the basics of spring security?
Ans. 

Securing a Spring Boot application, especially in the context of a banking application, involves implementing Spring Security.

  • Use Spring Security to handle authentication and authorization

  • Implement secure communication using HTTPS

  • Utilize role-based access control to restrict user permissions

  • Enable CSRF protection to prevent cross-site request forgery attacks

  • Implement secure password storage and session management

A Software Engineer was asked 9mo ago
Q. Difference between fail-fast and fail-safe? which one is synchronized?
Ans. 

Fail-fast stops immediately upon detecting an error, while fail-safe continues to operate despite errors. Fail-safe is synchronized.

  • Fail-fast immediately stops the operation upon encountering an error, ensuring that no further damage is done.

  • Fail-safe continues to operate despite errors, often by handling the error and allowing the program to continue running.

  • Fail-safe is synchronized, meaning that it is designed ...

A Software Engineer was asked 9mo ago
Q. Key features of Java 8.
Ans. 

Key features of Java 8 include lambda expressions, functional interfaces, streams, and default methods.

  • Lambda expressions allow for functional programming style in Java.

  • Functional interfaces enable the use of lambda expressions.

  • Streams provide a way to work with collections in a more functional way.

  • Default methods allow interfaces to have method implementations.

A Software Engineer was asked 9mo ago
Q. Internal working of messaging between microservices.
Ans. 

Messaging between microservices involves communication through message brokers or direct API calls.

  • Microservices communicate through message brokers like RabbitMQ or Kafka.

  • Messages are sent in a format like JSON or XML.

  • Microservices can also communicate through direct API calls using REST or gRPC.

  • Message queues help in decoupling services and ensuring reliable communication.

  • Service discovery mechanisms like Consul...

Direction Software LLP Software Engineer Interview Experiences

1 interview found

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

I applied via Referral and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Technical 

(17 Questions)

  • Q1. What was your role and responsibilities in your previous company?
  • Q2. Key features of Java 8.
  • Ans. 

    Key features of Java 8 include lambda expressions, functional interfaces, streams, and default methods.

    • Lambda expressions allow for functional programming style in Java.

    • Functional interfaces enable the use of lambda expressions.

    • Streams provide a way to work with collections in a more functional way.

    • Default methods allow interfaces to have method implementations.

  • Answered by AI
  • Q3. What is multi-threading and how have you used it in your application?
  • Q4. What are the compatible features of Java?
  • Q5. Can you explain what ConcurrentModificationException is and how to resolve it?
  • Q6. What is Spring Boot?
  • Q7. What are microservices?
  • Q8. Do microservices contain transactional data?
  • Ans. 

    Yes, microservices can contain transactional data.

    • Microservices can handle transactional data by using distributed transactions or event sourcing.

    • Each microservice can manage its own database, which can include transactional data.

    • Microservices can communicate with each other to ensure consistency in transactional data.

    • Examples: E-commerce platform with separate microservices for inventory, orders, payments, etc.

  • Answered by AI
  • Q9. How can microservices be updated with new data?
  • Ans. 

    Microservices can be updated with new data by using versioning, rolling updates, blue-green deployments, and canary releases.

    • Use versioning to manage different versions of microservices.

    • Implement rolling updates to gradually update instances without downtime.

    • Utilize blue-green deployments to switch between old and new versions seamlessly.

    • Employ canary releases to test new data on a small subset of users before full dep...

  • Answered by AI
  • Q10. What technologies can be used to update microservices with data?
  • Ans. 

    Technologies like Kafka, RabbitMQ, and Apache Pulsar can be used to update microservices with data.

    • Kafka

    • RabbitMQ

    • Apache Pulsar

  • Answered by AI
  • Q11. How do you configure login in Spring Boot?
  • Ans. 

    To configure login in Spring Boot, you can use Spring Security to handle authentication and authorization.

    • Add Spring Security dependency in your pom.xml file

    • Create a class that extends WebSecurityConfigurerAdapter to configure security settings

    • Override configure(HttpSecurity http) method to define login form, login processing URL, success and failure URLs

    • Use @EnableWebSecurity annotation on your main application class ...

  • Answered by AI
  • Q12. How do you handle multiple data sources in Spring Boot?
  • Q13. Do you filter out duplicate employee records from a list?
  • Ans. 

    Yes, I typically use a hash set or dictionary to filter out duplicate employee records from a list.

    • Iterate through the list of employee records

    • Use a hash set or dictionary to keep track of unique employee IDs

    • Check each employee record against the hash set or dictionary to filter out duplicates

  • Answered by AI
  • Q14. How do you identify an object in a collection?
  • Ans. 

    To identify an object in a collection, you can iterate through the collection and compare each object with the target object.

    • Iterate through the collection using a loop

    • Compare each object in the collection with the target object using a conditional statement

    • Use a unique identifier or property of the object to match it with the target object

    • Example: Identifying a specific student in a list of students by comparing their...

  • Answered by AI
  • Q15. What is a REST API?
  • Q16. How do you implement an authentication service in an application?
  • Ans. 

    Implementing an authentication service involves creating a secure system for verifying user identities.

    • Use encryption to securely store user passwords

    • Implement multi-factor authentication for added security

    • Utilize tokens or cookies for session management

    • Integrate with OAuth or OpenID Connect for third-party authentication

    • Implement rate limiting and account lockout mechanisms to prevent brute force attacks

  • Answered by AI
  • Q17. How does REST service return data and in which format?
  • Ans. 

    REST services return data in JSON or XML format.

    • Data is typically returned in JSON or XML format.

    • JSON is more commonly used due to its simplicity and readability.

    • REST services can also return data in other formats like HTML or plain text.

    • Example: {"name": "John Doe", "age": 30}

  • Answered by AI
Round 2 - Technical 

(9 Questions)

  • Q1. What is the role of the Spring Boot actuator?
  • Ans. 

    Spring Boot actuator provides production-ready features to help monitor and manage your application.

    • Provides endpoints to monitor application health, metrics, info, etc.

    • Can be used to check the status of the application, database connections, and more.

    • Allows customization and security configurations for the endpoints.

  • Answered by AI
  • Q2. How can you secure a spring boot application, especially in the context of a banking application? what are the basics of spring security?
  • Ans. 

    Securing a Spring Boot application, especially in the context of a banking application, involves implementing Spring Security.

    • Use Spring Security to handle authentication and authorization

    • Implement secure communication using HTTPS

    • Utilize role-based access control to restrict user permissions

    • Enable CSRF protection to prevent cross-site request forgery attacks

    • Implement secure password storage and session management

  • Answered by AI
  • Q3. How can you integrate Spring Data JPA with Spring Boot?
  • Ans. 

    Integrating Spring Data JPA with Spring Boot allows for easy database operations in a Spring Boot application.

    • Add Spring Data JPA dependency in pom.xml

    • Create JPA entity classes annotated with @Entity

    • Create a repository interface extending JpaRepository

    • Use repository interface in service classes for database operations

    • Configure application.properties with database connection details

  • Answered by AI
  • Q4. Can you explain the concept of Optional in Java?
  • Q5. Do you have any experience with job scheduling?
  • Ans. 

    Yes, I have experience with job scheduling in previous projects.

    • Utilized cron jobs to automate tasks at specific times

    • Worked with tools like Apache Airflow for complex job scheduling workflows

    • Implemented job scheduling in Python scripts using libraries like schedule or APScheduler

  • Answered by AI
  • Q6. How does microservice architecture differ from monolithic architecture?
  • Q7. What is the use of the CI/CD pipeline in software development?
  • Q8. What technologies you were using to create the UI side of your springboard application?
  • Ans. 

    I used AngularJS and Bootstrap to create the UI side of the springboard application.

    • AngularJS

    • Bootstrap

  • Answered by AI
  • Q9. What do you know about Vaadin?
  • Ans. 

    Vaadin is an open-source web application framework for building modern web apps using Java.

    • Vaadin allows developers to build web applications using Java on the server-side and HTML/CSS/JavaScript on the client-side.

    • It provides a set of customizable UI components and a Java API for creating interactive web interfaces.

    • Vaadin simplifies the development process by handling client-server communication and UI updates automat...

  • Answered by AI
Round 3 - Technical 

(24 Questions)

  • Q1. What is the difference between JDK and JRE?
  • Q2. Can we run a program without JRE?
  • Q3. What is the internal working of HashMap in java?
  • Q4. What happens if I have a key with a null value in HashMap and where it will get stored?
  • Q5. Difference between fail-fast and fail-safe? which one is synchronized?
  • Ans. 

    Fail-fast stops immediately upon detecting an error, while fail-safe continues to operate despite errors. Fail-safe is synchronized.

    • Fail-fast immediately stops the operation upon encountering an error, ensuring that no further damage is done.

    • Fail-safe continues to operate despite errors, often by handling the error and allowing the program to continue running.

    • Fail-safe is synchronized, meaning that it is designed to ha...

  • Answered by AI
  • Q6. HashMap vs LinkedHashMap?
  • Q7. Load factor in HashMap?
  • Ans. 

    Load factor in HashMap determines when the HashMap should be resized to maintain performance.

    • Load factor is a measure of how full the HashMap is allowed to get before its capacity is automatically increased.

    • The default load factor of HashMap is 0.75, which means the HashMap will be resized when it is 75% full.

    • Increasing the load factor reduces the space overhead but increases the time cost of resolving collisions.

    • Examp...

  • Answered by AI
  • Q8. What is a Daemon thread?
  • Q9. Concept of multithreading in Java and how does it work?
  • Ans. 

    Multithreading in Java allows multiple threads to execute concurrently, improving performance and responsiveness.

    • Multithreading allows multiple threads to run concurrently within a single process.

    • Each thread has its own stack and program counter, but share the same heap memory.

    • Java provides built-in support for multithreading through the java.lang.Thread class.

    • Example: Creating a new thread by extending the Thread clas...

  • Answered by AI
  • Q10. What is the Executor framework in Java?
  • Q11. Name some methods in Executor framework?
  • Q12. What is the join method in Java?
  • Q13. Explain one-to-many and many-to-one relationships in Hibernate.
  • Ans. 

    One-to-many and many-to-one relationships in Hibernate are used to define the relationship between entities in a database.

    • One-to-many relationship: One entity can be associated with multiple instances of another entity. For example, one department can have multiple employees.

    • Many-to-one relationship: Multiple instances of one entity can be associated with a single instance of another entity. For example, multiple emplo...

  • Answered by AI
  • Q14. What is an ID in Hibernate and how it is used?
  • Ans. 

    An ID in Hibernate is a unique identifier for an entity in a database. It is used to uniquely identify each record.

    • ID is a field in an entity class annotated with @Id in Hibernate.

    • It can be of different types like int, long, String, etc.

    • ID is used to uniquely identify each record in a database table.

    • It is often generated automatically using strategies like @GeneratedValue.

    • Example: @Id @GeneratedValue(strategy = Generat...

  • Answered by AI
  • Q15. How do you create custom queries in Spring Data JPA?
  • Q16. Name different annotations used in Spring Boot.
  • Q17. How to create a repository interface in Spring Data JPA?
  • Q18. How to define custom queries in the repository interface?
  • Q19. What is the difference between @Controller and @RestController?
  • Q20. What is DispatcherServlet in Spring Boot?
  • Ans. 

    DispatcherServlet is the front controller in Spring Boot that receives incoming requests and dispatches them to the appropriate handler.

    • DispatcherServlet is a servlet that manages the flow of incoming requests in a Spring Boot application.

    • It acts as the front controller, receiving all requests and then dispatching them to the appropriate handler for processing.

    • DispatcherServlet is configured in the web.xml file or thro...

  • Answered by AI
  • Q21. What are microservices?
  • Q22. How does communication happen between microservices?
  • Ans. 

    Communication between microservices can happen through synchronous or asynchronous protocols like HTTP, messaging queues, or gRPC.

    • Microservices can communicate through synchronous protocols like HTTP, where one service sends a request to another service and waits for a response.

    • Alternatively, microservices can communicate asynchronously using messaging queues like RabbitMQ or Kafka, where messages are sent between serv...

  • Answered by AI
  • Q23. Internal working of messaging between microservices.
  • Ans. 

    Messaging between microservices involves communication through message brokers or direct API calls.

    • Microservices communicate through message brokers like RabbitMQ or Kafka.

    • Messages are sent in a format like JSON or XML.

    • Microservices can also communicate through direct API calls using REST or gRPC.

    • Message queues help in decoupling services and ensuring reliable communication.

    • Service discovery mechanisms like Consul or E...

  • Answered by AI
  • Q24. Coding problem - Find the maximum and minimum sum after removing one element from an array. (what is the time complexity of the program?)
  • Ans. 

    Find max and min sum after removing one element from array. Time complexity analysis required.

    • Iterate through array to find sum of all elements

    • For each element, calculate sum after removing it

    • Track max and min sum as you iterate

    • Time complexity: O(n) where n is the number of elements in the array

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure to have deep knowledge about:
Core Java, Java Generics, Spring Boot, Web Services, ORM, JMS, and Microservice Architecture.

Good to know about CI/CD and Vaadin.

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
1w (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 Direction Software LLP?
Ask anonymously on communities.

Interview questions from similar companies

I applied via LinkedIn and was interviewed in Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. JS Prototype usage and functionality.
  • Ans. 

    JS Prototype is a mechanism for inheritance and sharing properties among objects.

    • Prototype is a property of every JavaScript function.

    • It allows objects to inherit properties and methods from other objects.

    • Modifying the prototype of a function affects all instances of that function.

    • Prototype chain is used to look up properties and methods of an object.

    • Prototype can be used to add new methods and properties to existing o...

  • Answered by AI
  • Q2. Node- without any loop need to check how can you find the total number
  • Ans. 

    To find the total number without any loop in Node.js

    • Use the reduce() method to sum up the values in an array

    • Use the length property of an array to get the total number of elements

    • Use the Object.keys() method to get the total number of keys in an object

  • Answered by AI
  • Q3. Node - what is difference between promise and async await and callback.
  • Ans. 

    Promises, async/await, and callbacks are all ways to handle asynchronous operations in Node.js.

    • Callbacks are functions passed as arguments to another function and called when the operation is complete.

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

    • Async/await is a syntax for writing asynchronous code that looks like synchronous code.

    • Callbacks are the oldest an...

  • Answered by AI
  • Q4. Node - why do we use promise.
  • Ans. 

    Promises are used in Node to handle asynchronous operations and avoid callback hell.

    • Promises simplify error handling and make code more readable.

    • Promises allow for chaining multiple asynchronous operations.

    • Promises can be used with async/await to write synchronous-looking code.

    • Example: fetching data from an API using axios library with promises.

    • Example: reading a file with promises in Node's fs module.

  • Answered by AI
  • Q5. Node - use of Sequelize (ORM)
  • Ans. 

    Sequelize is an ORM for Node.js that supports multiple databases and provides easy data modeling and querying.

    • Sequelize is used to interact with databases in Node.js

    • It supports multiple databases like MySQL, PostgreSQL, SQLite, etc.

    • It provides easy data modeling and querying with its object-relational mapping

    • Example: const sequelize = new Sequelize('database', 'username', 'password', { dialect: 'mysql' });

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and if don't know about it please just say no, haven't worked on it.

Skills evaluated in this interview

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Four people need to cross a bridge at night with only one torch t ... read more
asked in Capgemini
Q2. In a dark room, there is a box of 18 white and 5 black gloves. Yo ... read more
Q3. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q4. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
asked in TCS
Q5. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. Introduce yourself
  • Q2. Explain your projects
Round 1 - Aptitude Test 

Quantitative Aptitude

Round 2 - Technical 

(2 Questions)

  • Q1. To write syntax for a problem using any programming language.
  • Ans. 

    This question requires writing syntax for a programming problem in any language, demonstrating coding skills.

    • Choose a programming language (e.g., Python, Java, C++).

    • Define the problem clearly before writing syntax.

    • Use proper syntax for variable declaration and control structures.

    • Example in Python: 'for i in range(10): print(i)'

    • Ensure to include comments for clarity.

  • Answered by AI
  • Q2. Tell me about your projects and Internship experience.
Round 3 - HR 

(1 Question)

  • Q1. Questions were related to Hobbies, extra curricular activities and some questions of analytical ability such as color cube, maths, etc. It was in general.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare your Resume well.
Study about your projects that you have done in your graduation.
Be prepared on questions regarding your skill set. For e.g- object oriented programming concepts, Data structures, Database, etc.
Lastly, Be confident!
And, You are good to Go.
Round 1 - Coding Test 

It's depend on position after you crack the coding round you can eligible for two technical rounds

Round 2 - Technical 

(1 Question)

  • Q1. He asks about queries mainly stored procedures
Round 3 - HR 

(5 Questions)

  • Q1. What are your salary expectations?
  • Ans. 

    I expect a competitive salary based on my skills, experience, and industry standards.

    • Research industry standards: For example, Glassdoor or Payscale can provide insights into average salaries for similar roles.

    • Consider my experience: With 5 years in software development, I would expect a salary in the range of $80,000 to $100,000.

    • Location matters: Salaries can vary significantly based on the cost of living in different...

  • Answered by AI
  • Q2. What is your family background?
  • Ans. 

    I come from a close-knit family that values education and support, fostering my passion for technology and problem-solving.

    • My parents are both educators, which instilled a love for learning in me from a young age.

    • I have a younger sister who is pursuing a career in engineering, inspiring me with her dedication.

    • Family gatherings often involve discussions about technology and innovation, sparking my interest in software d...

  • Answered by AI
  • Q3. Why should we hire you?
  • Ans. 

    I bring a unique blend of technical skills, problem-solving abilities, and a passion for software development that aligns with your team's goals.

    • Proven experience in developing scalable applications, such as a recent project where I improved load times by 30%.

    • Strong proficiency in multiple programming languages, including Python and Java, allowing me to adapt to your tech stack quickly.

    • Excellent teamwork and communicat...

  • Answered by AI
  • Q4. Why are you looking for a change?
  • Q5. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be positive well prepare
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 - Aptitude Test 

This round is based on aptitude

Round 3 - Technical 

(1 Question)

  • Q1. Resume based , java related
Round 4 - HR 

(1 Question)

  • Q1. Tell me about yourself
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 - Aptitude Test 

Only one written test consists of aptitude questions and one coding question. coding question is easy-moderate

Round 3 - Technical 

(1 Question)

  • Q1. There are 2 technical rounds .In first round they have covered Java theory concepts and oops basic questions and asked me to write any sorting code and a SQL query that is print who's salary lies between 1...
Round 4 - HR 

(1 Question)

  • Q1. About yourself, Where you are after 5 years,Are you ready to relocate,about company and some basic hr questions.
Are these interview questions helpful?
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Jun 2024, where I was asked the following questions.

  • Q1. In JS i was asked difference between pass by value and reference with actual example.
  • Q2. LLD for creating instagram like application and how would you handle scaling of this
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Level of aptitude is easy

Round 2 - Coding Test 

In this selected role question is asked suppose I applied in .net then coding must in c#

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

I applied via LinkedIn and was interviewed in Oct 2023. There were 4 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 - Coding Test 

Online Test where there is total 8 question from which 2 is program and 6 is MCQ.

Round 3 - One-on-one 

(1 Question)

  • Q1. Technical Interview. Asked about tell me about yourself, biggest problem faced you have faced in your career. Basic Python, OOPS concepts, Sql query, Django Questions, One online program
Round 4 - One-on-one 

(1 Question)

  • Q1. One to One Round with CTO.

Direction Software LLP Interview FAQs

How many rounds are there in Direction Software LLP Software Engineer interview?
Direction Software LLP interview process usually has 3 rounds. The most common rounds in the Direction Software LLP interview process are Technical.
What are the top questions asked in Direction Software LLP Software Engineer interview?

Some of the top questions asked at the Direction Software LLP Software Engineer interview -

  1. how can you secure a spring boot application, especially in the context of a ba...read more
  2. Can you explain what ConcurrentModificationException is and how to resolve ...read more
  3. What is the use of the CI/CD pipeline in software developme...read more

Tell us how to improve this page.

Overall Interview Experience Rating

5/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more
Direction Software LLP Software Engineer Salary
based on 54 salaries
₹4 L/yr - ₹9.3 L/yr
29% less than the average Software Engineer Salary in India
View more details

Direction Software LLP Software Engineer Reviews and Ratings

based on 7 reviews

1.8/5

Rating in categories

2.1

Skill development

1.5

Work-life balance

1.7

Salary

3.0

Job security

1.1

Company culture

1.8

Promotions

1.1

Work satisfaction

Explore 7 Reviews and Ratings
Software Engineer
54 salaries
unlock blur

₹4 L/yr - ₹9.3 L/yr

Senior Software Engineer
21 salaries
unlock blur

₹6.4 L/yr - ₹12.7 L/yr

Softwaretest Engineer
21 salaries
unlock blur

₹17.6 L/yr - ₹32 L/yr

Associate Software Engineer
18 salaries
unlock blur

₹3.3 L/yr - ₹6 L/yr

Software Developer
13 salaries
unlock blur

₹4.1 L/yr - ₹8.4 L/yr

Explore more salaries
Compare Direction Software LLP with

Thryve Digital

3.8
Compare

Luxoft

3.6
Compare

Iksula

3.4
Compare

Hitech Digital Solutions

3.8
Compare
write
Share an Interview