Upload Button Icon Add office photos

Filter interviews by

Xtranet Technologies Interview Questions, Process, and Tips

Updated 13 Nov 2024

Top Xtranet Technologies Interview Questions and Answers

View all 11 questions

Xtranet Technologies Interview Experiences

Popular Designations

8 interviews found

Software Developer Interview Questions & Answers

user image Nihal Aherwar

posted on 14 Feb 2022

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

Round 1 - Technical 

(3 Questions)

  • Q1. Arraylist and link list
  • Q2. Spring boot annotations
  • Q3. Hashmap and jpa repository

Interview Preparation Tips

Interview preparation tips for other job seekers - Knowledge of practical and theory

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 (42)

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 13 Nov 2024

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

Was of moderate difficulty level

Round 2 - Group Discussion 

Was given a topic to speak about

Round 3 - Coding Test 

Given two codig question

Interview Preparation Tips

Interview preparation tips for other job seekers - good

Data Analyst Interview Questions asked at other Companies

Q1. Suppose there is a room in the office and X people enter room throughout the day, Y people leave throughout the day [continuously people are entering the room, some are staying there, and rest are going out] .. so tell me the code to calcul... read more
View answer (11)

NET Interview Questions & Answers

user image Arnove Khatua

posted on 1 Aug 2024

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

(1 Question)

  • Q1. What is difference between primary and unique key
  • Ans. 

    Primary key uniquely identifies each record in a table, while unique key ensures that each value in a column is unique.

    • Primary key does not allow NULL values, while unique key allows one NULL value.

    • A table can have only one primary key, but multiple unique keys.

    • Primary key automatically creates a unique index, while unique key does not.

    • Primary key is used to establish relationships between tables, while unique key is u

  • Answered by AI

NET Interview Questions asked at other Companies

Q1. what is difference between primary and unique key
View answer (1)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. How do you secure firewall
  • Ans. 

    Securing a firewall involves configuring access control, implementing intrusion detection systems, and regularly updating security policies.

    • Configure access control lists to allow only necessary traffic

    • Implement intrusion detection systems to monitor for suspicious activity

    • Regularly update firewall rules and security policies to address new threats

    • Enable logging and monitoring to track firewall activity

    • Use strong authe...

  • Answered by AI

Skills evaluated in this interview

Senior System Administrator Interview Questions asked at other Companies

Q1. How to stop IIS Service? What is CDN? What are the reason 502 bad gateway error? What is FSMO and How many type of roles? What is Group Policy and how many object? When do we use WDN? What are the different b/w Forest, Threes and Domains?
View answer (2)

Xtranet Technologies interview questions for popular designations

 Senior System Administrator

 (1)

 Data Analyst

 (1)

 Software Developer

 (1)

 DOT NET Developer

 (1)

 Business Analyst

 (1)

 Senior Java Developer

 (1)

 NET

 (1)

 Associate Software Engineer

 (1)

DOT NET Developer Interview Questions & Answers

user image Ajeet Singh Mandloi

posted on 17 Apr 2023

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 - Technical 

(2 Questions)

  • Q1. Basic knowledge of asp.net , c#.net , Oops , coding standards , three tire architecture
  • Q2. Sql server , database related , queries , function and structure, triggers , indexes
Round 3 - HR 

(1 Question)

  • Q1. Salary negotiations , background details , future planning , timing shift

Interview Preparation Tips

Interview preparation tips for other job seekers - excellent work culture , salary on time ,

DOT NET Developer Interview Questions asked at other Companies

Q1. What is the difference between windows application development and web based development?
View answer (11)

I applied via Walk-in and was interviewed in Jul 2022. 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. Questions on core subjects
  • Q2. Questions on Oops concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company. More opportunities to learn.
