Upload Button Icon Add office photos

DEVtrust

Compare button icon Compare button icon Compare

Filter interviews by

DEVtrust Software Engineer Trainee Interview Questions and Answers

Updated 9 Aug 2024

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...

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

Software Engineer Trainee Interview Questions Asked at Other Companies

asked in HSBC Group
Q1. Palindromic Linked List Problem Statement Given a singly linked l ... read more
asked in HSBC Group
Q2. Search in a 2D Matrix Given a 2D matrix MAT of size M x N, where ... read more
asked in GlobalLogic
Q3. Slot Game Problem Statement You are given a slot machine with fou ... read more
Q4. 1. Explain oops and its 4 pillars 2. Explain polymorphism with re ... read more
asked in HSBC Group
Q5. Maximum Level Sum in a Binary Tree Given a Binary Tree with integ ... read more
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

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.

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...

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

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.

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

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

DEVtrust Software Engineer Trainee Interview Experiences

1 interview 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

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about DEVtrust?
Ask anonymously on communities.

Interview questions from similar companies

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

Software Engineer Trainee Interview Questions Asked at Other Companies

asked in HSBC Group
Q1. Palindromic Linked List Problem Statement Given a singly linked l ... read more
asked in HSBC Group
Q2. Search in a 2D Matrix Given a 2D matrix MAT of size M x N, where ... read more
asked in GlobalLogic
Q3. Slot Game Problem Statement You are given a slot machine with fou ... read more
Q4. 1. Explain oops and its 4 pillars 2. Explain polymorphism with re ... read more
asked in HSBC Group
Q5. Maximum Level Sum in a Binary Tree Given a Binary Tree with integ ... read more

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.

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 Campus Placement and was interviewed before Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. String list

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared to bascis more important

Interview Questionnaire 

1 Question

  • Q1. Difference between for and for each
  • Ans. 

    For loop is used for iterating over a range of values while for each loop is used for iterating over elements of an array.

    • For loop is used when the number of iterations is known beforehand.

    • For each loop is used when the number of iterations is not known beforehand.

    • For loop can be used with any iterable object.

    • For each loop can only be used with arrays and other iterable objects.

    • For loop uses an index variable to access...

  • Answered by AI
Are these interview questions helpful?

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

Interview Questionnaire 

5 Questions

  • Q1. Which collection class is used to represent key-value pairs?
  • Ans. 

    The HashMap class is used to represent key-value pairs in Java.

    • HashMap is a part of the Java Collections Framework.

    • It allows null values and only one null key.

    • It provides constant-time performance for basic operations like get and put.

    • Example: HashMap<String, Integer> map = new HashMap<>();

  • Answered by AI
  • Q2. What is abstraction?
  • Ans. 

    Abstraction is the process of simplifying complex systems by focusing on essential details and hiding unnecessary complexities.

    • Abstraction allows us to create models or representations of real-world objects or systems in software.

    • It helps in managing complexity by breaking down a system into smaller, more manageable parts.

    • Abstraction provides a level of indirection, allowing changes to be made in one part of the system...

  • Answered by AI
  • Q3. Why is try-catch used in JAVA?
  • Ans. 

    try-catch is used in Java to handle exceptions and prevent program crashes.

    • try-catch blocks are used to catch and handle exceptions that may occur during program execution.

    • It allows the program to gracefully handle errors and prevent the program from crashing.

    • The try block contains the code that may throw an exception, and the catch block handles the exception.

    • Multiple catch blocks can be used to handle different types...

  • Answered by AI
  • Q4. Which statement will we use if we want to select a statement based on integer inputs?
  • Ans. 

    The statement to use for selecting based on integer inputs is the 'switch' statement.

    • The 'switch' statement allows for multiple cases to be evaluated based on the value of an integer input.

    • Each case represents a possible value of the input, and the corresponding code block is executed if the value matches.

    • The 'switch' statement also provides a 'default' case which is executed if none of the cases match the input value.

    • ...

  • Answered by AI
  • Q5. Explain your project.

Interview Preparation Tips

Interview preparation tips for other job seekers - Stick to basic concepts
Prepare a good project

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed before Apr 2022. 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 tips
Round 2 - Aptitude Test 

25 MCQ questions online with time limit

Round 3 - Assignment 

Create webapp . Frontend, Backend , data encryption

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

Aptitude test details in the snovasys are best aptitude test details in snovasys and in the snovasys i thought like i need to learn more in the aptitude atmy strating of career and all all all alllllllllllllllllllllllll abc and the best buddy program we have invested on the internet today at the speed limit of data and the policy are not good we need to improve all the data and the data is not good of all the data to be shared and with in the organisation all the data is must and should need to learn careful and all the data is need to know all the must and should detailed actions are taken on their data

Round 2 - HR 

(2 Questions)

  • Q1. Not good with my situation And
  • Q2. What is your current salary What is your location
  • Ans. 

    I am unable to provide my current salary as it is confidential.

    • My current salary is confidential and I am unable to disclose it.

    • I prefer to discuss salary expectations rather than disclosing my current salary.

    • Salary is negotiable based on the position and responsibilities.

    • I am more interested in discussing the opportunities and growth potential in this role.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I don't have any tips to submit please consider everyone's own organisation policies

DEVtrust Interview FAQs

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

Some of the top questions asked at the DEVtrust Software Engineer Trainee 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

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

2-4 weeks 100%
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.4
 • 104 Interviews
Snovasys Interview Questions
4.0
 • 40 Interviews
Quantsapp Interview Questions
3.0
 • 36 Interviews
NexTurn Interview Questions
4.1
 • 34 Interviews
View all
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

Technical Lead
4 salaries
unlock blur

₹6.5 L/yr - ₹12 L/yr

Explore more salaries
Compare DEVtrust with

HCL Infosystems

3.9
Compare

Northcorp Software

4.5
Compare

Zidio Development

4.5
Compare

Accel Frontline

4.0
Compare
write
Share an Interview