Premium Employer

i

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

Opus Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Opus Technologies Interview Questions and Answers for Experienced

Updated 27 Sep 2024

Opus Technologies Interview Experiences for Experienced

Popular Designations

5 interviews found

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

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is the use of @LoadBalanced annotation
  • Ans. 

    The @LoadBalanced annotation is used in Spring Cloud to indicate that a RestTemplate should be load balanced.

    • Used to automatically distribute client requests across multiple instances of a service

    • Helps in achieving high availability and scalability

    • Works in conjunction with Ribbon load balancer in Spring Cloud

  • Answered by AI
  • Q2. You can use this annotation on top of RestTemplate Bean. By this annotation the instance that will be created is load balanced i.e you don't need to write code to make this RestTemplate bean load balanced.
Round 2 - One-on-one 

(2 Questions)

  • Q1. Describe your project and role
  • Q2. You need to describe your project in detail like current technologies being used etc. and your roles and responsibilities

Interview Preparation Tips

Interview preparation tips for other job seekers - Have good knowledge of Core Java

Skills evaluated in this interview

Technical Lead Interview Questions asked at other Companies

Q1. 1. Explain 5 mins the flow from requirement analysis to production deployment and tools used in the process. 2. What is auto-scaling in a microservices architecture? 3. Difference between micro-service and serverless. 4. If you were going t... read more
View answer (4)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Project related details
  • Q2. Domain related details
Round 2 - One-on-one 

(1 Question)

  • Q1. Project related info

Test Lead Interview Questions asked at other Companies

Q1. If you put in an Agile project, Will you be able to do in sprint Automation
View answer (1)

System Engineer Interview Questions & Answers

user image Kumar Gaurav

posted on 27 Oct 2023

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Coding Test 

It was quiet normal, 2 question + 5-6 mcq.

Round 3 - Technical 

(5 Questions)

  • Q1. Array sorting-based problem.
  • Ans. 

    Sorting an array of strings based on a specific criteria.

    • Use a sorting algorithm like quicksort or mergesort to sort the array of strings.

    • Define a custom comparator function to specify the sorting criteria, such as length or alphabetical order.

    • Example: Sorting an array of strings based on length - ['apple', 'banana', 'pear'] becomes ['pear', 'apple', 'banana'].

  • Answered by AI
  • Q2. String pattern matching based problem
  • Q3. OOP concepts based question
  • Q4. Multithreading based problem
  • Q5. Deep dive in OOP concepts
  • Ans. 

    OOP concepts include encapsulation, inheritance, polymorphism, and abstraction.

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

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

    • Polymorphism: Ability for objects to be treated as instances of their parent class or their own class.

    • Abstraction: Hiding the implementation details and showing only th

  • Answered by AI

Skills evaluated in this interview

System Engineer Interview Questions asked at other Companies

Q1. Election Winner Determination In an ongoing election between two candidates A and B, there is a queue of voters that includes supporters of A, supporters of B, and neutral voters. Neutral voters have the power to swing the election results ... read more
View answer (9)

Test Lead Interview Questions & Answers

user image Anonymous

posted on 10 Jun 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. On project related details
  • Q2. On domain related details

Test Lead Interview Questions asked at other Companies

Q1. If you put in an Agile project, Will you be able to do in sprint Automation
View answer (1)

Opus Technologies interview questions for popular designations

 Test Lead

 (2)

 Senior Associate

 (1)

 Technical Lead

 (1)

 Team Manager

 (1)

 System Engineer

 (1)

 Senior Technical Engineer

 (1)

 Associate

 (1)

 Technician Engineer

 (1)

Technician Engineer Interview Questions & Answers

user image Chetan Dhumne

posted on 12 Sep 2023

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

I applied via Campus Placement and was interviewed before Sep 2022. There were 3 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 - Technical 

(1 Question)

  • Q1. Basic questions regarding your domain
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion and HR questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Best place to work with knowledge full environment

Technician Engineer Interview Questions asked at other Companies

Q1. What is the difference between air cooled & water cooled chillers?
View answer (1)

Interview questions from similar companies

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Easy

Nice environment

  • Q1. 

    Zigzag Traversal of Binary Tree

    Given a binary tree with integer values in its nodes, your task is to print the zigzag traversal of the tree.

    Note:

    In zigzag order, level 1 is printed from left to right...
  • Ans. 

    Implement a function to print the zigzag traversal of a binary tree.

    • Traverse the tree level by level, alternating the direction of traversal for each level.

    • Use a queue to keep track of nodes at each level.

    • Print the nodes in zigzag order as per the given pattern.

  • Answered by AI
Round 2 - Face to Face 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