Good team members

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given Sum Problem Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K. Explanation: A triplet is a set {ARR[i], ARR[j], ARR[k... read more
View answer (2)

Jobs at Xtranet Technologies

View all

Business Analyst Interview Questions & Answers

user image Surjeet singh

posted on 16 Mar 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Mar 2023. There were 2 interview rounds.

Round 1 - Case Study 

Case study for smart city emerging technology

Round 2 - HR 

(1 Question)

  • Q1. How to sustain project
  • Ans. 

    To sustain a project, it is important to have clear goals, effective communication, stakeholder engagement, risk management, and continuous monitoring.

    • Set clear project goals and objectives to keep the team focused.

    • Maintain open and effective communication channels with all stakeholders.

    • Engage stakeholders throughout the project to ensure their buy-in and support.

    • Implement a robust risk management plan to identify and ...

  • Answered by AI

Business Analyst Interview Questions asked at other Companies

Q1. You have 10 boxes of balls (each ball weighing exactly10 gm) with one box with defective balls (each one of the defective balls weigh 9 gm). You are given an electronic weighing machine and only one chance at it. How will you find out which... read more
View answer (9)

I applied via Naukri.com and was interviewed in Jun 2021. There were 4 interview rounds.

Interview Questionnaire 

10 Questions

  • Q1. What is immutable and how we can create our own immutable class ?
  • Ans. 

    Immutable objects are those whose state cannot be changed after creation.

    • Use final keyword to make class immutable

    • Make all fields private and final

    • Do not provide setter methods

    • If a field is mutable, return a copy of it instead of the original object

    • Examples: String, Integer, LocalDate

  • Answered by AI
  • Q2. What is singleton and how to create singleton class and benefits ?
  • Ans. 

    Singleton is a design pattern that restricts the instantiation of a class to one object.

    • To create a singleton class, make the constructor private, create a static method to get the instance of the class, and create a private static variable to hold the instance.

    • Benefits of singleton include ensuring only one instance of the class exists, providing a global point of access to the instance, and reducing the number of obj...

  • Answered by AI
  • Q3. What is volatile ? And write program
  • Ans. 

    Volatile is a keyword in Java used to indicate that a variable's value may be modified by multiple threads.

    • Volatile variables are not cached in thread's local memory

    • Changes made to volatile variables are immediately visible to other threads

    • Volatile keyword is used to ensure visibility and ordering of variables in multithreaded environment

    • Example: volatile int count = 0;

  • Answered by AI
  • Q4. Write a program for customise exception
  • Ans. 

    A program to create custom exceptions in Java.

    • Create a class that extends Exception or RuntimeException

    • Add constructors to the custom exception class

    • Throw the custom exception in the code when needed

  • Answered by AI
  • Q5. Count dublicate name in SQL .
  • Ans. 

    To count duplicate names in SQL, use the GROUP BY clause with the COUNT function.

    • Use GROUP BY clause to group the names together

    • Use COUNT function to count the number of occurrences

    • Use HAVING clause to filter out names with count less than 2

  • Answered by AI
  • Q6. Spring boot security related.
  • Q7. How microservices communicate?
  • Ans. 

    Microservices communicate through lightweight protocols like HTTP/REST or messaging systems like RabbitMQ.

    • Microservices can communicate through synchronous protocols like HTTP/REST, where one service sends a request to another service and waits for a response.

    • Microservices can also communicate through asynchronous messaging systems like RabbitMQ, where one service publishes a message to a queue and other services consu...

  • Answered by AI
  • Q8. Difference between @component and @configuration ?
  • Ans. 

    The @Component annotation is used to mark a class as a bean, while @Configuration is used to define a configuration class.

    • The @Component annotation is used to auto-detect and auto-configure beans using classpath scanning.

    • @Configuration classes are used to define beans and their dependencies explicitly.

    • A @Configuration class can contain @Bean methods that return bean instances.

    • A @Component class can be used as a bean in

  • Answered by AI
  • Q9. New features of java 1.8
  • Ans. 

    Java 1.8 introduced lambda expressions, default methods, and functional interfaces.

    • Lambda expressions allow functional programming in Java.

    • Default methods allow adding new methods to interfaces without breaking existing implementations.

    • Functional interfaces are interfaces with a single abstract method, used for lambda expressions.

    • Stream API for processing collections and arrays.

    • Date and Time API for easier handling of ...

  • Answered by AI
  • Q10. Stream api related program

Interview Preparation Tips

Interview preparation tips for other job seekers - Everyone should study any topic in depth because after theory they will give program to write .

Skills evaluated in this interview

Top Xtranet Technologies Senior Java Developer Interview Questions and Answers

Q1. What is immutable and how we can create our own immutable class ?
View answer (1)

Senior Java Developer Interview Questions asked at other Companies

Q1. Remove the Kth Node from the End of a Linked List You are given a singly Linked List with 'N' nodes containing integer data and an integer 'K'. Your task is to delete the Kth node from the end of this Linked List. Input: The first line of ... read more
View answer (1)

Interview questions from similar companies

Interview Questionnaire 

2 Questions

  • Q1. What is precompilaion unit?
  • Ans. 

    Precompilation unit is a compiled code that can be reused by multiple source files.

    • Precompilation unit is created by the compiler from the source code.

    • It contains the compiled code of header files and other dependencies.

    • It can be reused by multiple source files, reducing compilation time.

    • It is also known as precompiled header or PCH.

    • Example: stdafx.h in Visual Studio is a precompiled header file.

  • Answered by AI
  • Q2. About ur future,ur short term goal,why this company

Interview Preparation Tips

Skills: Resume, CGPA
College Name: IIT Kharagpur

Interview Questionnaire 

3 Questions

  • Q1. First 50 Prime Number
  • Ans. 

    The first 50 prime numbers are...

    • Start with 2, the first prime number

    • Check each odd number greater than 2

    • Use trial division to check if a number is prime

    • Stop when you have found 50 prime numbers

  • Answered by AI
  • Q2. How to sort the file in the range (hint provided)
  • Ans. 

    Sorting a file within a range

    • Use a sorting algorithm like quicksort or mergesort

    • Read the file and store the data in an array or list

    • Sort the array or list within the given range

    • Write the sorted data back to the file

  • Answered by AI
  • Q3. Tell me about yourself
  • Ans. 

    I am a passionate software engineer with experience in developing web applications using various technologies.

    • Experienced in developing web applications using HTML, CSS, JavaScript, and frameworks like React and Angular

    • Proficient in backend development with Node.js, Express, and MongoDB

    • Familiar with version control systems like Git and project management tools like Jira

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Experience: Shortlist cut was 0.0 cgpa
Tips: Need to mention Programming skill in any one of three language C , C++ ,Java

Round: Test
Experience: Test was Average, Many question were from INDIABIX.COM , computer network, operating system ,data structure, c , c++ language
Tips: Understand Data Structure and Algorithm deeply, At least read about computer networks, operating system , DBMS 3-4 times for basic good understand, refer various site
Duration: 180 minutes

Round: Test
Experience: Two question were given , we have to write the code on A4 size sheet
Tips: Deep understanding of STACK AND QUEUE
Duration: 60 minutes

Round: Technical Interview
Experience: Previous Test (2 Questions on A4 size sheet) were discussed and is there any improvement that can be done, discussed each and every step.
Tips: Comments is important using programming
present with demo example (various cases)

Round: HR Interview
Experience: Be calm and show your interest in the company,
ask question about company, what are activity other than techincal technical stuff
Tips: Smile , if possible talk in Hindi - English,Try to Make the interview in discussion

General Tips: Practice Daily , Understand Each and Every Step in Detail , Try to code in A4 size paper then computer
Skill Tips: Read Good Books , Practice Daily

Skills: Algorithms And Data Structures
College Name: IIT Kharagpur

Skills evaluated in this interview

Xtranet Technologies Interview FAQs

How many rounds are there in Xtranet Technologies interview?
Xtranet Technologies interview process usually has 1-2 rounds. The most common rounds in the Xtranet Technologies interview process are Technical, Resume Shortlist and HR.
How to prepare for Xtranet Technologies 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 Xtranet Technologies. The most common topics and skills that interviewers at Xtranet Technologies expect are Java, Javascript, Hibernate, SQL and PLSQL.
What are the top questions asked in Xtranet Technologies interview?

Some of the top questions asked at the Xtranet Technologies interview -

  1. What is immutable and how we can create our own immutable clas...read more
  2. What is singleton and how to create singleton class and benefit...read more
  3. What is volatile ? And write prog...read more

Tell us how to improve this page.

Xtranet Technologies Interview Process

based on 5 interviews

Interview experience

4.4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.7k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 812 Interviews
View all

Xtranet Technologies Reviews and Ratings

based on 84 reviews

3.1/5

Rating in categories

2.8

Skill development

3.1

Work-life balance

2.8

Salary

2.9

Job security

2.8

Company culture

2.6

Promotions

2.8

Work satisfaction

Explore 84 Reviews and Ratings
Software Engineer
45 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
39 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
32 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Java Developer
16 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

DOT NET Developer
15 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Xtranet Technologies 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