Upload Button Icon Add office photos
Engaged Employer

i

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

DataTrained Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

DataTrained Information Technology Support Engineer Interview Questions and Answers for Freshers

Updated 1 Jul 2021

DataTrained Information Technology Support Engineer Interview Experiences for Freshers

1 interview found

I applied via Referral and was interviewed in Jan 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. What will you do if a system hangs a lot?
  • Ans. 

    If a system hangs a lot, I will troubleshoot the issue by checking for hardware or software problems, performing system updates, and optimizing system resources.

    • Check for hardware issues such as overheating or faulty components

    • Scan for malware or viruses that may be causing the system to hang

    • Update the operating system and software to the latest versions

    • Optimize system resources by closing unnecessary programs or servi...

  • Answered by AI
  • Q2. What will you do when a system won’t start?
  • Ans. 

    When a system won't start, I will perform troubleshooting steps to identify and resolve the issue.

    • Check power supply and connections

    • Verify hardware components are properly seated

    • Check for error messages or beeps

    • Attempt a power cycle

    • Check BIOS settings

    • Test with a different power source or outlet

    • Check for software issues or conflicts

    • Perform hardware diagnostics

    • Seek assistance from colleagues or escalate to higher-level s

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident. Interviewer is not going to beat you.

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed before Nov 2023. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Question on Binary trees: if symmetric, easy string question using hashmap
  • Q2. If we are hosting a live test how to show real time ranking, HLD for this and what algorithms can we use
Round 2 - Technical 

(1 Question)

  • Q1. Database schema design for a feature where user can be free, gold, platinum.
  • Ans. 

    Use a user table with a column for user type (free, gold, platinum)

    • Create a user table with columns for user ID, name, email, user type

    • Use a separate table for user types with columns for type ID and type name

    • Establish a one-to-many relationship between user and user type tables

    • Example: user table - user_id, name, email, type_id; user_type table - type_id, type_name

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. HLD for live rank dashboard for a live test where millions of users are doing test
  • Ans. 

    High-level design for a live rank dashboard for a live test with millions of users.

    • Use a scalable architecture to handle millions of users concurrently.

    • Implement real-time data processing to update ranks dynamically.

    • Utilize caching mechanisms to improve performance and reduce load on the database.

    • Design a user-friendly interface with intuitive data visualization.

    • Include features for filtering, sorting, and searching to

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Explain request lifecycle in rails?
  • Ans. 

    Request lifecycle in Rails involves routing, controller actions, rendering views, and responding to the client.

    • 1. Request comes in through the browser or API endpoint.

    • 2. Rails router determines which controller and action to route the request to.

    • 3. Controller action processes the request, interacts with the model, and prepares data for the view.

    • 4. View template is rendered with the data from the controller.

    • 5. Response ...

  • Answered by AI
  • Q2. Code Merge Sort using Ruby
  • Ans. 

    Implement Merge Sort algorithm in Ruby

    • Divide the array into two halves recursively

    • Merge the sorted halves back together

    • Use a helper method to merge the two halves

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basic aptitude questions

Round 2 - Coding Test 

Linked list, array, tree and graph questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well aptitude and coding
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Coding test around front end using react

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

I applied via Naukri.com and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Coding Test 

Two dynamic programming challenges at the hard level on LeetCode and 10 medium-level SQL challenge.

Interview experience
3
Average
Difficulty level
-
Process Duration
Less than 2 weeks
Result
No response

I applied via Walk-in and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Aptitude Test 

Python technical SQL basic

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

I applied via Naukri.com and was interviewed before Oct 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Check if string is palindrome
  • Ans. 

    Check if a string is the same forwards and backwards

    • Iterate through the string from both ends and compare characters

    • Use built-in functions like reverse() to check for palindrome

    • Ignore spaces and punctuation when checking for palindrome

  • Answered by AI

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Coding Test 

2.5 Hours 2 Coding que and sql query and topin tech platform

Round 2 - waiting for result 

(2 Questions)

  • Q1. Based on boolean matrix
  • Q2. Find k closest node of given given node in a BST.
  • Ans. 

    Find k closest nodes to a given node in a BST.

    • Perform an inorder traversal of the BST to get a sorted list of nodes.

    • Use a priority queue to keep track of the k closest nodes based on their absolute difference with the target node.

    • Populate the priority queue with the first k nodes from the inorder traversal.

    • For each subsequent node, calculate its absolute difference with the target node and compare it with the top eleme...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Referral and was interviewed before Sep 2023. There were 4 interview rounds.

Round 1 - Coding Test 

Two Medium DSA problem to solve

Round 2 - Technical 

(1 Question)

  • Q1. Design scalable Streaming pipeline and
  • Ans. 

    Design a scalable streaming pipeline for processing large volumes of data.

    • Use a distributed streaming framework like Apache Kafka or Apache Flink for real-time data processing.

    • Implement data partitioning and parallel processing to handle high data throughput.

    • Utilize cloud services like AWS Kinesis or Google Cloud Pub/Sub for scalability and reliability.

    • Include fault tolerance mechanisms like checkpointing and data repl...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. LLD round , write classes and its methods
Round 4 - HR 

(1 Question)

  • Q1. Salary and benefits discussion

Skills evaluated in this interview

DataTrained Interview FAQs

What are the top questions asked in DataTrained Information Technology Support Engineer interview for freshers?

Some of the top questions asked at the DataTrained Information Technology Support Engineer interview for freshers -

  1. What will you do if a system hangs a l...read more
  2. What will you do when a system won’t sta...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Planet Spark Interview Questions
3.7
 • 372 Interviews
Unacademy Interview Questions
3.0
 • 208 Interviews
NxtWave Interview Questions
3.8
 • 188 Interviews
Testbook.com Interview Questions
3.5
 • 101 Interviews
Skill Lync Interview Questions
3.1
 • 90 Interviews
Teachnook Interview Questions
3.1
 • 87 Interviews
LEAD School Interview Questions
3.3
 • 86 Interviews
Scaler Academy Interview Questions
3.7
 • 82 Interviews
Toppr Interview Questions
3.4
 • 65 Interviews
View all
Key Account Manager
126 salaries
unlock blur

₹2.5 L/yr - ₹9.9 L/yr

Team Lead
18 salaries
unlock blur

₹4.2 L/yr - ₹10.7 L/yr

SME
16 salaries
unlock blur

₹3 L/yr - ₹6 L/yr

Business Development Executive
13 salaries
unlock blur

₹2.4 L/yr - ₹4.8 L/yr

Data Science Intern
11 salaries
unlock blur

₹2 L/yr - ₹6 L/yr

Explore more salaries
Compare DataTrained with

Unacademy

3.0
Compare

Planet Spark

3.7
Compare

Skill Lync

3.1
Compare

NxtWave

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