Upload Button Icon Add office photos
Engaged Employer

i

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

Oasis TechnoSoft Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Oasis TechnoSoft Senior Software Engineer Interview Questions and Answers

Updated 20 Dec 2024

Oasis TechnoSoft Senior Software Engineer Interview Experiences

1 interview found

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

(1 Question)

  • Q1. Your life, about you, college family and friend your likes and dislikes and your previous employers

Interview Preparation Tips

Interview preparation tips for other job seekers - Strong technical knowledge is required.

Interview questions from similar companies

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

(2 Questions)

  • Q1. Java 8, Stream API
  • Q2. Dependency Injection in Spring
  • Ans. 

    Dependency Injection in Spring is a design pattern where objects are passed their dependencies rather than creating them internally.

    • In Spring, dependencies are injected into a class through constructor injection, setter injection, or field injection.

    • This helps in achieving loose coupling between classes and makes the code more testable and maintainable.

    • Example: @Autowired annotation in Spring is used for dependency inj

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. My Experience in IT
  • Ans. 

    I have over 8 years of experience in IT, specializing in software development and project management.

    • Developed web applications using Java, Spring, and AngularJS

    • Led a team of developers in implementing a new CRM system for a large client

    • Managed multiple projects simultaneously, ensuring on-time delivery and client satisfaction

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Java questions and basics of testing
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What are decorators in Python What is the use of __name == __main__ Django related questions
  • Ans. 

    Decorators in Python are functions that modify the behavior of other functions or methods. __name__ == __main__ is used to check if a Python script is being run directly or imported as a module.

    • Decorators are used to add functionality to existing functions without modifying their code.

    • They are defined using the @decorator syntax before the function definition.

    • Example: @staticmethod decorator in Python is used to define...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Joins in SQL, Window functions Coding question Django ORM questions
Round 3 - HR 

(1 Question)

  • Q1. Salary related questions

Skills evaluated in this interview

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

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

Round 1 - Technical 

(1 Question)

  • Q1. Basic java and rest full API, multithreading and stream
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Jan 2021.

Round 1 - Aptitude Test 

10 min aptitude test

Round 2 - Coding Test 

3 coding problem to solve on hackerrank

Round 3 - Coding Test 

Multiple choice test

Round 4 - Technical 

(1 Question)

  • Q1. Technical interview
Round 5 - HR 

(1 Question)

  • Q1. HR discussion and salary negotiations

I applied via Naukri.com and was interviewed in Jul 2022. There was 1 interview round.

Round 1 - Technical 

