Upload Button Icon Add office photos
Engaged Employer

i

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

Orbit Techsol Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Orbit Techsol SQL Server Database Administrator Interview Questions and Answers

Updated 4 Apr 2021

Orbit Techsol SQL Server Database Administrator Interview Experiences

1 interview found

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

Interview Questionnaire 

1 Question

  • Q1. Package

Interview Preparation Tips

Interview preparation tips for other job seekers - Null

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Write code on Merge sort
  • Ans. 

    Merge sort is a divide and conquer algorithm that divides the input array into two halves, recursively sorts them, and then merges the sorted halves.

    • Divide the array into two halves

    • Recursively sort each half

    • Merge the sorted halves back together

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Explain on PCA , SVM and image processing concepts
  • Ans. 

    PCA is a dimensionality reduction technique, SVM is a machine learning algorithm, and image processing involves manipulating images.

    • PCA (Principal Component Analysis) is used to reduce the dimensionality of data by finding the most important features.

    • SVM (Support Vector Machine) is a supervised machine learning algorithm used for classification and regression tasks.

    • Image processing involves techniques like filtering, s...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Tell me about your project challenges

Skills evaluated in this interview

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

Trees, Arrays, DP, Graphs, Leetcode Questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Personal Projects
  • Q2. System design interview, HP Products
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. What is Kubernetes ? why it is required? how it is different from Docker swarm?
  • Ans. 

    Kubernetes is an open-source container orchestration platform that automates the deployment, scaling, and management of containerized applications.

    • Kubernetes is required to manage and scale containerized applications efficiently.

    • It provides features like automatic scaling, self-healing, load balancing, and rolling updates.

    • Kubernetes uses a declarative approach to define the desired state of the application and ensures ...

  • Answered by AI
  • Q2. What is ECS? How it is different from EKS?
  • Ans. 

    ECS is a container management service by AWS, while EKS is a managed Kubernetes service.

    • ECS (Elastic Container Service) is a container management service provided by AWS.

    • ECS allows you to easily run and scale containerized applications on AWS.

    • EKS (Elastic Kubernetes Service) is a managed Kubernetes service by AWS.

    • EKS simplifies the process of deploying, managing, and scaling containerized applications using Kubernetes.

    • ...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Referral and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. It include basic questions regarding the framework, OOPS concepts, some behavioral questions, etc, They also asked to open a notepad and show how to create a singleton class, write a program related to cir...
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I was interviewed before Apr 2023.

Round 1 - Technical 

(1 Question)

  • Q1. Discussed on .net technologies
Round 2 - Technical 

(1 Question)

  • Q1. Discussed on dotnet technologies and lead activities
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Simple codes was asked

Round 2 - Aptitude Test 

2 aptitude questions were asked

Round 3 - HR 

(2 Questions)

  • Q1. Pointer related
  • Q2. Only 1 question was asked
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. System design round about ott
  • Q2. Leetcode rain water problem
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Mar 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 - Coding Test 

Hacker rank coding test- It was an hour test. We need to optimize the code to run in the specific time limit

Round 3 - Technical 

(2 Questions)

  • Q1. Implement Hashmap- Complete understanding of add, remove methods
  • Ans. 

    Hashmap implementation with add and remove methods

    • Hashmap is a data structure that stores key-value pairs

    • Add method adds a key-value pair to the hashmap

    • Remove method removes a key-value pair from the hashmap

    • Hash collision can occur when two keys have the same hash value

    • In case of collision, separate chaining or open addressing can be used

  • Answered by AI
  • Q2. Design elevators - How would you design how elevators work. How do you add different roles etc.
  • Ans. 

    Designing elevators and adding different roles.

    • Design a system that can handle multiple elevators and floors

    • Implement a scheduling algorithm to optimize elevator usage

    • Add roles such as maintenance, emergency, and security

    • Incorporate safety features such as emergency stop buttons and sensors

    • Consider accessibility for individuals with disabilities

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Work on DS algo. They work on the approach rather than the implementation. Be clear on what you think or what is expected.

Skills evaluated in this interview

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 May 2024. There was 1 interview round.

Round 1 - Technical 

