Upload Button Icon Add office photos

Filter interviews by

DEVtrust Interview Questions and Answers

Updated 28 Mar 2025
Popular Designations

9 Interview questions

A Software Engineer Trainee was asked 10mo ago
Q. What are Integrity Constraints?
Ans. 

Integrity constraints are rules that ensure data integrity and consistency in a database.

  • Integrity constraints are used to enforce business rules or data quality rules in a database.

  • They can include rules such as unique constraints, foreign key constraints, and check constraints.

  • Unique constraints ensure that no two rows have the same value in a specified column.

  • Foreign key constraints enforce referential integrit...

View all Software Engineer Trainee interview questions
A Software Engineer Trainee was asked 10mo ago
Q. Develop a fully functional "To Do List" application with a modern design, including header and footer, and implement functionalities like 'Add', 'Edit', 'Delete', and 'View List' within 30 minutes during th...
Ans. 

Develop a 'To Do List' application with modern design and functionality like 'Add', 'Edit', 'Delete', and 'View List' within ½ hour.

  • Use HTML, CSS, and JavaScript for front-end development

  • Implement CRUD operations for tasks (Create, Read, Update, Delete)

  • Design a user-friendly interface with header and footer

  • Utilize localStorage or backend server for data storage

View all Software Engineer Trainee interview questions
A Software Engineer Trainee was asked 10mo ago
Q. Write an example of an async/await function.
Ans. 

Async wait function code example

  • Use async/await keywords in the function declaration

  • Use setTimeout to simulate asynchronous operation

  • Return a Promise that resolves after a specified time

View all Software Engineer Trainee interview questions
A Software Engineer Trainee was asked 10mo ago
Q. What are higher-order functions?
Ans. 

High order functions are functions that can take other functions as arguments or return functions as results.

  • High order functions can accept functions as parameters.

  • High order functions can return functions as output.

  • Examples include map, filter, and reduce functions in JavaScript.

View all Software Engineer Trainee interview questions
A Software Engineer Trainee was asked 10mo ago
Q. What is a closure?
Ans. 

