Upload Button Icon Add office photos
Premium Employer

i

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

One Trust Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

One Trust Associate Software Engineer Interview Questions and Answers

Updated 19 Dec 2024

One Trust Associate Software Engineer Interview Experiences

3 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

It was good 20 mcqs 3 coding questions

Round 2 - Technical 

(2 Questions)

  • Q1. Dsa and core subjects like cn os
  • Q2. Dsa questions and core subjects
Round 3 - HR 

(1 Question)

  • Q1. Basic family discussion and salary details

Interview Preparation Tips

Interview preparation tips for other job seekers - it was overall a good experience
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

The assessment included a written test comprising multiple-choice questions (MCQs) based on technical knowledge and aptitude. Each correct answer was awarded 1 mark, while incorrect answers incurred a penalty of -0.25 marks. The subsequent section featured two coding questions and two SQL queries, for which candidates were required to write the complete code.

Round 2 - One-on-one 

(1 Question)

  • Q1. Diff between HTTP and HTTPS
  • Ans. 

    HTTP is unsecured protocol while HTTPS is secured protocol using SSL/TLS encryption.

    • HTTP stands for Hypertext Transfer Protocol, while HTTPS stands for Hypertext Transfer Protocol Secure.

    • HTTP operates on port 80, while HTTPS operates on port 443.

    • HTTP does not encrypt data, while HTTPS encrypts data using SSL/TLS.

    • HTTPS provides authentication and data integrity, while HTTP does not.

    • Example: http://www.example.com vs htt

  • Answered by AI

Associate Software Engineer Interview Questions Asked at Other Companies

asked in Accenture
Q1. Triplets with Given Sum Problem Given an array or list ARR consis ... read more
asked in Gainsight
Q2. Connecting Ropes with Minimum Cost You are given 'N' ropes, each ... read more
Q3. Intersection of Two Arrays II Given two integer arrays ARR1 and A ... read more
asked in Clarivate
Q4. Best Time to Buy and Sell Stock II Problem Statement Given the st ... read more
Q5. Ninja and Alternating Largest Problem Statement Ninja is given a ... read more
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

It was a written tet with three sections one technical mcq second apti and three coding questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. How to solve problem in the written test
  • Q2. Project questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well and luck matters

Interview questions from similar companies

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

I applied via Recruitment Consulltant and was interviewed in Aug 2023. There were 3 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 Resume tips
Round 2 - Aptitude Test 

MCQ questions on Linux Networking and SQL

Round 3 - Technical 

(2 Questions)

  • Q1. Questions about Linux Sql and Networking
  • Q2. Questions about the project
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Fair and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Two sum of an array
  • Ans. 

    Find two numbers in an array that add up to a specific target value.

    • Use a hashmap to store the difference between the target value and each element in the array.

    • Iterate through the array and check if the current element's complement exists in the hashmap.

    • Return the indices of the two numbers that add up to the target value.

  • Answered by AI
  • Q2. Stack balance parenthesis
Round 2 - Technical 

(2 Questions)

  • Q1. Is circular loop is there in a linkedList
  • Ans. 

    No, a circular loop is not present in a linked list.

    • A linked list does not have a circular loop by default.

    • If a linked list has a circular loop, it is considered a circular linked list.

    • Circular linked lists can be detected using Floyd's Cycle Detection Algorithm.

  • Answered by AI
  • Q2. How to identify the duplicates in circular linkedList
  • Ans. 

    To identify duplicates in a circular linked list, use a hash set to keep track of visited nodes.

    • Traverse the circular linked list while adding each node to a hash set.

    • If a node is already in the hash set, it is a duplicate.

    • Consider edge cases such as an empty list or a list with only one node.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - well Prepared DSA Topics and Java and OOPs

Skills evaluated in this interview

I applied via Company Website and was interviewed before Jul 2021. There were 3 interview rounds.

Round 1 - Coding Test 

5 coding questions you have to complete atleast 4

Round 2 - HR 

(1 Question)

  • Q1. About yourself and technology related questions ,it can 1 or 1 and half an hour round
Round 3 - Aptitude Test 

Basic aptitude questions

Interview Preparation Tips

Topics to prepare for Mindfire Solutions Associate Software Engineer interview:
  • Java
  • Laravel
  • PHP
  • Javascript
  • Javascript Frameworks
Interview preparation tips for other job seekers - Great place ,Great team and growth in work everything you can find here.

I applied via Referral and was interviewed in Mar 2022. There were 6 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 Resume tips
Round 2 - Aptitude Test 

Time and Speed, Percentages, Averages, Ratio and Proportion, Time and Work etc.

Round 3 - Coding Test 

Platform was Mettle Assessment, Topics were Tree and Binary Search

Round 4 - Group Discussion 

Work from office vs Work from Home

Round 5 - Technical 

(3 Questions)

  • Q1. Multi-threading, Communication between thread, dynamic programming, trees, sorting techniques.
  • Q2. What is TCP, UDP, Difference between TCP and UDP, Three way handshaking problem, socket programming, HTTP Protocol.
  • Ans. 

    TCP (Transmission Control Protocol) and UDP (User Datagram Protocol) are protocols used for data transmission over networks.

    • TCP is a connection-oriented protocol that guarantees reliable delivery of data.

    • UDP is a connectionless protocol that does not guarantee reliable delivery of data.

    • The main difference between TCP and UDP is that TCP provides reliable, ordered, and error-checked delivery of data, while UDP does not.

    • ...

  • Answered by AI
  • Q3. Write code to print bottom view of Binary Search Tree
  • Ans. 

    Print the bottom view of a Binary Search Tree.

    • Use a map to store the horizontal distance and the bottom-most node at that distance.

    • Traverse the tree in level order and update the map with each node's horizontal distance and level.

    • Print the nodes in the map in ascending order of their horizontal distance.

  • Answered by AI
