Upload Button Icon Add office photos

Filter interviews by

Xetech Interview Questions and Answers

Updated 11 Oct 2024

Xetech Interview Experiences

Popular Designations

6 interviews found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. About lead generation experience
  • Q2. Lead generation queries

Business Development Executive Interview Questions asked at other Companies

Q1. scenario based: if I am a teacher in a government school and my child is getting +90% marks, then why should i buy byjus course
View answer (14)
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is clustered and non clustered index in SQL
  • Ans. 

    Clustered index physically reorders the data in the table while non-clustered index creates a separate structure.

    • Clustered index determines the physical order of data in the table, while non-clustered index does not.

    • A table can have only one clustered index but multiple non-clustered indexes.

    • Clustered index is faster for retrieval of data but slower for insert and update operations.

    • Non-clustered index is slower for ret...

  • Answered by AI

Skills evaluated in this interview

Top Xetech Software Developer Interview Questions and Answers

Q1. Can you explain the steps to enable JWT Authentication in ASP Core Web API with Roles?
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Redux in react native and saga
  • Ans. 

    Redux is a state management tool for React Native, while Saga is a middleware for handling side effects.

    • Redux is used to manage the state of the application in a predictable way.

    • Saga is used to handle side effects like asynchronous calls and impure functions.

    • Redux and Saga are often used together in React Native applications to manage state and side effects efficiently.

  • Answered by AI

Skills evaluated in this interview

Mobile Application Developer Interview Questions asked at other Companies

Q1. How to handle the huge number of concurrent HTTP requests of orders for the same item? What if there is only one item left in the stock?
View answer (1)

Software Developer Interview Questions & Answers

user image Balwant Singh

posted on 22 Jul 2023

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