(7 Questions)

  • Q1. What are indexes in the database? what is the difference between clustered and non-clustered indexes?
  • Ans. 

    Indexes are used to improve database performance. Clustered indexes determine the physical order of data, while non-clustered indexes do not.

    • Indexes are used to speed up data retrieval operations in a database.

    • Clustered indexes determine the physical order of data in a table, while non-clustered indexes do not.

    • A table can have only one clustered index, but multiple non-clustered indexes.

    • Clustered indexes are generally ...

  • Answered by AI
  • Q2. Write a query to delete duplicate rows from a table.
  • Ans. 

    Query to delete duplicate rows from a table

    • Use GROUP BY clause to group the rows by their unique values

    • Use HAVING clause to filter out the groups with count greater than 1

    • Use DELETE statement to delete the duplicate rows

  • Answered by AI
  • Q3. Class A { public string A() { return "hello"; } } what is wrong with above code?
  • Q4. What is a singleton pattern and how to implement it?
  • Ans. 

    Singleton pattern restricts the instantiation of a class to a single instance and provides a global point of access to it.

    • Create a private constructor to restrict instantiation of the class

    • Create a private static instance of the class

    • Create a public static method to access the instance

    • Ensure thread safety if necessary

    • Examples: Database connection, Logger, Configuration settings

  • Answered by AI
  • Q5. How do you handle exceptions in stored procedures?
  • Ans. 

    Handle exceptions in stored procedures by using TRY-CATCH blocks.

    • Use TRY-CATCH blocks to catch and handle exceptions

    • Log the error message and severity level

    • Rollback the transaction if necessary

    • Rethrow the error if it cannot be handled

    • Use RAISERROR to raise custom error messages

  • Answered by AI
  • Q6. Explain SOLID principles.
  • Ans. 

    SOLID principles are a set of five design principles that help in creating maintainable and scalable software.

    • 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: Subtypes should be substitutable for their base types.

    • I - Interface Segregation Principle: C...

  • Answered by AI
  • Q7. Difference between throw and throw exception?
  • Ans. 

    throw is used to throw an exception while throw exception is used to throw a specific exception.

    • throw is used to throw any type of exception while throw exception is used to throw a specific type of exception.

    • throw exception is followed by the type of exception that needs to be thrown.

    • throw can be used to throw any object while throw exception can only be used to throw an exception object.

    • Example: throw new Exception("

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - You need to give quite a few interviews to be prepared.

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Apr 2022. There were 4 interview rounds.

Interview Questionnaire 

8 Questions

  • Q1. How can you handle stress
  • Q2. What are OOPS concepts
  • Ans. 

    OOPS concepts refer to Object-Oriented Programming principles such as inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the complex implementation det

  • Answered by AI
  • Q3. Sql Performance tuning
  • Q4. Boxing and Unboxing in C#
  • Q5. Value type Reference Type
  • Q6. Write programming logic for Await and Sync
  • Ans. 

    Await and Sync are programming concepts used for managing asynchronous operations in code execution.

    • Await is used to pause the execution of a function until a Promise is settled, returning the result.

    • Sync is used to synchronize multiple threads or processes to ensure they are executed in a specific order.

    • Example: await fetch('https://api.example.com/data')

    • Example: sync.Mutex.Lock()

    • Both Await and Sync are important for ...

  • Answered by AI
  • Q7. What is Agile methodology
  • Ans. 

    Agile methodology is a project management approach that emphasizes flexibility, collaboration, and incremental development.

    • Agile focuses on delivering working software in short, iterative cycles called sprints.

    • It values customer collaboration, responding to change, and continuous improvement.

    • Key principles include individuals and interactions over processes and tools, working software over comprehensive documentation, ...

  • Answered by AI
  • Q8. How do you migrate code from one language to another
  • Ans. 

    Code migration involves understanding the existing codebase, planning the migration process, translating code to the new language, testing thoroughly, and ensuring compatibility.

    • Understand the existing codebase thoroughly to identify dependencies, logic, and functionality.

    • Plan the migration process by breaking it down into smaller tasks, setting timelines, and allocating resources.

    • Translate the code to the new language...

  • Answered by AI

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed before Jan 2023. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Basic ios Questions No DS questions
  • Q2. Basic swift quesions
  • Q3. In App Purchase
  • Q4. Hardware Device connectivity

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

Interview Questionnaire 

3 Questions

  • Q1. Tell me about yourself
  • Ans. Tell them briefly about your educational background, which company you are working for, your role in the company.
  • Answered Anonymously
  • Q2. Tell me about your latest project you worked on
  • Ans. Tell them about your recent project, what you've worked on, whether you were an individual contributor, was part of a team larger team and your contribution, or you were the lead in that project.
  • Answered Anonymously
  • Q3. What architectural changes did you suggest
  • Ans. 

    I suggested implementing a microservices architecture to improve scalability and maintainability.

    • Proposed breaking down the monolithic application into smaller, independent services

    • Suggested using containerization to improve deployment and scaling

    • Recommended implementing a service registry and discovery mechanism

    • Suggested using an API gateway to manage traffic and enforce security policies

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, the first 5 minutes are crucial, an interviewer typically makes a decision to move forward with the candidate or not within first 5 minutes.
Have a good grasp on the language, typically all the corporates now prefer english, which must be perfected. Reading news papers are good ways to improve upon any language.

Oasis TechnoSoft Interview FAQs

How many rounds are there in Oasis TechnoSoft Senior Software Engineer interview?
Oasis TechnoSoft interview process usually has 1 rounds. The most common rounds in the Oasis TechnoSoft interview process are HR.

Tell us how to improve this page.

Oasis TechnoSoft Senior Software Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Oasis TechnoSoft Senior Software Engineer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

3.0

Skill development

5.0

Work-life balance

4.0

Salary

3.0

Job security

5.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Technical Programmer
6 salaries
unlock blur

₹8 L/yr - ₹9.5 L/yr

Web Developer
4 salaries
unlock blur

₹7.5 L/yr - ₹9 L/yr

Technical Consultant
4 salaries
unlock blur

₹5 L/yr - ₹6.5 L/yr

Information Technology Support Engineer
4 salaries
unlock blur

₹3 L/yr - ₹4 L/yr

Software Engineer
3 salaries
unlock blur

₹7.4 L/yr - ₹8.2 L/yr

Explore more salaries
Compare Oasis TechnoSoft 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