A closure is a function that has access to its own scope, as well as the outer scope in which it was defined.

  • A closure allows a function to access variables from an outer function even after the outer function has finished executing.

  • Closures are commonly used in JavaScript for data encapsulation and creating private variables.

  • Example: function outerFunction() { let outerVar = 'I am outer'; return function innerFun...

View all Software Engineer Trainee interview questions
A Software Engineer Trainee was asked 10mo ago
Q. Write Typescript code to find the maximum length of a palindromic substring from a given string.
Ans. 

Finding the maximum length of palindromic substring from an array of strings using Typescript.

  • Iterate through each string in the array

  • For each string, iterate through all possible substrings and check if it is a palindrome

  • Keep track of the maximum length palindrome found

View all Software Engineer Trainee interview questions
A Software Engineer Trainee was asked 10mo ago
Q. Do you know about GraphQL?
Ans. 

GraphQL is a query language for APIs and a runtime for executing those queries.

  • GraphQL allows clients to request only the data they need.

  • It provides a single endpoint for all data fetching.

  • GraphQL schemas define the types of data that can be queried.

View all Software Engineer Trainee interview questions
Are these interview questions helpful?
A Software Engineer Trainee was asked 10mo ago
Q. What is the DISTINCT keyword in SQL?
Ans. 

Distinct keyword in SQL is used to retrieve unique values from a column in a table.

  • Distinct keyword eliminates duplicate rows from the result set

  • It is often used in conjunction with SELECT statement

  • Example: SELECT DISTINCT column_name FROM table_name

View all Software Engineer Trainee interview questions
A Software Engineer Trainee was asked 10mo ago
Q. Write code for merging two sorted arrays.
Ans. 

Code to merge two sorted arrays

  • Create a new array to store the merged result

  • Use two pointers to iterate through both arrays and compare elements

  • Add the smaller element to the new array and move the pointer for that array

View all Software Engineer Trainee interview questions

DEVtrust Interview Experiences

2 interviews found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Apna Jobs and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Technical 

(9 Questions)

  • Q1. Tell me about Yourself.
  • Ans. 

    I am a recent graduate with a degree in Computer Science, passionate about coding and problem-solving.

    • Graduated with a degree in Computer Science

    • Passionate about coding and problem-solving

    • Completed internships at tech companies

  • Answered by AI
  • Q2. If you have given any new technology to learn in how many days you will learn?
  • Ans. 

    The time it takes to learn a new technology varies depending on complexity and prior knowledge.

    • Learning time depends on complexity of technology.

    • Prior knowledge and experience can impact learning speed.

    • Dedication and practice are key to mastering new technologies.

    • Setting realistic goals and milestones can help track progress.

    • Examples: Learning a new programming language may take a few weeks, while mastering a complex f...

  • Answered by AI
  • Q3. What is Distinct keyword in SQL ?
  • Ans. 

    Distinct keyword in SQL is used to retrieve unique values from a column in a table.

    • Distinct keyword eliminates duplicate rows from the result set

    • It is often used in conjunction with SELECT statement

    • Example: SELECT DISTINCT column_name FROM table_name

  • Answered by AI
  • Q4. What is Integrity Constraints ?
  • Ans. 

    Integrity constraints are rules that ensure data integrity and consistency in a database.

    • Integrity constraints are used to enforce business rules or data quality rules in a database.

    • They can include rules such as unique constraints, foreign key constraints, and check constraints.

    • Unique constraints ensure that no two rows have the same value in a specified column.

    • Foreign key constraints enforce referential integrity by ...

  • Answered by AI
  • Q5. Write code for merging two shorted Arrays.
  • Ans. 

    Code to merge two sorted arrays

    • Create a new array to store the merged result

    • Use two pointers to iterate through both arrays and compare elements

    • Add the smaller element to the new array and move the pointer for that array

  • Answered by AI
  • Q6. Write one async wait function code.
  • Ans. 

    Async wait function code example

    • Use async/await keywords in the function declaration

    • Use setTimeout to simulate asynchronous operation

    • Return a Promise that resolves after a specified time

  • Answered by AI
  • Q7. What are high order functions?
  • Ans. 

    High order functions are functions that can take other functions as arguments or return functions as results.

    • High order functions can accept functions as parameters.

    • High order functions can return functions as output.

    • Examples include map, filter, and reduce functions in JavaScript.

  • Answered by AI
  • Q8. What is clouser?
  • Ans. 

    A closure is a function that has access to its own scope, as well as the outer scope in which it was defined.

    • A closure allows a function to access variables from an outer function even after the outer function has finished executing.

    • Closures are commonly used in JavaScript for data encapsulation and creating private variables.

    • Example: function outerFunction() { let outerVar = 'I am outer'; return function innerFunction...

  • Answered by AI
  • Q9. Do you know about GraphQL?
  • Ans. 

    GraphQL is a query language for APIs and a runtime for executing those queries.

    • GraphQL allows clients to request only the data they need.

    • It provides a single endpoint for all data fetching.

    • GraphQL schemas define the types of data that can be queried.

  • Answered by AI
Round 2 - Coding Test 

(2 Questions)

  • Q1. Develope "To Do List" full fledged Application with modern design including header footer and also implement functionality like 'Add' , 'Edit', 'Delete' and 'View List' within ½ hour of time span of Interv...
  • Ans. 

    Develop a 'To Do List' application with modern design and functionality like 'Add', 'Edit', 'Delete', and 'View List' within ½ hour.

    • Use HTML, CSS, and JavaScript for front-end development

    • Implement CRUD operations for tasks (Create, Read, Update, Delete)

    • Design a user-friendly interface with header and footer

    • Utilize localStorage or backend server for data storage

  • Answered by AI
  • Q2. Write Typescript code from scratch of "Finding maximum length of palindromic substring from the given Strings". Do this question in ½ hour live coding interview.
  • Ans. 

    Finding the maximum length of palindromic substring from an array of strings using Typescript.

    • Iterate through each string in the array

    • For each string, iterate through all possible substrings and check if it is a palindrome

    • Keep track of the maximum length palindrome found

  • Answered by AI

Interview Preparation Tips

Topics to prepare for DEVtrust Software Engineer Trainee interview:
  • DBMS
  • Javascript
  • Node.Js
  • DSA
Interview preparation tips for other job seekers - HR will take first telephonic call and tell about 2 year of bond policy 😳which includes compulsory submission of original marksheet. Also HR tell about the money you will receive that will be 10k to 15k per month more importantly it will be you CTC not inhand.
If you agree all these conditions then they will treat you like 2+ year experience developer and they take interview according that😂

Skills evaluated in this interview

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

I appeared for an interview in Feb 2025, where I was asked the following questions.

  • Q1. What were your responsibilities in the previous organisation
  • Ans. 

    In my previous role, I analyzed business processes, gathered requirements, and collaborated with stakeholders to drive project success.

    • Conducted detailed business requirements analysis, leading to a 20% improvement in project delivery timelines.

    • Facilitated workshops with stakeholders to gather and prioritize requirements, ensuring alignment with business goals.

    • Developed process flow diagrams and use cases to visualize ...

  • Answered by AI
  • Q2. Why are you leaving you currently company.
  • Ans. 

    I'm seeking new challenges and opportunities for growth that align with my career goals and aspirations.

    • Desire for professional growth: I want to expand my skill set and take on more responsibilities.

    • Seeking a better cultural fit: My current company’s values no longer align with my personal values.

    • Looking for new challenges: I feel I have outgrown my current role and am eager to tackle new projects.

    • Career advancement: ...

  • Answered by AI
  • Q3. What projects did you work on
  • Ans. 

    I worked on various projects focusing on data analysis, process improvement, and stakeholder engagement across multiple industries.

    • Led a project to streamline the inventory management system, reducing excess stock by 20%.

    • Conducted a market analysis for a new product launch, identifying key customer segments and potential sales channels.

    • Collaborated with IT to implement a new CRM system, enhancing customer data tracking...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Have good communication skills

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about DEVtrust?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Referral and was interviewed before Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Related to work profile
  • Q2. Related to interests

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, go well groomed

Interview Questionnaire 

1 Question

  • Q1. SDLC Model

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice interview

I appeared for an interview before Jun 2016.

Interview Questionnaire 

1 Question

  • Q1. Java related questions on Oops concept and Multithreading

Interview Preparation Tips

Round: Test
Experience: Simple aptitude and reasoning questions little java based programming
Tips: Basic programming knowledge and good aptitude
Duration: 1 hour
Total Questions: 60

Round: Technical Interview
Experience: Normal questions on Java, basic programming questions like reverse no. , String related and logical coding
Tips: What u mentioned on your resume go through that only, they will not ask apart from your resume

Skills: How Well You Are Able To Communicate What You Wanted To Tell, Programming
College Name: SRCEM

I appeared for an interview before Aug 2016.

Interview Preparation Tips

Round: Resume Shortlist
Experience: I am vinothkumar from Dindugal, I was studied computer engineering in Madurai institute of engineering and technology at sivagangai, I am quality controller in RR DONNELLY at Chennai, my experience 2 years, my family staying in native, my father palanichami he is a former, my mother tamilselvi she is home maker and my one yelder brother Vijayakumar he is driver, I am interested area software engineer, my hobbies are listening music, reading book and news paper, playing and watching cricket
Tips: No comments

Round: Test
Experience: I am vinothkumar from Dindugal, I was studied computer engineering in Madurai institute of engineering and technology at sivagangai, I am quality controller in RR DONNELLY at Chennai, my experience 2 years, my family staying in native, my father palanichami he is a former, my mother tamilselvi she is home maker and my one yelder brother Vijayakumar he is driver, I am interested area software engineer, my hobbies are listening music, reading book and news paper, playing and watching cricket
Tips: No comments
Total Questions: 15

Round: Test
Experience: See my mentality
Tips: No comments
Duration: 45 minutes

Round: Group Discussion
Experience: Communication
Tips: No comments

Skills: Communication And Confidence

I applied via Referral and was interviewed before Jan 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Which technology are you using, is this latest?
  • Ans. 

    We are using a variety of technologies, including some of the latest ones.

    • We are using React for our front-end development.

    • We are also using Node.js for our back-end development.

    • We are using Docker for containerization.

    • We are using Kubernetes for orchestration.

    • We are using AWS for cloud hosting.

    • We are constantly evaluating new technologies to see if they can improve our development process.

  • Answered by AI
  • Q2. If not then which technology can we use instead of this?
  • Ans. 

    It depends on the specific requirements and constraints of the project.

    • Consider the project's goals and objectives

    • Evaluate the available technologies and their capabilities

    • Assess the project's budget and timeline

    • Consult with stakeholders and experts in the field

    • Examples: React vs Angular, MySQL vs MongoDB, Java vs Python

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Hi,
Listen carefully and speak fluently.
Are these interview questions helpful?

I applied via Company Website and was interviewed before Dec 2019. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Regarding OOPS, wordpress and laravel.

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good and I am still working here.

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

Interview Questionnaire 

1 Question

  • Q1. Interviewer firstly ask me tell me about your self and then he ask question of basic php question like how to print in php and interviewer and he ask about if else statement switch case and for do while l...

Interview Preparation Tips

Interview preparation tips for other job seekers - I am small town college fresher and suddenly I face MNC interview so firstly I am hestitate but when interviewer ask question to me so then I answer all of questions and then after some hr tell your interview result declared after 5 min then I wait outside of office then call me and say u r selected I feel very joyfull

I applied via Referral and was interviewed before Feb 2021. There were 3 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Tell me about yourself
  • Ans. 

    I'm a passionate software engineer with a strong background in full-stack development and a love for solving complex problems.

    • Graduated with a degree in Computer Science from XYZ University.

    • Worked at ABC Corp, where I developed a web application that improved user engagement by 30%.

    • Proficient in languages like JavaScript, Python, and Java, with experience in frameworks like React and Django.

    • Enjoy collaborating in agile...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. 1 Project Explanation 2 SDLC & STLC. 3 Differentiate Smoke vs Sanity 4 What is Regression testing? 5 Bug life cycle. 6 Scenarios on real time example. 7 Questions on agile
  • Ans. 

    Interview questions for Software Engineer position

    • Project explanation should include details on the project's purpose, scope, and technologies used

    • SDLC (Software Development Life Cycle) and STLC (Software Testing Life Cycle) are methodologies used in software development and testing respectively

    • Smoke testing is a type of testing that checks if the basic functionalities of the software are working fine, while Sanity tes...

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. All basic HR questions and salary discussion.

DEVtrust Interview FAQs

How many rounds are there in DEVtrust interview?
DEVtrust interview process usually has 2 rounds. The most common rounds in the DEVtrust interview process are Technical and Coding Test.
What are the top questions asked in DEVtrust interview?

Some of the top questions asked at the DEVtrust interview -

  1. Develope "To Do List" full fledged Application with modern design including hea...read more
  2. Write Typescript code from scratch of "Finding maximum length of palindromic s...read more
  3. What is Distinct keyword in SQ...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.5/5

based on 2 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 50%
2-4 weeks 50%
View more

Interview Questions from Similar Companies

HCL Infosystems Interview Questions
3.9
 • 144 Interviews
Webdew Interview Questions
4.5
 • 108 Interviews
HyScaler Interview Questions
4.5
 • 104 Interviews
Snovasys Interview Questions
4.0
 • 38 Interviews
Quantsapp Interview Questions
3.0
 • 36 Interviews
NexTurn Interview Questions
4.1
 • 34 Interviews
View all

DEVtrust Reviews and Ratings

based on 37 reviews

3.7/5

Rating in categories

3.8

Skill development

3.4

Work-life balance

3.7

Salary

3.4

Job security

3.6

Company culture

3.4

Promotions

3.5

Work satisfaction

Explore 37 Reviews and Ratings
Software Developer
18 salaries
unlock blur

₹3 L/yr - ₹6 L/yr

Business Analyst
11 salaries
unlock blur

₹4.2 L/yr - ₹8 L/yr

Software Engineer
10 salaries
unlock blur

₹2 L/yr - ₹6 L/yr

Senior Software Engineer
5 salaries
unlock blur

₹4.2 L/yr - ₹7.2 L/yr

Web Designer
4 salaries
unlock blur

₹4.2 L/yr - ₹5.6 L/yr

Explore more salaries
Compare DEVtrust with

HCL Infosystems

3.9
Compare

Zidio Development

4.5
Compare

Northcorp Software

4.5
Compare

Accel Frontline

4.1
Compare
write
Share an Interview