I applied via Indeed and was interviewed before Jul 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(17 Questions)

  • Q1. What is ASP Dot Net Core?
  • Ans. 

    ASP.NET Core is a cross-platform, high-performance framework for building modern, cloud-based, internet-connected applications.

    • Cross-platform framework for building web applications

    • High-performance and scalable

    • Supports cloud-based and internet-connected applications

    • Open-source and actively maintained by Microsoft

    • Modular design for flexibility and extensibility

  • Answered by AI
  • Q2. What are the key features of ASP Dot Net CORE?
  • Ans. 

    Key features of ASP Dot Net CORE include cross-platform support, high performance, and modularity.

    • Cross-platform support allows developers to build and run applications on Windows, macOS, and Linux.

    • High performance achieved through features like a new lightweight and modular HTTP request pipeline.

    • Modularity enables developers to include only the necessary components in their applications, reducing the overall size and ...

  • Answered by AI
  • Q3. Explain the Use of Entity Framework Core
  • Ans. 

    Entity Framework Core is an ORM framework that allows developers to work with databases using .NET applications.

    • Entity Framework Core is an Object-Relational Mapping (ORM) framework for .NET applications.

    • It allows developers to work with databases using .NET objects and LINQ queries.

    • EF Core supports various database providers such as SQL Server, SQLite, MySQL, etc.

    • It simplifies data access and persistence by handling d...

  • Answered by AI
  • Q4. Write an SQL Query to remove duplicate records
  • Ans. 

    Use the DISTINCT keyword in an SQL query to remove duplicate records.

    • Use the SELECT DISTINCT statement to retrieve unique records.

    • Identify the columns that should be used to determine uniqueness.

    • Consider using GROUP BY clause with aggregate functions if needed.

  • Answered by AI
  • Q5. What are the Differences between Joins and Sub Queries
  • Ans. 

    Joins are used to combine rows from two or more tables based on a related column, while subqueries are nested queries used to return data for the main query.

    • Joins are used to retrieve data from multiple tables based on a related column

    • Subqueries are nested queries within a main query to return data for the main query

    • Joins are typically more efficient than subqueries for large datasets

    • Joins can be of different types lik...

  • Answered by AI
  • Q6. What are the Differences between Views, Procedures, and Functions
  • Ans. 

    Views are virtual tables, procedures are reusable code blocks, functions return values

    • Views are virtual tables that display data from one or more tables

    • Procedures are reusable code blocks that can be called multiple times

    • Functions return a single value based on input parameters

    • Views are read-only, while procedures and functions can modify data

    • Examples: View - SELECT * FROM employees_view; Procedure - EXECUTE get_employ...

  • Answered by AI
  • Q7. Difference between the Code First and Database First Approach
  • Ans. 

    Code First: Develop database from code. Database First: Generate code from existing database.

    • Code First: Focus on code design and then generate database schema.

    • Database First: Focus on existing database schema and generate code classes.

    • Code First: More control over database design and relationships.

    • Database First: Faster development for existing databases.

    • Code First: Entity Framework Code First approach.

    • Database First:

  • Answered by AI
  • Q8. How to connect SQL to ASP Core Web API
  • Ans. 

    To connect SQL to ASP Core Web API, you need to configure a database connection in the API project.

    • Configure a connection string in the appsettings.json file of the API project.

    • Install Entity Framework Core package in the API project.

    • Create a DbContext class that inherits from DbContext and represents the database.

    • Use dependency injection to inject the DbContext into the API controllers.

  • Answered by AI
  • Q9. What is Dependency Injection and how to achieve it
  • Ans. 

    Dependency Injection is a design pattern where the dependencies of an object are provided externally rather than created within the object itself.

    • Dependencies are injected into a class through constructor injection, setter injection, or interface injection.

    • This helps in achieving loose coupling between classes and makes the code more testable and maintainable.

    • Example: Instead of creating an instance of a dependency wit...

  • Answered by AI
  • Q10. Explain the use of LINQ in C#
  • Ans. 

    LINQ (Language Integrated Query) is a feature in C# that allows for querying data from different data sources using a uniform syntax.

    • LINQ allows for querying data from collections, databases, XML, and more.

    • It provides a set of standard query operators like Where, Select, OrderBy, etc.

    • LINQ queries are written in a declarative syntax similar to SQL.

    • Example: var result = from num in numbers where num % 2 == 0 select num;

  • Answered by AI
  • Q11. Can you explain the steps to enable JWT Authentication in ASP Core Web API with Roles?
  • Ans. 

    Enable JWT Authentication in ASP Core Web API with Roles

    • Install the required NuGet packages like Microsoft.AspNetCore.Authentication.JwtBearer

    • Configure JWT authentication in Startup.cs file

    • Add authentication middleware in Configure method

    • Implement role-based authorization using policies and attributes

  • Answered by AI
  • Q12. Explain different ways to optimize SQL Queries
  • Ans. 

    Optimizing SQL queries involves using indexes, minimizing data retrieval, and avoiding unnecessary joins.

    • Use indexes on columns frequently used in WHERE clauses

    • Minimize data retrieval by selecting only necessary columns

    • Avoid unnecessary joins by using EXISTS or IN clauses instead of JOINs

  • Answered by AI
  • Q13. How to efficiently retrieve SQL records in case a table has millions of records
  • Ans. 

    Use indexing, limit the columns retrieved, optimize queries, use pagination

    • Create indexes on columns frequently used in queries

    • Limit the columns retrieved to only those needed

    • Optimize queries by using WHERE clauses and avoiding SELECT *

    • Implement pagination to retrieve records in smaller chunks

  • Answered by AI
  • Q14. Explain the use and types of Indexing in SQL
  • Ans. 

    Indexing in SQL is used to improve the performance of queries by creating a data structure that allows for faster retrieval of data.

    • Types of indexing include clustered and non-clustered indexes

    • Clustered indexes physically order the data in the table based on the index key

    • Non-clustered indexes create a separate data structure that includes the indexed columns and a pointer to the actual data

    • Indexes can be created on sin...

  • Answered by AI
  • Q15. How much experience do have as ASP Core Web API and ReactJs Developer?
  • Ans. 

    I have 3 years of experience as an ASP Core Web API and ReactJs Developer.

    • 3 years of experience in ASP Core Web API development

    • Proficient in ReactJs development

    • Developed multiple projects using ASP Core Web API and ReactJs

  • Answered by AI
  • Q16. Explain the difference between States and Props
  • Ans. 

    States are mutable data managed within a component, while Props are immutable data passed from parent to child components.

    • States are managed within a component and can be changed by the component itself

    • Props are passed from parent to child components and cannot be changed by the child component

    • States are used for internal component data management, while Props are used for passing data from parent to child components

  • Answered by AI
  • Q17. What is the difference between Context API and Redux?
  • Ans. 

    Context API is a built-in feature in React for managing global state, while Redux is a standalone library for state management.

    • Context API is built into React, while Redux is a separate library.

    • Context API is primarily used for managing global state in a React application.

    • Redux provides a centralized store for managing state across the application.

    • Context API is simpler to use for smaller applications, while Redux is m...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Your interview was great, what is your expected CTC

