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

Compare button icon Compare button icon Compare

Filter interviews by

Onward Technologies Inc Applications Engineer Interview Questions and Answers

Updated 28 Jun 2024

Onward Technologies Inc Applications Engineer Interview Experiences

2 interviews found

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Technical questions for design
  • Q2. Hr question personal interview

Interview Preparation Tips

Interview preparation tips for other job seekers - No
Round 1 - Technical 

(1 Question)

  • Q1. Overall experience, special achievements
Round 2 - Technical 

(1 Question)

  • Q1. Software knowledge, communication skills

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on communication skills and latest software knowledge

Applications Engineer Interview Questions Asked at Other Companies

Q1. Missing Number Problem Statement You are provided with an array n ... read more
Q2. Minimum Special Sum Problem You are given an array ARR of length ... read more
Q3. Number Pattern Problem Statement Given an integer 'N', print a sp ... read more
Q4. Spiral Matrix Problem Statement You are given a N x M matrix of i ... read more
Q5. Pattern Printing Task You are tasked with printing a specific pat ... read more

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Mar 2021. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Select from employees tables all those who don't work in any department.
  • Q2. What is a cursor and write a query
  • Ans. 

    A cursor is a database object used to retrieve data from a result set one row at a time.

    • A cursor is used to iterate through a result set.

    • It can be used to update or delete rows in a table.

    • Example query: DECLARE cursor_name CURSOR FOR SELECT column1, column2 FROM table_name;

    • Example usage: OPEN cursor_name; FETCH NEXT FROM cursor_name INTO @variable1, @variable2;

    • Example usage: CLOSE cursor_name; DEALLOCATE cursor_name;

  • Answered by AI
  • Q3. How early you can join

Interview Preparation Tips

Interview preparation tips for other job seekers - Study basic questions thoroughly

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Sep 2023. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Basic interview question
Round 2 - One-on-one 

(1 Question)

  • Q1. Basic interview questions
Round 3 - One-on-one 

(1 Question)

  • Q1. Basic info of application development and upload process

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't give interview if you are seaching seriously job for iOS development if you have no option then try. completely west of time your 10 to 15 day's will be go waist best do preparation for another company interview because I face one very bad experience they take interview I clear all round they call me in office for HR round salary discuss. After 4 day's I take they said project developer requirement full-fill, kindly try that time I try for another interview but they didn't given feedback on given interview after next day another recruiter call and said you need to give 2 more rounds. They are only playing with your resume I thing they don't need developer.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
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 

Oops concepts were judged along with problem solving

Round 3 - Technical 

(2 Questions)

  • Q1. Explain your project
  • Q2. Design book my show on a high level

Interview Preparation Tips

Interview preparation tips for other job seekers - Read about oops and clean code practises thats all i have

I applied via Recruitment Consulltant and was interviewed in Feb 2022. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Had Technical Interview
Round 2 - One-on-one 

(1 Question)

  • Q1. Discussion with manager
Round 3 - HR 

(1 Question)

  • Q1. Had HR discussion one to one

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well and Have Confidence.
Set and receive the expectations clearly.

I applied via Naukri.com and was interviewed before Mar 2021. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Select from employees tables all those who don't work in any department.
  • Q2. What is a cursor and write a query
  • Ans. 

    A cursor is a database object used to retrieve data from a result set one row at a time.

    • A cursor is used to iterate through a result set.

    • It can be used to update or delete rows in a table.

    • Example query: DECLARE cursor_name CURSOR FOR SELECT column1, column2 FROM table_name;

    • Example usage: OPEN cursor_name; FETCH NEXT FROM cursor_name INTO @variable1, @variable2;

    • Example usage: CLOSE cursor_name; DEALLOCATE cursor_name;

  • Answered by AI
  • Q3. How early you can join

Interview Preparation Tips

Interview preparation tips for other job seekers - Study basic questions thoroughly

Skills evaluated in this interview

Round 1 - Aptitude Test 

(1 Question)

  • Q1. The duration of the test is around 2 hours. It has questions from DSA on topics like Graphs, Arrays, etc. and MCQs from other topics of OOPS and DBMS. Swapping adjacent, counting votes and Pair Sum.
Round 2 - Technical 

(1 Question)

  • Q1. Problem statement: Aapali Taxi is a taxi cab operator. They have 3 types of cars- Mini, Sedan and SUV, each with different tariffs. When customers approach them for booking rides, they show an “Estimated ...
Round 3 - Technical 

(5 Questions)

  • Q1. 1. Permutations of the string.
  • Ans. 

    Permutations of a string can be generated using recursion and swapping characters.

    • Use recursion to generate all possible permutations

    • Swap characters to create new permutations

    • Store permutations in an array of strings

    • Handle duplicate characters to avoid repetition

  • Answered by AI
  • Q2. 2. How will you design a database to manage the songs playlist on Spotify?
  • Ans. 

    A database for managing songs on Spotify playlists.

    • Create a table for playlists with columns for name, description, and user ID

    • Create a table for songs with columns for title, artist, album, and duration

    • Create a table for playlist-songs with columns for playlist ID and song ID

    • Use foreign keys to link tables together

    • Allow for CRUD operations on playlists and songs

  • Answered by AI
  • Q3. 3. Middle element of linked list in a single traversal
  • Ans. 

    To find the middle element of a linked list in a single traversal.

    • Use two pointers, one moving at twice the speed of the other.

    • When the faster pointer reaches the end, the slower pointer will be at the middle.

    • If the linked list has even number of elements, the middle will be the second of the two middle elements.

  • Answered by AI
  • Q4. 4. Design a list to show songs in the year in which they were published.
  • Ans. 

    Create an array of song titles sorted by year of publication.

    • Create an array of song objects with properties for title and year of publication.

    • Sort the array by year of publication.

    • Extract the titles of the songs into a separate array.

    • Return the array of song titles.

  • Answered by AI
  • Q5. 5. Another question related to library management class where you have to make diagrams too.