Round 6 - HR 

(3 Questions)

  • Q1. Why you want to work from office
  • Ans. 

    I believe working from the office allows for better collaboration and communication with colleagues.

    • Better collaboration and communication with colleagues

    • Opportunity for face-to-face interactions

    • Easier access to resources and equipment

    • Faster problem-solving through immediate discussions

    • Building stronger relationships with team members

  • Answered by AI
  • Q2. Why should we hire you
  • Ans. 

    I have the technical skills, experience, and passion for software engineering that make me a valuable asset to your team.

    • I have a strong background in computer science and software development

    • I have experience working on various software projects and have a proven track record of delivering high-quality code

    • I am a quick learner and can adapt to new technologies and programming languages

    • I am a team player and can effect...

  • Answered by AI
  • Q3. Tell any moment when you felt motivated and depressed at same time. etc
  • Ans. 

    Yes

    • When I received a promotion at work but also had to deal with the loss of a loved one

    • When I achieved a personal goal but also faced criticism from others

    • When I received positive feedback on a project but also experienced imposter syndrome

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident and honest. Read your resume properly and rock any interview

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Mar 2024. There were 4 interview rounds.

Round 1 - Coding Test 

First round was coding test conducted by their IDE where you can program in any language like on hackerrank IDE . 5 question were asked from easy to hard

Round 2 - Psychometric Test 

(2 Questions)

  • Q1. They ask me about my though on social media
  • Q2. They give me a situation to handle the work load
Round 3 - Technical 

(2 Questions)

  • Q1. Difference between stack and heap ?
  • Ans. 

    Stack is used for static memory allocation and stores local variables, while heap is used for dynamic memory allocation and stores objects.

    • Stack memory is allocated in a contiguous block and is faster to access compared to heap memory.

    • Variables stored on the stack have limited scope and lifetime, while objects on the heap can persist beyond the scope of the function.

    • Stack memory is managed by the compiler, while heap m...

  • Answered by AI
  • Q2. Difference between complier and interpreter ?
  • Ans. 

    Compiler translates entire code into machine code before execution, while interpreter translates code line by line during execution.

    • Compiler translates entire code into machine code before execution

    • Interpreter translates code line by line during execution

    • Compiler generates error messages after scanning entire code

    • Interpreter stops at first error encountered

    • Examples: C, C++ use compilers; Python, Ruby use interpreters

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. My introduction
  • Q2. I can i mange to work proficiency

Interview Preparation Tips

Interview preparation tips for other job seekers - be enough smart to give an answer and if don't know then say sorry don't know

I applied via Job Fair and was interviewed in Oct 2021. There were 2 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basics of each skill mentioned in the resume

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

Round 1 - Coding Test 

Coding content on hackerrank of 2 questions

Round 2 - One-on-one 

(1 Question)

  • Q1. I had virtual interview with the technical team member who asked all the questions starting from basic to the higher level covering all the skills mentioned in the resume and has provided with scenarios to...

Interview Preparation Tips

Interview preparation tips for other job seekers - Be thorough with all the skills mentioned in the resume.
when you don't know any question be honest.
when asked to code a paticular question example a binary search or other if you don't know how to code then just say that you can explain the concept and say i'm not sure if i can code it in one go.
Contribute & help others!
anonymous
You can choose to be anonymous

One Trust Interview FAQs

How many rounds are there in One Trust Associate Software Engineer interview?
One Trust interview process usually has 2-3 rounds. The most common rounds in the One Trust interview process are Aptitude Test, One-on-one Round and Technical.
What are the top questions asked in One Trust Associate Software Engineer interview?

Some of the top questions asked at the One Trust Associate Software Engineer interview -

  1. Diff between HTTP and HT...read more
  2. How to solve problem in the written t...read more
  3. dsa and core subjects like cn...read more

Recently Viewed

COMPANY BENEFITS

Zeta

27 benefits

INTERVIEWS

Classplus

No Interviews

INTERVIEWS

Springworks

No Interviews

INTERVIEWS

Springworks

No Interviews

REVIEWS

Evolent Health International

No Reviews

INTERVIEWS

One Trust

No Interviews

INTERVIEWS

Springworks

No Interviews

INTERVIEWS

One Trust

No Interviews

INTERVIEWS

Classplus

No Interviews

REVIEWS

Classplus

No Reviews

Tell us how to improve this page.

One Trust Associate Software Engineer Interview Process

based on 3 interviews

1 Interview rounds

  • Aptitude Test Round
View more
One Trust Associate Software Engineer Salary
based on 15 salaries
₹6 L/yr - ₹9 L/yr
39% more than the average Associate Software Engineer Salary in India
View more details
Senior Software Engineer
193 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Devops Engineer
40 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
37 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Principal Software Engineer
33 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Quality Engineer
25 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare One Trust with

Aavishkaar Group

5.0
Compare

Acumen

3.6
Compare

Bharti Foundation

3.9
Compare

EdelGive Foundation

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