Interview Preparation Tips

Topics to prepare for Xetech Software Developer interview:
  • React.Js
  • C#
  • dot net core
  • SQL
Interview preparation tips for other job seekers - Prepare Basics Concepts about Programming, Build a Small scale Project that consumes Web API and Front End Concepts well with JWT Authentications, and Practice SQL well because the big software is database driven

Skills evaluated in this interview

Top Xetech Software Developer Interview Questions and Answers

Q1. Can you explain the steps to enable JWT Authentication in ASP Core Web API with Roles?
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)

Xetech interview questions for popular designations

 Software Developer

 (3)

 Mobile Application Developer

 (1)

 Business Development Executive

 (1)

 Software Developer Trainee

 (1)

I applied via Approached by Company and was interviewed in Dec 2021. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Telephonic Call 

(4 Questions)

  • Q1. Introduce yourself in brief.
  • Q2. Tell me about your internship (as you mentioned in your resume) in detail.
  • Q3. Can you comfortable to relocate here?
  • Q4. What is your salary expectations?
Round 3 - Technical 

(9 Questions)

  • Q1. What is typecasting and its types?
  • Ans. 

    Typecasting is the process of converting one data type to another data type in programming.

    • Typecasting is also known as type conversion.

    • There are two types of typecasting: implicit and explicit.

    • Implicit typecasting is done automatically by the compiler.

    • Explicit typecasting is done manually by the programmer.

    • Examples of typecasting include converting an integer to a float or a string to an integer.

  • Answered by AI
  • Q2. How do you handle exceptions in java?
  • Ans. 

    Exceptions in Java are handled using try-catch blocks.

    • Exceptions are thrown when an error occurs during runtime.

    • The try block contains the code that may throw an exception.

    • The catch block catches the exception and handles it.

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

    • The finally block is executed regardless of whether an exception is thrown or not.

  • Answered by AI
  • Q3. What are the different OOPS principles?
  • Ans. 

    OOPS principles are the basic concepts of Object-Oriented Programming that help in designing and implementing software solutions.

    • Abstraction - hiding implementation details

    • Encapsulation - binding data and functions together

    • Inheritance - reusing code and creating new classes from existing ones

    • Polymorphism - using a single interface to represent multiple types

    • Composition - combining objects to create more complex ones

  • Answered by AI
  • Q4. Why java doesn't support multiple inheritance?
  • Ans. 

    Java doesn't support multiple inheritance to avoid the diamond problem.

    • Java supports multiple interface inheritance.

    • Diamond problem occurs when two superclasses have a common method.

    • Java uses interfaces to achieve multiple inheritance.

    • C++ supports multiple inheritance but requires virtual inheritance to avoid the diamond problem.

  • Answered by AI
  • Q5. How a java program compiles and run?
  • Ans. 

    Java program compiles into bytecode which is executed by JVM.

    • Java code is written in .java files

    • Compiler converts .java files into .class files containing bytecode

    • JVM executes the bytecode

    • JVM provides platform independence

    • Java programs can be run on any platform with JVM installed

  • Answered by AI
  • Q6. Where are the objects getting a memory in java?
  • Ans. 

    Objects get memory in Java from the heap memory.

    • Java uses heap memory to allocate memory to objects.

    • The heap memory is managed by the JVM.

    • Objects are created using the 'new' keyword.

    • The memory allocated to an object is released by the garbage collector when it is no longer in use.

  • Answered by AI
  • Q7. What is a reference variable in java?
  • Ans. 

    A reference variable in Java is a variable that holds the memory address of an object.

    • Reference variables are used to access the methods and properties of an object.

    • They are declared using the class name followed by the variable name.

    • They can be assigned null or an object of the declared class or its subclasses.

    • They are passed by value, but the value is the memory address of the object.

    • Example: String str = new String(

  • Answered by AI
  • Q8. Can we keep the reference variable of a parent class in the object of a child class?
  • Ans. 

    Yes, we can keep the reference variable of a parent class in the object of a child class.

    • This is possible because a child class is a type of parent class and can inherit its properties and methods.

    • This allows for polymorphism, where a parent class reference variable can refer to an object of a child class.

    • For example, if we have a parent class Animal and a child class Dog, we can create an object of Dog and assign it t

  • Answered by AI
  • Q9. What is upcasting and downcasting?
  • Ans. 

    Upcasting is converting a derived class object to its base class type. Downcasting is the opposite.

    • Upcasting is safe and implicit

    • Downcasting is explicit and may cause runtime errors

    • Upcasting can be used for polymorphism

    • Downcasting is used to access derived class specific members

    • Example: Animal a = new Dog(); // upcasting

    • Example: Dog d = (Dog) a; // downcasting

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Xetech Software Developer Trainee interview:
  • Core Java
  • C
  • OOPS
Interview preparation tips for other job seekers - Don't feel nervous.
Have faith in yourself.
Don't just keep blabering, think for a second and only answer that which is asked from you.
Keep it straight if you don't know the answer, don't waste time of the interviewer.

Skills evaluated in this interview

Top Xetech Software Developer Trainee Interview Questions and Answers

Q1. Can we keep the reference variable of a parent class in the object of a child class?
View answer (1)

Software Developer Trainee Interview Questions asked at other Companies

Q1. 1. Tell me about your self 2. Difference Between c & c++. 3. what is class? 4. what is object? 5. what is polymorphism? types of polymorphism explain real example of polymorphism. 6. what is inheritence? Difference between multiple &amp... read more
View answer (2)

I applied via AmbitionBox and was interviewed before May 2021. There were 2 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 - Technical 

(2 Questions)

  • Q1. What are the design patten we use in iOS?
  • Ans. 

    iOS design patterns include MVC, MVVM, Singleton, Factory, and Observer.

    • MVC separates data, view, and controller logic

    • MVVM adds a view model to handle data binding

    • Singleton ensures only one instance of a class exists

    • Factory creates objects without exposing the creation logic

    • Observer allows objects to be notified of changes in other objects

  • Answered by AI
  • Q2. Concurrency programing

Interview Preparation Tips

Topics to prepare for Xetech Software Developer interview:
  • Objective C
  • OOPS
  • Swift
Interview preparation tips for other job seekers - Read the job requirements and prepare well with the basics, communication should be better.

Skills evaluated in this interview

Top Xetech Software Developer Interview Questions and Answers

Q1. Can you explain the steps to enable JWT Authentication in ASP Core Web API with Roles?
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)