Round 4 - HR 

(1 Question)

  • Q1. This Round is comparatively simple and easier than previous rounds. They ask you to introduce yourself followed by questions regarding your background goals, strengths, etc. And discussing some social prob...

Interview Preparation Tips

Topics to prepare for ThoughtWorks Application Developer interview:
  • React and NodeJ
  • DSA and Projects
Interview preparation tips for other job seekers - Revise Puzzles, OOPS and DSA and Database related questions from leetcode. Basic Knowledge of OOPS, Database Management, and DSA is very essential. Make sure you know the kind of questions asked in the Leadership Round and prepare answers for them before the interview.

Skills evaluated in this interview

I applied via campus placement at Vishwakarma Institute of Technology, Pune and was interviewed in May 2022. There were 2 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 

(3 Questions)

  • Q1. OOP based questions - Inheritance, Polymorphism etc
  • Q2. Project based in depth question - which technology, why
  • Q3. Data structures concept, programming concepts (i was asked loop vs recurssion)

Interview Preparation Tips

Interview preparation tips for other job seekers - Be thorough with your resume. Know each and everything you mentioned. Prepare with basics.

I applied via LinkedIn and was interviewed in Dec 2021. There were 4 interview rounds.

Round 1 - HR 

(4 Questions)

  • Q1. What are your salary expectations?
  • Q2. Why are you looking for a change?
  • Q3. Tell me about yourself.
  • Q4. Why did you choose Thoughtworks?
Round 2 - One-on-one 

(3 Questions)

  • Q1. Code Pairing Round on a github repo
  • Q2. Add a new feature using SOLID principles and explain your thought process
  • Ans. 

    Adding a new feature using SOLID principles

    • Identify the new feature and its requirements

    • Analyze the existing codebase and identify areas that need modification

    • Apply SOLID principles to design the new feature

    • Implement the feature using clean code practices

    • Test the feature thoroughly to ensure it meets the requirements

  • Answered by AI
  • Q3. Explain the HTTP status code for your tests
  • Ans. 

    HTTP status codes indicate the status of a web request.

    • 1xx - Informational

    • 2xx - Success

    • 3xx - Redirection

    • 4xx - Client Error

    • 5xx - Server Error

    • Examples: 200 OK, 404 Not Found, 500 Internal Server Error

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Explain your previous project
  • Q2. What could you have done differently
Round 4 - HR 

(4 Questions)

  • Q1. Why are you looking for a change?
  • Q2. What are your strengths and weaknesses?
  • Q3. Tell me about yourself.
  • Q4. Social change questions

Interview Preparation Tips

Topics to prepare for ThoughtWorks Application Developer interview:
  • Java
  • solid
  • TDD
  • Spring Boot
Interview preparation tips for other job seekers - Learn SOLID and TDD. Add them to your resume. Try to apply them in your current job to get better hands on experience. Go through the github project they provide throughly and prepare notes as they will come in handy during the interview. Focus on the thought process and plan what you will be doing before touching the code.

Skills evaluated in this interview

Onward Technologies Inc Interview FAQs

How many rounds are there in Onward Technologies Inc Applications Engineer interview?
Onward Technologies Inc interview process usually has 1-2 rounds. The most common rounds in the Onward Technologies Inc interview process are Technical.
How to prepare for Onward Technologies Inc Applications 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 Application Engineering, Automotive, B.Tech, C++ and Linux.
What are the top questions asked in Onward Technologies Inc Applications Engineer interview?

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

  1. Software knowledge, communication ski...read more
  2. Technical questions for des...read more

Tell us how to improve this page.

Onward Technologies Inc Applications Engineer Interview Process

based on 2 interviews

Interview experience

3
  
Average
View more
Join Onward Technologies Inc Your Trusted Outsourcing Partner for Digital and ER&D Services

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 806 Interviews
Cyient Interview Questions
3.7
 • 282 Interviews
View all
Onward Technologies Inc Applications Engineer Salary
based on 39 salaries
₹2.8 L/yr - ₹5 L/yr
51% less than the average Applications Engineer Salary in India
View more details

Onward Technologies Inc Applications Engineer Reviews and Ratings

based on 22 reviews

1.9/5

Rating in categories

1.6

Skill development

1.9

Work-life balance

1.4

Salary

1.7

Job security

1.7

Company culture

1.4

Promotions

1.5

Work satisfaction

Explore 22 Reviews and Ratings
Design Engineer
662 salaries
unlock blur

₹2.2 L/yr - ₹9.3 L/yr

Senior Design Engineer
326 salaries
unlock blur

₹4.1 L/yr - ₹12.5 L/yr

Software Engineer
216 salaries
unlock blur

₹2 L/yr - ₹12 L/yr

Project Lead
172 salaries
unlock blur

₹5.5 L/yr - ₹16.3 L/yr

Senior Software Engineer
154 salaries
unlock blur

₹5.7 L/yr - ₹20.9 L/yr

Explore more salaries
Compare Onward Technologies Inc 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