Nice Environment

  • Q1. 

    Prime Numbers Identification

    Given a positive integer N, your task is to identify all prime numbers less than or equal to N.

    Explanation:

    A prime number is a natural number greater than 1 that has no po...

  • Ans. 

    Identify all prime numbers less than or equal to a given positive integer N.

    • Iterate from 2 to N and check if each number is prime

    • Use the Sieve of Eratosthenes algorithm for better efficiency

    • Optimize by only checking up to the square root of N for divisors

  • Answered by AI
  • Q2. What was the use of DBMS in your project, and how did you handle the problems that arose?
  • Ans. 

    DBMS was used to store and manage data in the project, handled problems by optimizing queries and database design.

    • Used DBMS to store and manage project data efficiently

    • Optimized queries for better performance

    • Designed database schema to handle data effectively

    • Resolved concurrency issues by implementing proper locking mechanisms

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAPayU interview preparation:Topics to prepare for the interview - Array ,DP ,Graph ,Recursion, Tree ,Queue,BSTTime required to prepare for the interview - 1.5 monthsInterview preparation tips for other job seekers

Tip 1 : Do atleast 1 good projects
Tip 2 : Practice Atleast 300 Questions
Tip 3 : Should be able to explain your project

Application resume tips for other job seekers

Tip 1 : Always be true with the resume
Tip 2 : Do not put false things on resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Company Website and was interviewed before Jun 2021. There were 2 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 - One-on-one 

(1 Question)

  • Q1. Machine learning and Java programming questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Have a good knowledege about the work you are presenting in front of them.

I applied via Naukri.com and was interviewed before Jun 2021. There were 2 interview rounds.

Round 1 - Coding Test 

Hacker rank long coding questions with questions for python,c++,javascript , data bast related questions

Round 2 - Technical 

(1 Question)

  • Q1. Javascript related some coding questions and some data base related

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well.good luck for your journey, prepare coding

I appeared for an interview in Jun 2017.

Interview Questionnaire 

11 Questions

  • Q1. How does ajax call work
  • Ans. 

    Ajax calls allow for asynchronous communication between client and server without reloading the page.

    • Ajax stands for Asynchronous JavaScript and XML

    • Uses XMLHttpRequest object to send and receive data

    • Allows for partial page updates without reloading the entire page

    • Can handle data in various formats such as JSON, XML, HTML, and plain text

    • Example: $.ajax({url: 'example.com', success: function(data){console.log(data)}});

  • Answered by AI
  • Q2. Difference between REST and SOAP
  • Ans. 

    REST is lightweight and uses HTTP while SOAP is XML-based and has more features.

    • REST uses HTTP methods like GET, POST, PUT, DELETE while SOAP uses XML messaging.

    • REST is stateless while SOAP can maintain state.

    • REST is faster and easier to use while SOAP is more secure and reliable.

    • REST is used for web services while SOAP is used for enterprise-level services.

    • Example of REST: Twitter API. Example of SOAP: Amazon Web Serv

  • Answered by AI
  • Q3. What is GET and POST
  • Ans. 

    GET and POST are HTTP methods used for sending data to a server.

    • GET is used to retrieve data from a server

    • POST is used to submit data to a server

    • GET requests can be cached and bookmarked

    • POST requests are not cached and cannot be bookmarked

    • GET requests have length restrictions

    • POST requests have no length restrictions

    • GET requests are less secure than POST requests

  • Answered by AI
  • Q4. What is observer pattern
  • Ans. 

    Observer pattern is a design pattern in which an object maintains a list of its dependents and notifies them automatically of any state changes.

    • Also known as publish-subscribe pattern

    • Used in event-driven systems

    • Allows loose coupling between objects

    • Example: A weather station broadcasts weather updates to multiple displays

    • Example: A stock market ticker notifies multiple investors of stock price changes

  • Answered by AI
  • Q5. What is singleton
  • Ans. 

    Singleton is a design pattern that restricts the instantiation of a class to a single object.

    • Singleton ensures that only one instance of a class exists in the entire application.

    • It provides a global point of access to the instance.

    • Commonly used in scenarios where a single instance needs to coordinate actions across the system.

    • Example: Database connection manager, logger, configuration manager.

  • Answered by AI
  • Q6. What is immutable in java
  • Ans. 

    Immutable in Java refers to objects whose state cannot be changed after creation.

    • String, Integer, and other wrapper classes are immutable in Java.

    • Immutable objects are thread-safe and can be shared without synchronization.

    • To create an immutable class, make all fields final and private, and don't provide setters.

    • Examples of immutable classes in Java include LocalDate, LocalTime, and LocalDateTime.

  • Answered by AI
  • Q7. How do you create immutable in java
  • Ans. 

    Creating immutable in Java

    • Use final keyword to make variables immutable

    • Use private constructor to prevent object modification

    • Use defensive copying to prevent modification of mutable objects

    • Use enum to create immutable objects

    • Use String class to create immutable strings

  • Answered by AI
  • Q8. Where have you used immutable in java
  • Q9. What is dependency injection
  • Ans. 

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

    • It helps to decouple the code and makes it more testable and maintainable.

    • It allows for easier swapping of dependencies without changing the code.

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

    • Example: Instead of creating a database co...

  • Answered by AI
  • Q10. What is CORS
  • Ans. 

    CORS stands for Cross-Origin Resource Sharing. It is a security feature implemented in web browsers to restrict access to resources from different origins.

    • CORS allows web servers to specify which origins are allowed to access its resources

    • It is implemented using HTTP headers

    • CORS prevents malicious websites from accessing sensitive data from other websites

    • Examples of resources that may be restricted by CORS include cook

  • Answered by AI
  • Q11. How do you overcome CORS
  • Ans. 

    CORS can be overcome by configuring the server to allow cross-origin requests.

    • Configure the server to include the Access-Control-Allow-Origin header

    • Use JSONP (JSON with Padding) to bypass CORS restrictions

    • Use a proxy server to make the request on behalf of the client

    • Use a browser extension to disable CORS restrictions during development

    • Use a server-side proxy to forward requests to the target server

  • Answered by AI

