Upload Button Icon Add office photos

Filter interviews by

Total IT Solutions Desktop Support Engineer Interview Questions and Answers for Freshers

Updated 3 Jul 2021

Total IT Solutions Desktop Support Engineer Interview Experiences for Freshers

1 interview found

Interview Questionnaire 

4 Questions

  • Q1. What is dns?
  • Ans. 

    DNS stands for Domain Name System. It is a decentralized naming system that translates domain names into IP addresses.

    • DNS is used to resolve domain names to their corresponding IP addresses.

    • It helps in the efficient routing of internet traffic by translating human-readable domain names into machine-readable IP addresses.

    • DNS operates through a hierarchical structure of servers, including authoritative DNS servers, recur...

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

    A gateway is a network node that serves as an access point to another network.

    • A gateway acts as a bridge between different networks, allowing communication between them.

    • It can be a hardware device or a software program.

    • Gateways are used to connect local networks to the internet.

    • They can also provide security features like firewall protection.

    • Examples of gateways include routers, modems, and proxy servers.

  • Answered by AI
  • Q3. What is topology?
  • Ans. 

    Topology refers to the physical or logical arrangement of network devices and their interconnections.

    • It determines how data flows through a network.

    • Common topologies include bus, star, ring, and mesh.

    • Topology affects network performance, scalability, and fault tolerance.

    • Physical topology refers to the actual layout of devices, while logical topology refers to the way data flows.

    • Hybrid topologies combine multiple types ...

  • Answered by AI
  • Q4. Network topology refers to the physical or logical Layout of the network.।

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
6d (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 Total IT Solutions?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Campus Placement and was interviewed before Aug 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. It was mostly puzzles.
  • Q2. One algo question invoving recursive function .
  • Ans. 

    Recursive functions solve problems by breaking them down into smaller subproblems, often leading to elegant solutions.

    • A recursive function calls itself with modified parameters.

    • Base case is crucial to prevent infinite recursion.

    • Example: Factorial function - factorial(n) = n * factorial(n-1) with base case factorial(0) = 1.

    • Example: Fibonacci sequence - fib(n) = fib(n-1) + fib(n-2) with base cases fib(0) = 0, fib(1) = 1.

    • ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - For freshers - prepare puzzles and basic computer science fundamentals

Desktop Support Engineer Interview Questions Asked at Other Companies for Fresher

Q1. 1) What is Difference between shared printer and network printer?
Q2. What are common technical issues encountered in Desktop Support E ... read more
Q3. What's the difference types of mailboxes in Microsoft 365 and use ... read more
Q4. What is domain controller how to configure and how to add client ... read more
Q5. What is Ram? What is HDD.?? What is Motherboard??? How we connect ... read more

Interview Questionnaire 

1 Question

  • Q1. Conceps

Interview Questionnaire 

1 Question

  • Q1. Concepts

Interview Questionnaire 

1 Question

  • Q1. Concepts

Interview Questionnaire 

4 Questions

  • Q1. Basics of spring
  • Q2. Basics of angular
  • Q3. About the project
  • Q4. Scenario based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - be prepared with baiscs and be strong in fundamentals
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

It was easy and basic coding questions like array list, rest services, etc.

Round 2 - HR 

(1 Question)

  • Q1. Introduction, salary discussion, etc.
Are these interview questions helpful?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Sep 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. JAVA related questions
  • Q2. Different frameworks like spring springboot
  • Ans. 

    Spring and Spring Boot are popular Java frameworks used for building enterprise applications.

    • Spring is a comprehensive framework that provides support for various functionalities like dependency injection, aspect-oriented programming, and transaction management.

    • Spring Boot is an opinionated framework built on top of Spring, which simplifies the setup and configuration of Spring applications by providing defaults for co...

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Coding Test 

Median level coding round

Round 2 - Group Discussion 

