Premium Employer

i

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

Onward Technologies Inc Verified Tick Work with us arrow

Compare button icon Compare button icon Compare

Filter interviews by

Onward Technologies Inc Engineer Interview Questions and Answers

Updated 20 Jul 2023

Onward Technologies Inc Engineer Interview Experiences

1 interview found

Engineer Interview Questions & Answers

user image Anonymous

posted on 20 Jul 2023

Interview experience
4
Good
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 - Technical 

(2 Questions)

  • Q1. Stress strain curve. Materials
  • Q2. Croeo tool solid modeling. Detaling
Round 3 - Assignment 

Tool test on solid modelling sheet meatl detaling. Bend

Interview Preparation Tips

Interview preparation tips for other job seekers - Very good company

Top trending discussions

View All
Interview Tips & Stories
4d (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 Onward Technologies Inc?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Jun 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Data structures

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was good.

Engineer Interview Questions Asked at Other Companies

asked in Eaton
Q1. ❖ If a team member is unable to carry out his work, he is doing i ... read more
Q2. Divide a trapezium into 4 equal parts of the same shape, where on ... read more
Q3. Draw a state diagram to find the pattern 1011. Is overlap allowed ... read more
Q4. What is neutonian fluid ? , Stages of fracture, working of engine ... read more
Q5. What is inheritance? Demonstrate it with code in any language.

I applied via Naukri.com and was interviewed in Nov 2020. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Everything on java spring sql
  • Q2. Don’t waste your time as i did

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not waste your precious time because they will not give you offer more than your current ctc.

Interview Questionnaire 

2 Questions

  • Q1. Java, jdk8, and sql
  • Q2. Core java questions mostl, threading, collection, oops concept. Design patterns and JDK 8 features

I applied via Referral and was interviewed before Jun 2021. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. General Java, springboot and oops
Round 2 - Technical 

(1 Question)

  • Q1. Managerial round with Technical Lld and design related questions
Round 3 - One-on-one 

(1 Question)

  • Q1. Client round technical LLD AND HLD questions
Round 4 - HR 

(1 Question)

  • Q1. HR discussion about salary and client details

Interview Preparation Tips

Topics to prepare for Altimetrik Senior Engineer interview:
  • Java 8
  • Spring Boot
  • Hibernate
  • React.Js
  • Oracle
  • MySQL
  • Kafka
  • JPA
  • JDBC
  • Rx java
Interview preparation tips for other job seekers - Keep your answer clean and simple, If the interviewer asks you to brief the answers then do it otherwise don't
Round 1 - Coding Test 

Live coding on my technology

Round 2 - One-on-one 

(1 Question)

  • Q1. Oops, solid principles, mvc vs mvvm vs mvp
Round 3 - HR 

(1 Question)

  • Q1. About ur self and recent achievements

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and present what u know..
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. All Concurrent Utility Classes and their uses.
  • Ans. 

    Concurrent Utility Classes provide support for concurrent programming in Java.

    • ConcurrentHashMap: Thread-safe implementation of Map interface.

    • CopyOnWriteArrayList: Thread-safe implementation of List interface.

    • CountDownLatch: Synchronization aid that allows one or more threads to wait until a set of operations being performed in other threads completes.

    • Semaphore: Controls the number of threads that can access a shared re...

  • Answered by AI
  • Q2. Basic SQL queries, mostly from Joins, Grouping
  • Q3. Core Java, Java 8
Are these interview questions helpful?
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 before Feb 2023. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Difference between deep and shallow copy
  • Ans. 

    Deep copy creates a new object and recursively copies all nested objects, while shallow copy creates a new object and copies the references to nested objects.

    • Deep copy duplicates all levels of the object hierarchy, ensuring that changes in the copied object do not affect the original object.

    • Shallow copy only duplicates the top-level object, so changes in the copied object may affect the original object.

    • Deep copy is mor...

  • Answered by AI
  • Q2. Ways to set values in form groups
  • Ans. 

    Ways to set values in form groups

    • Use setValue() method to set values in form groups

    • Use patchValue() method to set values in form groups

    • Use reset() method to set values in form groups

  • Answered by AI
  • Q3. How to add dynamic component in view
  • Ans. 

    To add a dynamic component in a view, use a framework or library that supports dynamic rendering and component creation.

    • Use a framework like React or Angular that allows for dynamic component creation

    • Create a component factory or use a component resolver to dynamically create and render components

    • Pass data or props to the dynamic component to customize its behavior

    • Update the view or component tree to include the dynami...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Spend time on basics

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Internal working of hashmap
  • Ans. 

    HashMap is a data structure that stores key-value pairs and uses hashing to quickly retrieve values based on keys.

    • HashMap internally 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.

    • HashMap uses the hashCode() method of ke...

  • Answered by AI
  • Q2. What are the feature of jdk 8
  • Ans. 

    JDK 8 features include lambda expressions, functional interfaces, streams, and default methods.

    • Lambda expressions allow you to write code in a more concise and readable way.

    • Functional interfaces enable the use of lambda expressions.

    • Streams provide a way to work with sequences of elements efficiently.

    • Default methods allow interfaces to have concrete methods.

    • Date and Time API improvements.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on new feature of java

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
6-8 weeks
Result
Selected Selected

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

  • Q1. Java coding like count of alphabet after removing spaces.
  • Q2. Sql query like show highest digit in all departments
  • Ans. 

    Retrieve the highest digit from employee IDs across all departments using SQL.

    • Use the MAX() function to find the highest value in a column.

    • Assuming a table structure: Employees(id INT, department VARCHAR).

    • Example query: SELECT MAX(id) FROM Employees GROUP BY department;

    • This will return the highest ID for each department.

  • Answered by AI

Onward Technologies Inc Interview FAQs

How many rounds are there in Onward Technologies Inc Engineer interview?
Onward Technologies Inc interview process usually has 3 rounds. The most common rounds in the Onward Technologies Inc interview process are Resume Shortlist, Technical and Assignment.
How to prepare for Onward Technologies Inc Engineer 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 Onward Technologies Inc. The most common topics and skills that interviewers at Onward Technologies Inc expect are Sheet Metal, C++, Costing, Linux and Automotive.
What are the top questions asked in Onward Technologies Inc Engineer interview?

Some of the top questions asked at the Onward Technologies Inc Engineer interview -

  1. Croeo tool solid modeling. Detal...read more
  2. Stress strain curve. Materi...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 1 interview experience

Join Onward Technologies Inc Your Trusted Outsourcing Partner for Digital and ER&D Services
Onward Technologies Inc Engineer Salary
based on 18 salaries
₹4 L/yr - ₹7.5 L/yr
9% less than the average Engineer Salary in India
View more details

Onward Technologies Inc Engineer Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

2.0

Skill development

3.0

Work-life balance

4.0

Salary

3.0

Job security

3.0

Company culture

3.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
Design Engineer
677 salaries
unlock blur

₹3.1 L/yr - ₹7.5 L/yr

Senior Design Engineer
370 salaries
unlock blur

₹5.5 L/yr - ₹11 L/yr

Software Engineer
247 salaries
unlock blur

₹3.4 L/yr - ₹9.4 L/yr

Senior Software Engineer
177 salaries
unlock blur

₹9.5 L/yr - ₹16 L/yr

Project Lead
155 salaries
unlock blur

₹9 L/yr - ₹16.4 L/yr

Explore more salaries
Compare Onward Technologies Inc with

Xoriant

4.1
Compare

Photon Interactive

4.1
Compare

CitiusTech

3.3
Compare

Iris Software

4.0
Compare
write
Share an Interview