Jobs at Xetech

View all

Interview questions from similar companies

Interview Preparation Tips

Round: Test
Experience: Apti was quite easy . In Basic CS concepts software engineering is prominent.
Tips: Brush up Software Engineering before written test
Duration: 90 minutes
Total Questions: 50

College Name: NIT BHOPAL

I appeared for an interview before Aug 2016.

Interview Preparation Tips

Round: General and technical aptitude
Experience: There were questions on basics of programming and general questions on verbal,reasoning and quantitative.
Tips: Time will be short to answer all so keep watch on time

Round: Group Discussion
Experience: They segregated us in to batches and in our team there were 10 members.
Tips: Easy round
Duration: 15 minutes

Round: Telephonic
Experience: They tested my communication skill in that round

College Name: Dhanalakshmi college of engineering

I appeared for an interview in Apr 2017.

Interview Questionnaire 

2 Questions

  • Q1. Java questions...
  • Q2. Tell me about urself and about us family and all
  • Ans. 

    I am a software developer with a passion for coding and problem-solving. My family is supportive and has always encouraged my career in tech.

    • Experienced software developer

    • Passionate about coding and problem-solving

    • Supportive family that encourages my career in tech

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Easy questions are there
Duration: 1 hour
Total Questions: 90

Round: Group Discussion
Experience: 12 members are there only 9 got selected
Tips: Be confident in urself and specially work in Communication skills
Duration: 15 minutes

