Upload Button Icon Add office photos
Engaged Employer

i

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

OnProcess Technology Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

OnProcess Technology Manager Interview Questions and Answers

Updated 9 Mar 2022

OnProcess Technology Manager Interview Experiences

1 interview found

Manager Interview Questions & Answers

user image Anonymous

posted on 9 Mar 2022

Round 1 - HR 

(1 Question)

  • Q1. Tell me about yourself.
Round 2 - Technical 

(1 Question)

  • Q1. Good comm skills, talk sensible and describe everything in detail

Interview Preparation Tips

Interview preparation tips for other job seekers - Just prepare on three question

Interview questions from similar companies

Interview Preparation Tips

Round: Interview
Experience: They asked to write 2 codes on recursion. Then some questions on resume. I asked them about the job profile and after knowing that they were hiring candidates for frontend programming, about which they didn’t mention in JAF. I told them that I was not interested in frontend development. And didn’t even answer any question after that. Unfortunately, I was selected.

General Tips: Plan your schedule judiciously keeping your capacity in mind. There is no point of making ideal plans and then not able to do even 50% of it.
Don’t get into unnecessary arguments or debate with people.
Don’t think about what others are doing. Focus on your preparation.
How you carry yourself matters. So, make sure you portray yourself in the way you want the other person to perceive you.
Be selective while applying for companies.
College Name: IIT Kanpur
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Development related question are asked during interview

Interview Preparation Tips

Interview preparation tips for other job seekers - You can apply online in case of any opportunity
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. What is your current job profile?
  • Q2. What are your skills

I applied via Walk-in and was interviewed in Feb 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

About strengths and weeknees

Round 2 - HR 

(8 Questions)

  • Q1. What are your salary expectations?
  • Q2. What is your family background?
  • Q3. Share details of your previous job.
  • Q4. Why should we hire you?
  • Q5. Why are you looking for a change?
  • Q6. Where do you see yourself in 5 years?
  • Q7. What are your strengths and weaknesses?
  • Q8. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - I am interested in this job..i think it's a best organization form me to show my skills and. Knowledge
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - Assignment 

A case study was given to solve and questions were asked

Interview experience
2
Poor
Difficulty level
Easy
Process Duration
-
Result
Not Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. System design on current product
  • Ans. 

    I have experience in system design for current product, focusing on scalability and efficiency.

    • Analyze current system architecture and identify areas for improvement

    • Consider scalability, performance, security, and user experience in design

    • Collaborate with cross-functional teams to gather requirements and ensure alignment

    • Implement best practices and technologies to optimize system design

    • Regularly review and iterate on s

  • Answered by AI
  • Q2. Difference between NoSQL and RDMBS
  • Ans. 

    NoSQL is a non-relational database management system that allows for flexible and scalable data storage, while RDBMS is a traditional relational database management system with structured data storage.

    • NoSQL databases are schema-less, allowing for easy scalability and flexibility in data storage.

    • RDBMS databases use structured query language (SQL) for data manipulation and retrieval.

    • NoSQL databases are better suited for ...

  • Answered by AI

Skills evaluated in this interview

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 - Call from Leader 

(1 Question)

  • Q1. General questions related to Process
Round 3 - HR 

(1 Question)

  • Q1. General questions related to package and notice period
Round 4 - One-on-one 

(1 Question)

  • Q1. Basic discussions related to Process and Skills
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 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. How did you manage a situation when the project you were leading didn't get green signal from leadership.
  • Q2. Core competence questions on FP&A

Interview Preparation Tips

Interview preparation tips for other job seekers - Be truthful, if you lie and got caught then chances of proceeding are low.

I appeared for an interview before Mar 2021.

Round 1 - Face to Face 

(6 Questions)

Round duration - 60 minutes
Round difficulty - Medium

