Upload Button Icon Add office photos
Engaged Employer

i

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

IT By Design Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

IT By Design IT System Administrator Interview Questions and Answers

Updated 16 Jan 2025

IT By Design IT System Administrator Interview Experiences

1 interview found

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jan 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What AAD? What is wsb
  • Ans. 

    AAD stands for Azure Active Directory. WSB stands for Windows Server Backup.

    • AAD is a cloud-based identity and access management service provided by Microsoft.

    • WSB is a feature in Windows Server that provides backup and recovery options for Windows servers.

    • AAD can be used for single sign-on, multi-factor authentication, and user provisioning.

    • WSB allows for full server backups, scheduled backups, and recovery of individua...

  • Answered by AI
  • Q2. What is dns
  • Ans. 

    DNS stands for Domain Name System, which translates domain names to IP addresses.

    • DNS is like a phone book for the internet, translating human-readable domain names (like google.com) to IP addresses (like 172.217.3.206).

    • It helps users access websites and other online services by resolving domain names to their corresponding IP addresses.

    • DNS also helps in load balancing, failover, and security by directing traffic to the...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare and appear for Interview

Top trending discussions

View All
Interview Tips & Stories
2w
timepasstiwari
·
A Digital Markter
ChatGPT prepped me HARD for my interview!
Spent like two hours on chatgpt yesterday prepping for an interview. First, the usual, copy-pasted my resume and the job description, telling it to "upload this to your memory 'cause we are going to talk about it later". Then I grilled it with questions about stuff I didn't get in the job spec, and chatgpt helped me figure things out. I asked it to list the four or five key things they are looking for in the role. Then I told chatgpt to quiz me with ten questions, one at a time, to help me think about how I have gained experience in those areas. After the ten questions, it gave me strengths/weaknesses and a summary. Finally, I had chatgpt summarize each of my answers into three bullet points. Now have got a list of stories ready to go for any interview. No matter the question, I can steer the convo toward one of these success stories.
Got a question about IT By Design?
Ask anonymously on communities.

Interview questions from similar companies

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. How much salary accept?
  • Q2. What is date of joining?

Interview Preparation Tips

Interview preparation tips for other job seekers - Good and nice.

IT System Administrator Interview Questions Asked at Other Companies

Q1. Will you be able to manage the whole IT infrastructure single-han ... read more
asked in LivSpace
Q2. What is VMware, and what are its primary functions and applicatio ... read more
Q3. What would be your strategy to take the IT infrastructure to the ... read more
Q4. What servers and network switches have you worked with?
Q5. How can this company restrict users' computer access?

I applied via Naukri.com and was interviewed before Apr 2021. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Basics of python, project related questions
  • Q2. Basic SQL, few simple problem solving questions
Round 2 - HR 

(2 Questions)

  • Q1. Interests, hobbies ,general HR questions
  • Q2. Expected hike, salary, work timings preferred

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared for basic python and sql.

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

Interview Questionnaire 

3 Questions

  • Q1. SQL window functions
  • Q2. Basic SQL queries
  • Q3. Basic Power BI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be kind and humble and don't cheat. The interview will be a cup of cake if you even have some decent experience. Just get your basic right. There won't be much scenarios and coding questions

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

Interview Questionnaire 

5 Questions

  • Q1. Given an input string "neeraj chopra" Write Python code to get output string as "jareen arpohc".
  • Ans. 

    The Python code to get the output string as 'jareen arpohc' from the input string 'neeraj chopra' is provided.

    • Split the input string into individual words

    • Reverse each word

    • Join the reversed words with a space in between

  • Answered by AI
  • Q2. Given a list of 10 numbers. Write a code to list only even numbers out of the original list.
  • Ans. 

    Code to list even numbers from a given list of 10 numbers.

    • Loop through the list of numbers

    • Check if each number is even using the modulo operator

    • If the number is even, add it to a new list of even numbers

    • Return the new list of even numbers

  • Answered by AI
  • Q3. SQL queries using Window Functions Rank() , Dense Rank() etc
  • Q4. Reversal of string in python code
  • Ans. 

    Reversing a string in Python code

    • Use slicing to reverse the string

    • Use the built-in function 'reversed()'

    • Convert the string to a list, reverse it, and then join it back to a string

  • Answered by AI
  • Q5. SQL queries in general.