Round: Technical Interview
Experience: Asking all the concepts of Java like oops collections threads
Tips: Prepare well on Java

Round: HR Interview
Experience: Everything was Gud but due to my certificate problem I got rejected.. Otherwise everything is good.
Tips: Be confident

College Name: C. V. Raman College of Engineering

I appeared for an interview before Mar 2021.

Round 1 - Face to Face 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

This was an easy round which went really smooth.

  • Q1. 

    Nth Fibonacci Number Problem Statement

    Calculate the Nth term in the Fibonacci sequence, where the sequence is defined as follows: F(n) = F(n-1) + F(n-2), with initial conditions F(1) = F(2) = 1.

    Input:

    ...
  • Ans. 

    Calculate the Nth Fibonacci number efficiently using dynamic programming.

    • Use dynamic programming to store previously calculated Fibonacci numbers to avoid redundant calculations.

    • Start with base cases F(1) and F(2) as 1, then iteratively calculate F(n) using F(n-1) and F(n-2).

    • Ensure the input N is within the constraints 1 <= N <= 10000.

    • Example: For N = 5, the 5th Fibonacci number is 5 (1, 1, 2, 3, 5).

  • Answered by AI
  • Q2. 

    Prime Numbers Problem Statement

    Given a positive integer N, your task is to determine and return all prime numbers less than or equal to N.

    Input:

    N = 10

    Output:

    2 3 5 7

    Example:

    Input:
    N = 20
    Out...
  • Ans. 

    Implement a function to return all prime numbers less than or equal to a given positive integer N.

    • Create a function that takes a positive integer N as input

    • Iterate from 2 to N and check if each number is prime

    • Use a helper function to determine if a number is prime

    • Return an array of all prime numbers less than or equal to N

  • Answered by AI
  • Q3. What is a merge join in SQL?
  • Ans. 

    A merge join in SQL is a method of combining two sorted datasets by matching corresponding rows based on a specified condition.

    • Merge join is used when joining two large datasets that are already sorted.

    • It is more efficient than other join methods like nested loop join or hash join for sorted datasets.

    • The join condition must be an equality condition.

    • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.id = table2.i

  • Answered by AI
Round 2 - HR 

Round duration - 30 minutes
Round difficulty - Easy

The round went excellent. I really enjoyed it. Just be confident about whatever you answer

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPALarsen & Toubro Infotech (LTI) interview preparation:Topics to prepare for the interview - Database, Basic C/C++, Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

Xetech Interview FAQs

How many rounds are there in Xetech interview?
Xetech interview process usually has 2 rounds. The most common rounds in the Xetech interview process are Technical, Resume Shortlist and One-on-one Round.
How to prepare for Xetech interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Xetech. The most common topics and skills that interviewers at Xetech expect are SQL Server, Angular, C#, .Net and ASP.Net.
What are the top questions asked in Xetech interview?

Some of the top questions asked at the Xetech interview -

  1. Can we keep the reference variable of a parent class in the object of a child c...read more
  2. Can you explain the steps to enable JWT Authentication in ASP Core Web API with...read more
  3. How much experience do have as ASP Core Web API and ReactJs Develop...read more

Tell us how to improve this page.

Xetech Interview Process

based on 4 interviews

Interview experience

3.5
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 797 Interviews
View all

Xetech Reviews and Ratings

based on 39 reviews

3.2/5

Rating in categories

3.4

Skill development

3.5

Work-life balance

3.4

Salary

3.1

Job security

3.2

Company culture

3.5

Promotions

3.4

Work satisfaction

Explore 39 Reviews and Ratings
SharePoint Developer

Noida

4-8 Yrs

Not Disclosed

Explore more jobs
Software Tester
17 salaries
unlock blur

₹2 L/yr - ₹8.5 L/yr

Senior Software Developer
12 salaries
unlock blur

₹10 L/yr - ₹16.5 L/yr

Software Developer
9 salaries
unlock blur

₹7 L/yr - ₹15 L/yr

Softwaretest Engineer
5 salaries
unlock blur

₹2.7 L/yr - ₹4 L/yr

Team Lead
5 salaries
unlock blur

₹12 L/yr - ₹15.5 L/yr

Explore more salaries
Compare Xetech with

Infosys

3.6
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

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