Speak to given topic for 2 mins

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

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

  • Q1. Design a multi tenant logging system
  • Ans. 

    A multi-tenant logging system captures logs from multiple clients while ensuring data isolation and security.

    • Use a centralized logging service (e.g., ELK stack) to aggregate logs from different tenants.

    • Implement tenant identification in log entries (e.g., using tenant IDs or namespaces).

    • Ensure data isolation by using separate indices or databases for each tenant in the logging system.

    • Provide role-based access control (...

  • Answered by AI
  • Q2. DSA 3 - sum problem
  • Ans. 

    The sum problem involves finding combinations of numbers that add up to a target value.

    • Identify the target sum and the array of numbers.

    • Use techniques like recursion, backtracking, or dynamic programming.

    • Example: Given [2, 3, 5] and target 8, combinations are [3, 5] and [2, 3, 3].

    • Consider edge cases like empty arrays or negative numbers.

  • Answered by AI
  • Q3. What is event loop?
  • Ans. 

    The event loop is a programming construct that manages asynchronous operations in environments like JavaScript.

    • The event loop allows non-blocking I/O operations, enabling efficient handling of multiple tasks.

    • It works by continuously checking the call stack and the message queue.

    • When the call stack is empty, the event loop pushes the first message from the queue to the stack for execution.

    • Example: In JavaScript, setTime...

  • Answered by AI
  • Q4. Difference between cluster and worker threads
  • Ans. 

    Cluster threads manage multiple processes, while worker threads execute tasks within a single process.

    • Cluster threads are used in distributed systems to manage multiple nodes.

    • Worker threads operate within a single application, handling tasks concurrently.

    • Example of cluster threads: Node.js cluster module for scaling applications.

    • Example of worker threads: Java's ExecutorService for managing thread pools.

  • Answered by AI
  • Q5. Why node js is single threaded
  • Ans. 

    Node.js is single-threaded to handle asynchronous operations efficiently, using an event-driven architecture for scalability.

    • Node.js uses a single-threaded event loop to manage multiple connections concurrently.

    • This design allows Node.js to handle I/O operations without blocking the main thread.

    • For example, while waiting for a database query, Node.js can process other requests.

    • Single-threading simplifies the programmin...

  • Answered by AI

Total IT Solutions Interview FAQs

What are the top questions asked in Total IT Solutions Desktop Support Engineer interview for freshers?

Some of the top questions asked at the Total IT Solutions Desktop Support Engineer interview for freshers -

  1. What is dn...read more
  2. What is gatewa...read more
  3. What is topolog...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

GAO Tek Interview Questions
4.4
 • 277 Interviews
Bhanzu Interview Questions
3.9
 • 152 Interviews
Tutopia Interview Questions
4.2
 • 150 Interviews
BCD Travel Interview Questions
4.3
 • 113 Interviews
View all
Total IT Solutions Desktop Support Engineer Salary
based on 14 salaries
₹1.5 L/yr - ₹2.5 L/yr
37% less than the average Desktop Support Engineer Salary in India
View more details

Total IT Solutions Desktop Support Engineer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

3.0

Skill development

3.0

Work-life balance

3.0

Salary

5.0

Job security

5.0

Company culture

3.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Desktop Support Engineer
14 salaries
unlock blur

₹1.5 L/yr - ₹2.5 L/yr

Senior Accountant
4 salaries
unlock blur

₹3.2 L/yr - ₹4.6 L/yr

Executive Accountant
4 salaries
unlock blur

₹1.9 L/yr - ₹3 L/yr

Regional Manager
3 salaries
unlock blur

₹12 L/yr - ₹14 L/yr

Accounts & Finance Manager
3 salaries
unlock blur

₹6 L/yr - ₹9 L/yr

Explore more salaries
Compare Total IT Solutions with

Reliance Communications

4.0
Compare

ZF Steering Gear

3.7
Compare

Dhoot Transmission

3.7
Compare

Genius Consultants

3.7
Compare
write
Share an Interview