(10 Questions)

  • Q1. A scenario to create a new Android service
  • Ans. 

    Creating a new Android service

    • Define a class that extends Service class

    • Override onStartCommand() method to handle service logic

    • Register the service in AndroidManifest.xml file

  • Answered by AI
  • Q2. 2 puzzles. one was to find min no of weighs to find faulty item among 8 items and the other one was to min no of races required to find top three horses among 25 horses
  • Q3. How to manage gralloc buffers
  • Ans. 

    Managing gralloc buffers involves allocating, locking, and freeing memory for graphics rendering in Android.

    • Allocate gralloc buffer using gralloc_alloc() function

    • Lock buffer for reading or writing using gralloc_lock() function

    • Free buffer using gralloc_free() function

    • Example: gralloc_alloc(usage, width, height, format, &handle)

    • Example: gralloc_lock(handle, usage, left, top, width, height, &vaddr)

  • Answered by AI
  • Q4. What is HIDL vs AIDL
  • Ans. 

    HIDL stands for Hardware Interface Definition Language and is used for communication between HAL and framework. AIDL stands for Android Interface Definition Language and is used for inter-process communication in Android.

    • HIDL is used for communication between Hardware Abstraction Layer (HAL) and framework in Android

    • AIDL is used for inter-process communication in Android

    • HIDL is more efficient and faster than AIDL

  • Answered by AI
  • Q5. How Android buffers are passed from application to drivers.
  • Ans. 

    Android buffers are passed from application to drivers through shared memory and buffer queues.

    • Android applications communicate with drivers through the HAL (Hardware Abstraction Layer)

    • Buffers are typically passed using shared memory regions

    • Buffer queues are used to manage the flow of data between application and driver

    • Example: Camera application passing image data to camera driver for processing

  • Answered by AI
  • Q6. What happens if LINUX faces a hardware interrupt
  • Ans. 

    When LINUX faces a hardware interrupt, it stops executing the current code and jumps to a specific interrupt handler.

    • LINUX stops executing the current code and jumps to a specific interrupt handler

    • The interrupt handler processes the interrupt and resumes normal execution afterwards

    • Different hardware interrupts are handled by different interrupt handlers

  • Answered by AI
  • Q7. What is the challenge while creating multiple services in Android
  • Ans. 

    The challenge while creating multiple services in Android is managing communication between services and ensuring proper synchronization.

    • Managing communication between services can be complex and error-prone.

    • Ensuring proper synchronization between services to avoid race conditions and data inconsistencies.

    • Handling dependencies between services and coordinating their interactions.

    • Testing and debugging multiple services ...

  • Answered by AI
  • Q8. Boot up Android sequence
  • Ans. 

    The Android boot up sequence involves several stages including power on, bootloader, kernel initialization, system server startup, and app launch.

    • Power on the device

    • Bootloader loads the Android OS kernel

    • Kernel initializes the system and drivers

    • System server starts up and launches essential services

    • Apps are launched and user interface becomes accessible

  • Answered by AI
  • Q9. Describe about Permission files/SE Linux policy
  • Ans. 

    Permission files/SE Linux policy control access to resources based on rules set by administrators.

    • Permission files define who can access a file or directory and what actions they can perform.

    • SE Linux policy is a security mechanism that enforces rules on how processes interact with resources.

    • SE Linux policy is based on labels assigned to processes and resources, determining access permissions.

    • SE Linux policy can be cust...

  • Answered by AI
  • Q10. What is manifestation file and how is it used?
  • Ans. 

    A manifestation file is a configuration file used to define the properties and settings of a software application.

    • Manifestation files typically include information such as the application's name, version, dependencies, and permissions.

    • They are commonly used in software development to ensure that the application runs correctly and has access to necessary resources.

    • Examples of manifestation files include AndroidManifest....

  • Answered by AI

Skills evaluated in this interview

Tell us how to improve this page.

Interview Questions from Similar Companies

Cognizant Interview Questions
3.7
 • 5.6k Interviews
Nagarro Interview Questions
4.0
 • 759 Interviews
Publicis Sapient Interview Questions
3.5
 • 614 Interviews
GlobalLogic Interview Questions
3.6
 • 584 Interviews
Samsung Interview Questions
3.9
 • 545 Interviews
View all

Orbit Techsol SQL Server Database Administrator Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Network Engineer
83 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

System Engineer
52 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Desktop Support Engineer
45 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Network Security Engineer
24 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

System Administrator
22 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Orbit Techsol with

Dell

4.0
Compare

HP India

4.1
Compare

Lenovo

4.2
Compare

Acer India

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