The interviewer was really cool. He realized that I mostly work on java applications so he chose to ask me stuff related to that. He didn't want me to know the answer well but just wanted me to approach to it, maybe think more. He went through my resume back and forth and asked mostly about all my projects and their logic and how could I take them to the next level.
Tips: Be confident. Its okay not to know any answer, just try giving it a shot in the approach.

  • Q1. What is the difference between an abstract class and an interface in Java?
  • Ans. 

    Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • Abstract class can have constructors, member variables, and methods with implementation.

    • Interface can only have abstract methods and constants.

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

    • Example: Abstract class - Animal with abstract method 'eat', Interface - Flyable with m

  • Answered by AI
  • Q2. What is the difference between 'final', 'finally', and 'finalize' in Java?
  • Ans. 

    final is a keyword used to declare constants, finally is a block used in exception handling, and finalize is a method used for cleanup.

    • final is a keyword used to declare constants in Java, meaning the value cannot be changed once assigned. Example: final int x = 10;

    • finally is a block used in exception handling to ensure a piece of code is always executed, whether an exception is thrown or not. Example: try { // code } ...

  • Answered by AI
  • Q3. What is the difference between the private and final access modifiers in Java?
  • Ans. 

    Private restricts access to the class itself, while final prevents inheritance and method overriding.

    • Private access modifier restricts access to the class itself, while final access modifier prevents inheritance and method overriding.

    • Private members are only accessible within the same class, while final classes cannot be extended and final methods cannot be overridden.

    • Example: private int num; - num can only be accesse...

  • Answered by AI
  • Q4. What are the steps for establishing a JDBC connection?
  • Ans. 

    Establishing a JDBC connection involves loading the driver, creating a connection, creating a statement, executing queries, and handling exceptions.

    • Load the JDBC driver using Class.forName() method

    • Create a connection using DriverManager.getConnection() method

    • Create a statement using connection.createStatement() method

    • Execute queries using statement.executeQuery() method

    • Handle exceptions using try-catch blocks

  • Answered by AI
  • Q5. What is JSON?
  • Ans. 

    JSON is a lightweight data interchange format used to store and transmit data between a server and a web application.

    • JSON stands for JavaScript Object Notation.

    • It is easy for humans to read and write, and easy for machines to parse and generate.

    • JSON is language-independent and can be used with any programming language.

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

    • Example: [{"name": "Alice", "age": 25}, {"name": "Bob", "age": 35}

  • Answered by AI
  • Q6. What do you know about garbage collection in Java?
  • Ans. 

    Garbage collection in Java is the process of automatically managing memory by deallocating objects that are no longer needed.

    • Garbage collection helps in preventing memory leaks by reclaiming memory used by objects that are no longer referenced.

    • Java uses a garbage collector to automatically manage memory, unlike languages like C++ where memory management is manual.

    • Garbage collection in Java can be triggered by calling S...

  • Answered by AI
Round 2 - HR 

Round duration - 30 minutes
Round difficulty - Easy

I wouldn't say it went great but it was fine. I did not think I would clear it as for most of the questions the interviewer seemed disappointed and wanted more out of me.

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPACerner Corporation interview preparation:Topics to prepare for the interview - Object Oriented Programming (OOP) Basics, Basics Of Machine Learning, Data Structures and Algorithms, Database Management, Java ProgrammingTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

OnProcess Technology Interview FAQs

How many rounds are there in OnProcess Technology Manager interview?
OnProcess Technology interview process usually has 2 rounds. The most common rounds in the OnProcess Technology interview process are HR and Technical.

Tell us how to improve this page.

Interview Questions from Similar Companies

Chetu Interview Questions
3.3
 • 174 Interviews
AVASOFT Interview Questions
3.6
 • 162 Interviews
Oracle Cerner Interview Questions
3.7
 • 157 Interviews
ServiceNow Interview Questions
4.1
 • 120 Interviews
Thomson Reuters Interview Questions
4.1
 • 113 Interviews
Amadeus Interview Questions
3.9
 • 107 Interviews
EbixCash Limited Interview Questions
4.0
 • 102 Interviews
UKG Interview Questions
3.1
 • 102 Interviews
Mobileum Interview Questions
3.3
 • 37 Interviews
View all
OnProcess Technology Manager Salary
based on 8 salaries
₹8.9 L/yr - ₹16 L/yr
19% less than the average Manager Salary in India
View more details

OnProcess Technology Manager Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

1.0

Skill development

1.0

Work-life balance

3.0

Salary

1.0

Job security

1.0

Company culture

1.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
Customer Service Associate
43 salaries
unlock blur

₹1.8 L/yr - ₹3.8 L/yr

Customer Service Executive
29 salaries
unlock blur

₹1.5 L/yr - ₹3 L/yr

Customer Care Executive
24 salaries
unlock blur

₹1.5 L/yr - ₹3.2 L/yr

Senior Associate
23 salaries
unlock blur

₹1.5 L/yr - ₹3.2 L/yr

Senior Customer Service Executive
21 salaries
unlock blur

₹1.7 L/yr - ₹3 L/yr

Explore more salaries
Compare OnProcess Technology with

Thomson Reuters

4.1
Compare

Oracle Cerner

3.7
Compare

Chetu

3.3
Compare

R Systems International

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