Interview Preparation Tips

Interview preparation tips for other job seekers - There is hiring surge in the company so one should go for it .
Basic Python , SQL knowledge is enough to crack the interviews.

Skills evaluated in this interview

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

Round 1 - Coding Test 

If you are a fresher , then this is for you else almost no coding test for experienced candidates.

Round 2 - One-on-one 

(1 Question)

  • Q1. Javascript basics, Angular react general questions depends upon profile.
Round 3 - Behavioral 

(1 Question)

  • Q1. They asked general questions related to some hectic situation faced in previous company / project..

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm . Clear your basics . That's it.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before May 2024, where I was asked the following questions.

  • Q1. What is the difference between the == operator and the .equals() method in Java?
  • Ans. 

    In Java, '==' checks reference equality, while '.equals()' checks logical equality of object content.

    • Reference Equality: '==' compares memory addresses, checking if two references point to the same object. Example: 'a == b'.

    • Logical Equality: '.equals()' compares the actual content of objects. Example: 'a.equals(b)' checks if 'a' and 'b' are logically equivalent.

    • Default Behavior: The default implementation of '.equals()...

  • Answered by AI
  • Q2. How does Java manage memory?
  • Ans. 

    Java manages memory through automatic garbage collection, heap allocation, and stack management for efficient resource utilization.

    • Heap Memory: Java allocates memory for objects in the heap, which is shared among all threads, allowing dynamic memory allocation.

    • Stack Memory: Local variables and method calls are stored in the stack, which is managed in a last-in, first-out manner, ensuring quick access.

    • Garbage Collection...

  • Answered by AI
Are these interview questions helpful?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - Coding Test 

2 medium hard level questions. We just have to code and explain it. Platform doesn't have compilers.

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

(3 Questions)

  • Q1. Given an array Reverse array
  • Q2. Giaven a string Reverse string
  • Q3. Given array find sum of all elements

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA well

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 before Oct 2023.

Round 1 - Coding Test 

Good Knowledge of DSA is required

IT By Design Interview FAQs

How many rounds are there in IT By Design IT System Administrator interview?
IT By Design interview process usually has 1 rounds. The most common rounds in the IT By Design interview process are One-on-one Round.
What are the top questions asked in IT By Design IT System Administrator interview?

Some of the top questions asked at the IT By Design IT System Administrator interview -

  1. What AAD? What is ...read more
  2. What is ...read more

Tell us how to improve this page.

Overall Interview Experience Rating

1/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

Affine Interview Questions
3.3
 • 51 Interviews
ConsultAdd Interview Questions
3.6
 • 37 Interviews
JMR Infotech Interview Questions
4.2
 • 33 Interviews
Systems Plus Interview Questions
4.3
 • 30 Interviews
VDart Interview Questions
4.0
 • 29 Interviews
Techouts Interview Questions
3.7
 • 29 Interviews
View all
IT By Design IT System Administrator Salary
based on 5 salaries
₹7 L/yr - ₹7.8 L/yr
23% more than the average IT System Administrator Salary in India
View more details

IT By Design IT System Administrator Reviews and Ratings

based on 1 review

2.0/5

Rating in categories

2.0

Skill development

2.0

Work-life balance

1.0

Salary

2.0

Job security

2.0

Company culture

2.0

Promotions

2.0

Work satisfaction

Explore 1 Review and Rating
Senior System Administrator
416 salaries
unlock blur

₹5 L/yr - ₹14 L/yr

System Administrator
285 salaries
unlock blur

₹3 L/yr - ₹9.1 L/yr

Advanced System Administrator
105 salaries
unlock blur

₹7 L/yr - ₹15 L/yr

System Engineer
23 salaries
unlock blur

₹2.9 L/yr - ₹12 L/yr

Service Coordinator
11 salaries
unlock blur

₹4.3 L/yr - ₹6 L/yr

Explore more salaries
Compare IT By Design with

JoulestoWatts Business Solutions

3.0
Compare

Value Point Systems

3.6
Compare

Saama Technologies

3.7
Compare

Systems Plus

4.3
Compare
write
Share an Interview