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 Software Tester Interview Questions and Answers

Updated 4 Aug 2021

One Trust Software Tester Interview Experiences

1 interview found

Interview Questionnaire 

3 Questions

  • Q1. How do you work on APIs
  • Ans. 

    I work on APIs by understanding their functionality and testing them using various tools and techniques.

    • I review API documentation to understand its functionality

    • I use tools like Postman to test API endpoints

    • I verify API responses against expected results

    • I perform load testing to ensure API can handle expected traffic

    • I collaborate with developers to resolve any issues found during testing

  • Answered by AI
  • Q2. Can you create set of data using api
  • Ans. 

    Yes, I can create a set of data using API.

    • I can use API endpoints to create data in the system.

    • I can use tools like Postman or cURL to send API requests.

    • I can also write scripts in programming languages like Python to automate the process.

    • Examples include creating new users, adding products to a catalog, or updating customer information.

  • Answered by AI
  • Q3. How do you pass query params through api
  • Ans. 

    Query params can be passed through API by appending them to the URL after a '?' symbol.

    • Add '?' symbol after the endpoint URL

    • Add the parameter name followed by '=' and the value

    • Separate multiple parameters with '&' symbol

    • Example: https://api.example.com/users?id=123&name=John

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - One-on-one 

(1 Question)

  • Q1. Questions on OOPS, Core Concepts of C#, SQL
Round 2 - One-on-one 

(1 Question)

  • Q1. Questions on System Design and tricky questions on OOPS
Round 3 - HR 

(1 Question)

  • Q1. Previous organization work culture and expectations
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Questions related to OOP's , SQL, .Net core.

I applied via Other and was interviewed in May 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Sorting arrays without using inbuilt function
  • Ans. 

    Sorting array of strings without using inbuilt function.

    • Implement bubble sort algorithm

    • Compare adjacent elements and swap if necessary

    • Repeat until no swaps are needed

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Mar 2021. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Core java concepts
  • Q2. Multithreading questions
  • Q3. Previous project details
  • Ans. 

    Developed a web application for managing customer orders and inventory

    • Used Java and Spring framework for backend development

    • Implemented a responsive user interface using HTML, CSS, and JavaScript

    • Integrated with a relational database for data storage and retrieval

    • Implemented authentication and authorization features for secure access

    • Performed unit testing and bug fixing throughout the development process

  • Answered by AI
  • Q4. Java Programs

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong in basics and practice coding questions to increase performance and quality of code
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Reverse Linked List
Pallindrome of String

Round 2 - Group Discussion 

Flyover building in team with strength

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

I applied via LinkedIn and was interviewed in Jun 2022. There were 2 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 - Technical 

(3 Questions)

  • Q1. There were two interviewers. I was interviewed in python. Two coding questions on python and one SQL question and few questions on projects and previous working experience and knowledge on linux.
  • Q2. What is your work experience
  • Q3. What are the projects you worked on

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident. Your hardwork will definitely pays off.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Sep 2022. There were 2 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 - Technical 

(2 Questions)

  • Q1. Some question were related to APIs
  • Q2. What is rest API
  • Ans. 

    REST API is a set of rules and conventions for building and interacting with web services using HTTP methods.

    • REST stands for Representational State Transfer

    • Uses standard HTTP methods like GET, POST, PUT, DELETE

    • Data is transferred in JSON or XML format

    • Stateless communication between client and server

    • Example: GET request to retrieve data from a server

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It is good company with remote work

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Behavioural and culture fit

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Discuss the project you are most proud of
  • Ans. 

    Developed a mobile app for tracking personal fitness goals

    • Used React Native to create a cross-platform app

    • Implemented features such as goal setting, progress tracking, and workout logging

    • Integrated with wearable devices like Fitbit for automatic data syncing

  • Answered by AI
  • Q2. What are ways to speed up SQL queries? List them in increasing order of complexity?
  • Ans. 

    Ways to speed up SQL queries in increasing order of complexity

    • Use indexes on columns frequently used in WHERE clauses

    • Optimize queries by avoiding unnecessary joins and subqueries

    • Use stored procedures to reduce network traffic and improve performance

    • Consider denormalizing tables for frequently accessed data

    • Use query optimization techniques like query caching and query hints

  • Answered by AI
  • Q3. Is Redis single-threaded or multi-threaded?
  • Ans. 

    Redis is single-threaded.

    • Redis is single-threaded, meaning it can only execute one command at a time.

    • This design choice allows Redis to be extremely fast and efficient for certain use cases.

    • However, it also means that Redis may not be the best choice for highly concurrent workloads.

  • Answered by AI
  • Q4. What sort of data types can be used as keys in Python?
  • Ans. 

    Data types that can be used as keys in Python include strings, integers, floats, tuples, and custom objects.

    • Strings are commonly used as keys in Python dictionaries.

    • Integers and floats can also be used as keys.

    • Tuples can be used as keys if they only contain immutable elements.

    • Custom objects can be used as keys if they are hashable.

    • Examples: {'name': 'John'}, {1: 'apple'}, {(1, 2): 'tuple'}

  • Answered by AI
  • Q5. What types of indexing exist in SQL?
  • Ans. 

    Types of indexing in SQL include clustered, non-clustered, unique, and composite indexes.

    • Clustered index physically reorders the table based on the index key

    • Non-clustered index creates a separate structure for the index

    • Unique index ensures that all values in the index column are unique

    • Composite index uses multiple columns for indexing

  • Answered by AI

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

One Trust Interview FAQs

What are the top questions asked in One Trust Software Tester interview?

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

  1. How do you pass query params through a...read more
  2. Can you create set of data using ...read more
  3. How do you work on AP...read more

Recently Viewed

COMPANY BENEFITS

Zeta

27 benefits

SALARIES

Classplus

INTERVIEWS

Springworks

20 top interview questions

REVIEWS

Peel-works

No Reviews

INTERVIEWS

Classplus

No Interviews

REVIEWS

One Trust

No Reviews

INTERVIEWS

Classplus

5.6k top interview questions

INTERVIEWS

Springworks

No Interviews

INTERVIEWS

One Trust

5.6k top interview questions

SALARIES

Classplus

Tell us how to improve this page.

Interview Questions from Similar Companies

Yes Bank Interview Questions
3.7
 • 429 Interviews
Innovaccer Interview Questions
3.4
 • 81 Interviews
NoBrokerHOOD Interview Questions
3.2
 • 57 Interviews
Mobileum Interview Questions
3.3
 • 37 Interviews
Entrata Interview Questions
4.2
 • 34 Interviews
CommVault Interview Questions
3.9
 • 27 Interviews
View all
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