Upload Button Icon Add office photos
Premium Employer

i

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

Prodapt Verified Tick

Compare button icon Compare button icon Compare
3.6

based on 933 Reviews

Filter interviews by

Prodapt Software Trainee Interview Questions and Answers

Updated 12 Jan 2022

Prodapt Software Trainee Interview Experiences

1 interview found

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

Interview Questionnaire 

2 Questions

  • Q1.  Basic c question
  • Q2. Swapping of 2 numbers coding
  • Ans. 

    Swapping of 2 numbers can be done using a temporary variable or without using a temporary variable.

    • Declare two variables a and b with values

    • Using a temporary variable:

    • - Declare a temporary variable temp

    • - Assign the value of a to temp

    • - Assign the value of b to a

    • - Assign the value of temp to b

    • Without using a temporary variable:

    • - Assign the sum of a and b to a

    • - Assign the difference of a and b to b

    • - Assign the difference

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The process took around 2 weeks. The questions were interesting but I wasn't prepared so I didn't perform well

Interview questions from similar companies

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

I applied via Campus Placement and was interviewed before Oct 2022. There were 4 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 - Aptitude Test 

30 mins test with 15 questions for 5 mins for detecting pattern complete as much as possible 5 mins it is counted most for next round

Round 3 - Technical 

(1 Question)

  • Q1. Technical interview
Round 4 - One-on-one 

(1 Question)

  • Q1. One on one hr interview
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before May 2022.

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 - Aptitude Test 

Simple aptitude test was arranged that was online.

Round 3 - Coding Test 

2 coding questions in any language.

Round 4 - Technical 

(1 Question)

  • Q1. About java basic core java concepts like opps, multi threading, collections, exception handeling.
Round 5 - HR 

(1 Question)

  • Q1. Simple introduction about me was asked and why I want to join this company.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Js basic questions
  • Q2. Angular questio s
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Group Discussion 

This round if the count is more they will have it or less means they will have one to one technical round

Round 2 - One-on-one 

(1 Question)

  • Q1. It will be like technical round
Round 3 - HR 

(1 Question)

  • Q1. For document verifications

Interview Preparation Tips

Topics to prepare for Lavender Technology Softwaretest Engineer interview:
  • Java
  • C
  • C++
  • MySQL
  • SQL
  • Data Structures
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Implement LinkedList and insert element at last
  • Ans. 

    Implement LinkedList and insert element at last

    • Create a Node class with data and next pointer

    • Create a LinkedList class with head and tail pointers

    • Implement a method in LinkedList class to insert element at the end

  • Answered by AI

Skills evaluated in this interview

Software Engineer Interview Questions & Answers

EVRY India user image sandeep Kalasagonda

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 

Arrays questions medium and easy

Round 3 - HR 

(1 Question)

  • Q1. Thinking abilities
Round 4 - One-on-one 

(1 Question)

  • Q1. Basic conversation
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Aptitude Test 

Moderate level Aptitude test...........

Round 3 - Technical 

(1 Question)

  • Q1. Technical round was on coding part. I was asked more about OOPS concepts. I was also asked to write a program in C
Round 4 - Behavioral 

(1 Question)

  • Q1. ...... .... ...... .... ..... ... ... .... ..... ... He hv he yr TV be ez HQ is Bts oct is ev

Interview Preparation Tips

Interview preparation tips for other job seekers - ...... Ha
Next is ICC ga gh ka he via is cm
Msg ka
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Sep 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Pillar of java with example
  • Ans. 

    Four pillars of Java are Abstraction, Encapsulation, Inheritance, and Polymorphism.

    • Abstraction: Hiding implementation details and showing only necessary information.

    • Encapsulation: Wrapping data and code into a single unit.

    • Inheritance: Acquiring properties and behavior of a parent class by a child class.

    • Polymorphism: Ability of an object to take many forms.

    • Example: A car is an abstraction of a vehicle, encapsulating its...

  • Answered by AI
  • Q2. Collection based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Just do string related coding program and concepts of collection

Skills evaluated in this interview

I was interviewed in Mar 2022.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

Mcq + Data structures questions

  • Q1. 

    Maximum Sum Subarray Problem Statement

    Given an array of integers, find the maximum sum of any contiguous subarray within the array.

    Example:

    Input:
    array = [34, -50, 42, 14, -5, 86]
    Output:
    137
    Exp...
  • Ans. Brute Force Approach
    1. Create a nested loop. The outer loop will go from i = 0 to i = n - k. This will cover the starting indices of all k-subarrays
    2. The inner loop will go from j = i to j = i + k - 1. This will cover all the elements of the k-subarray starting from index i
    3. Keep track of the maximum element in the inner loop and print it.
    Space Complexity: O(1)Explanation:

    O(1) because the extra space being used (looping vari...

  • Answered Anonymously
Round 2 - Video Call 

(1 Question)

Round duration - 70 minutes
Round difficulty - Medium

Standard System Design round

  • Q1. Design a Doctor Appointment System and provide some test cases.
  • Ans. 

    Tip 1 : Implement using OOPs 
    Tip 2 : Try to tell your approach to the interviewer as much as you can side by side

  • Answered Anonymously
Round 3 - Video Call 

(4 Questions)

Round duration - 90 minutes
Round difficulty - Medium

Interview of DSA + OOPS + Databse(SQL query) + Operating System

  • Q1. 

    Left View of a Binary Tree

    Given a binary tree, your task is to print the left view of the tree. The left view of a binary tree contains the nodes visible when the tree is viewed from the left side.

    Inpu...

  • Ans. Recursive Approach

    This problem can be solved through recursion.We will maintain max_level variable which will keep track of maxLevel and will pass current level in recursion as argument. Whenever we see a node whose current level is more than maxLevel then we will print that node as that will be first node for that current level. Also update maxLevel with current level.

    Space Complexity: O(n)Explanation:

    O(N), where ‘N’...

  • Answered Anonymously
  • Q2. What is the difference between CHAR and VARCHAR2 data types in SQL?
  • Q3. What are the various types of constructors in C++?
  • Q4. What is the difference between overloading and overriding?
Round 4 - HR 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

Hr round - normal hr questions + situational 

Thoughtworks community discussion

  • Q1. Why should we hire you?
  • Ans. 

    Tip 1 : Read all Thoughtworks community page and be honest


    Tip 2 : Be open-minded and answer whatever you are thinking, in these rounds I feel it is important to have opinion.


    Tip 3 : The cross-questioning can go intense sometimes, think before you speak.

  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in GurgaonEligibility criteriaAbove 7 CGPAThought Works interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 4 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

Prodapt Interview FAQs

What are the top questions asked in Prodapt Software Trainee interview?

Some of the top questions asked at the Prodapt Software Trainee interview -

  1. Swapping of 2 numbers cod...read more
  2. Basic c quest...read more

Tell us how to improve this page.

Software Engineer
1.4k salaries
unlock blur

₹2.6 L/yr - ₹9.1 L/yr

Associate Software Engineer
845 salaries
unlock blur

₹2.4 L/yr - ₹5.5 L/yr

Senior Software Engineer
822 salaries
unlock blur

₹3.8 L/yr - ₹15 L/yr

Lead Engineer
461 salaries
unlock blur

₹6.9 L/yr - ₹27 L/yr

Senior Process Associate
270 salaries
unlock blur

₹1.4 L/yr - ₹4.8 L/yr

Explore more salaries
Compare Prodapt with

Movate

3.3
Compare

Mphasis

3.4
Compare

Happiest Minds Technologies

3.7
Compare

L&T Technology Services

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