Interview Preparation Tips

Skills: Java Programming

Skills evaluated in this interview

Interview Preparation Tips

Round: Technical Interview
Experience: Finally, I got the offer from PayU. I was very Happy. Thanks AmbitionBox for helping me in my preparation

Skills: Algorithm, data structures
College Name: Na

Opus Technologies Interview FAQs

How many rounds are there in Opus Technologies interview for experienced candidates?
Opus Technologies interview process for experienced candidates usually has 2-3 rounds. The most common rounds in the Opus Technologies interview process for experienced candidates are Technical, One-on-one Round and Resume Shortlist.
How to prepare for Opus Technologies interview for experienced candidates?
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 Opus Technologies. The most common topics and skills that interviewers at Opus Technologies expect are Java, Microservices, Spring Boot, Docker and Spring.
What are the top questions asked in Opus Technologies interview for experienced candidates?

Some of the top questions asked at the Opus Technologies interview for experienced candidates -

  1. What is the use of @LoadBalanced annotat...read more
  2. array sorting-based probl...read more
  3. Deep dive in OOP conce...read more

Tell us how to improve this page.

Opus Technologies Interview Process for Experienced

based on 5 interviews

Interview experience

3.4
  
Average
View more
Join Opus Technologies Smart Payments, Intelligent Solution: Shaping the Future

Interview Questions from Similar Companies

HighRadius Interview Questions
2.8
 • 188 Interviews
Razorpay Interview Questions
3.6
 • 154 Interviews
Visa Interview Questions
3.5
 • 141 Interviews
Angel One Interview Questions
4.0
 • 139 Interviews
Revolut Interview Questions
2.5
 • 100 Interviews
Rupeek Interview Questions
3.7
 • 62 Interviews
PayU Payments Interview Questions
3.5
 • 54 Interviews
Freecharge Interview Questions
3.8
 • 53 Interviews
Mobikwik Interview Questions
3.6
 • 48 Interviews
View all

Opus Technologies Reviews and Ratings

based on 115 reviews

3.8/5

Rating in categories

3.6

Skill development

3.7

Work-life balance

3.6

Salary

3.4

Job security

3.8

Company culture

3.1

Promotions

3.4

Work satisfaction

Explore 115 Reviews and Ratings
Business Analyst (Banking Domain Expert)

Pune

12-15 Yrs

Not Disclosed

HR Operations (Immigration Specialist)

Pune

6-11 Yrs

Not Disclosed

Lead - DevOps Engineer(Harness)

Pune

4-9 Yrs

Not Disclosed

Explore more jobs
Technical Lead
99 salaries
unlock blur

₹10.8 L/yr - ₹34 L/yr

Senior Technology Engineer
40 salaries
unlock blur

₹11 L/yr - ₹30.8 L/yr

Senior Technical Lead
38 salaries
unlock blur

₹19.5 L/yr - ₹43 L/yr

Senior Software Engineer
35 salaries
unlock blur

₹8.4 L/yr - ₹24.6 L/yr

Senior Technical Engineer
32 salaries
unlock blur

₹7.3 L/yr - ₹24.5 L/yr

Explore more salaries
Compare Opus Technologies with

Angel One

4.0
Compare

HighRadius

2.8
Compare

AGS Transact Technologies

3.0
Compare

Rupeek

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