Upload Button Icon Add office photos
Engaged Employer

i

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

TechXR Innovations Verified Tick

Compare button icon Compare button icon Compare
3.6

based on 18 Reviews

Filter interviews by

TechXR Innovations Software Developer Interview Questions and Answers for Freshers

Updated 26 Mar 2024

TechXR Innovations Software Developer Interview Experiences for Freshers

1 interview found

Software Developer Interview Questions & Answers

user image Tafeel Mohammad SK

posted on 26 Mar 2024

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

I applied via Referral and was interviewed in Sep 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Simple and a very important set of questions asked in my first round also in interview.

Round 2 - Coding Test 

Firstly I told them what I known well and they asked me one by one concept wise questions and got selected for third round.

Round 3 - HR 

(1 Question)

  • Q1. It's a HR round and salary discussion/negotiation round, they suggested me a good package and I have said yes to rather than beyond my expectations.

Interview Preparation Tips

Interview preparation tips for other job seekers - Everyone should know their skills, communication is very important wherever we go and what we do!

Interview questions from similar companies

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

I applied via Walk-in and was interviewed in May 2024. There was 1 interview round.

Round 1 - Aptitude Test 

Online apitude containing 10 question without camera

I applied via Recruitment Consulltant and was interviewed in Oct 2022. There were 4 interview rounds.

Round 1 - Aptitude Test 

The aptitude test was in online mode. There were 20 mcq questions and 5 coding questions ranging from easy to hard

Round 2 - Group Discussion 

After the Aptitude test, the gd was kept in offline mode ( at office ), the topic was "the pros and cons of online classes

Round 3 - Technical 

(1 Question)

  • Q1. In the 1st technical round, basic questions regarding the languages which i have mentioned in resume was asked. I mentioned python and C in my resume and a coding problem was asked to solve and to further ...
Round 4 - Technical 

(1 Question)

  • Q1. In the second technical OOPS concepts and DSA questions were asked

Interview Preparation Tips

Topics to prepare for Zopsmart Technology Software Developer interview:
  • DSA
  • Algorithms
  • Coding
  • resume
Interview preparation tips for other job seekers - If you pass the last technical round then you will be selected in HR round for the same.

I was interviewed in Jan 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 120 minutes
Round difficulty - Hard

This round was very difficult. I never do these much difficulty level of coding questions. But i give my best, and just do every questions by using step by step process.

  • Q1. Hourglass Pattern

    You are given an integer N and you have to print the following pattern.

    For N=5:

    For N=6:

    Alt Text

    Input Format:
    The first and only line of input contains an integer, that denotes the va...

  • Q2. BFS in Graph

    You are given an undirected and disconnected graph G(V, E) having V vertices numbered from 0 to V-1 and E edges. Your task is to print its BFS traversal starting from the 0th vertex.

    BFS or ...

  • Ans. Using queue

    Let us consider a function BFS that accepts a list of edges, EDGES, and the number of vertices VERTEX as a parameter and do: 

    1. Create ADJACENCYMATRIX from EDGES.
    2. Define a boolean array VISITED to store nodes that are already visited.
    3. Iterate over VISITED[i] for each 0<= i < VISITED.LENGTH, and check:
      1. If VISITED[i] is FALSE, call BFSHELPER function for ADJACENCYMATRIX, i and VISITED.

    Now, the function BF...

  • Answered by CodingNinjas
  • Q3. Sort a stack

    Given a stack, sort the elements inside that stack in ascending order using only push and pop operation. You can use one additional stack only.

    For eg.

    Input Stack :  5 (top)
                ...
Round 2 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Easy

This round is also coding round in this round we have a small video call interaction too, in which hr ask few questions to only those whose coding question is correct.

  • Q1. Next smaller Palindrome

    You are given a number 'N' in the form of a string 'S', which is a palindrome. You need to find the greatest number strictly less than 'N' which is also a pa...

  • Ans. Brute Force
    • Given the fact that the input number is a palindrome itself makes this problem very trivial.
    • Let us assume that the given string str is a palindrome, so we know that ‘S’ comprises of two halves  ‘S1’ and ‘S2’ i.e ‘S’ = ‘S1' + ‘S2', where ‘S1' and ‘S2’ are two strings, and ‘S2’ is the reverse of ‘S1’(in case of odd length palindromes ‘S2’ won’t have the last character of ‘S1’). So a change in any of the h...
  • Answered by CodingNinjas
  • Q2. Rotting Oranges

    You have been given a grid containing some oranges. Each cell of this grid has one of the three integers values:

  • Value 0 - representing an empty cell.
  • Value 1 - representing a fresh...
  • Ans. Naïve Solution

    The idea is very simple and naive. We will process the rotten oranges second by second. Each second, we rot all the fresh oranges that are adjacent to the already rotten oranges. The time by which there are no rotten oranges left to process will be our minimum time.

     

    In the first traversal of the grid, we will process all the cells with value 2 (rotten oranges). We will also mark their adjacent cells ...

  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Development in GurgaonEligibility criteriaAbove 7 cgpaZIGRAM interview preparation:Topics to prepare for the interview - OOPS , Data Structures, Dynamic Programming, Algorithms from variuos coding platforms , Database Management System, Operating System, Web developmentTime required to prepare for the interview - 2 monthInterview preparation tips for other job seekers

Tip 1 : Relax and don't stress. Practice
Tip 2 : Build Resume according to Job Description , but don't lie.
Tip 3 : Have good projects and knowledge regarding important subjects related to interviews

Application resume tips for other job seekers

Tip 1 : Include only genuine information, never lie in resume , it will impact to bad impression. 
Tip 2 : Skills relevant to Job Description
Tip 3 : Resume should not be more than 2 pages 
Tip 4 : Have some projects and internship on your resume because it will give good impression

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - Coding Test 

There was coding test

Round 2 - Technical 

(2 Questions)

  • Q1. 2 technical rounds
  • Q2. Merge sort algorithm
  • Ans. 

    Merge sort is a divide and conquer algorithm that divides the input array into two halves, sorts them separately, and then merges them back together in sorted order.

    • Divide the input array into two halves

    • Recursively sort each half

    • Merge the sorted halves back together

  • Answered by AI
Round 3 - Behavioral 

(1 Question)

  • Q1. Leetcode Easy question

Skills evaluated in this interview

I applied via Company Website and was interviewed in Jun 2022. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. How do you measure success at work?
  • Ans. 

    Success at work is measured by achieving goals, delivering high-quality work, and receiving recognition.

    • Achieving goals set by the team or organization

    • Delivering high-quality work that meets or exceeds expectations

    • Receiving recognition from colleagues, managers, or clients

    • Meeting deadlines and completing tasks efficiently

    • Contributing to the overall success of the team or project

  • Answered by AI
  • Q2. How many programming languages do you know?
  • Ans. 

    I know multiple programming languages.

    • I am proficient in Java, Python, and C++.

    • I have experience with web development languages such as HTML, CSS, and JavaScript.

    • I am familiar with scripting languages like Bash and PowerShell.

    • I have worked with database query languages like SQL.

    • I have knowledge of mobile app development languages like Swift and Kotlin.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for MapmyIndia Software Engineer interview:
  • Software
  • Software Engineering
  • Technical Skills
Interview preparation tips for other job seekers - Job search like it's your job
Know your and self what you want
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Code the LRU cache on hacker rank

Round 2 - One-on-one 

(1 Question)

  • Q1. Code the tail -f logger
  • Ans. 

    Implement a tail -f logger in code

    • Use a file pointer to open the log file

    • Read the file line by line and print new lines as they are added

    • Use a loop to continuously check for new lines in the file

  • Answered by AI

Skills evaluated in this interview

Interview Preparation Tips

Round: Test
Experience: A coding test (Students were asked to bring Laptops)
Tips: Be thorough with C/C++, networking, OS, Data structures and architecture
Duration: 90 minutes

Round: Interview
Experience: 3 rounds of interview, one hour each, all technical 
Interview Process:All the three rounds are oriented around programming. A lot of focus was given to Data structures, C/C++, OS and algorithmsThe code from previous test is shown and they expect you to fix any bugs if thereThe interviewers are quietly friendly and help if you get stuck at any pointIf you do have any related projects, anticipate some thorough questions on that
Tips: Though the interviewers are helpful, get your basics clear early on. Don't rely on them.Practice coding sessions, a lot of companies have them as a shortlisting criteria.

College Name: IIT Madras
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Nov 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

Aptitude was conducted through online, it was not tough.

Round 2 - Coding Test 

Offline round where they contain basic program, sql, and frontend questions

Round 3 - Technical 

(1 Question)

  • Q1. They asked about program that we have written.
Round 4 - HR 

(1 Question)

  • Q1. HR was friendly

I applied via Recruitment Consulltant and was interviewed in Oct 2022. There were 4 interview rounds.

Round 1 - Aptitude Test 

The aptitude test was in online mode. There were 20 mcq questions and 5 coding questions ranging from easy to hard

Round 2 - Group Discussion 

After the Aptitude test, the gd was kept in offline mode ( at office ), the topic was "the pros and cons of online classes

Round 3 - Technical 

(1 Question)

  • Q1. In the 1st technical round, basic questions regarding the languages which i have mentioned in resume was asked. I mentioned python and C in my resume and a coding problem was asked to solve and to further ...
Round 4 - Technical 

(1 Question)

  • Q1. In the second technical OOPS concepts and DSA questions were asked

Interview Preparation Tips

Topics to prepare for Zopsmart Technology Software Developer interview:
  • DSA
  • Algorithms
  • Coding
  • resume
Interview preparation tips for other job seekers - If you pass the last technical round then you will be selected in HR round for the same.

TechXR Innovations Interview FAQs

How many rounds are there in TechXR Innovations Software Developer interview for freshers?
TechXR Innovations interview process for freshers usually has 3 rounds. The most common rounds in the TechXR Innovations interview process for freshers are Aptitude Test, Coding Test and HR.

Tell us how to improve this page.

People are getting interviews through

based on 1 TechXR Innovations interview
Referral
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
TechXR Innovations Software Developer Salary
based on 4 salaries
₹1.8 L/yr - ₹9.2 L/yr
31% less than the average Software Developer Salary in India
View more details

TechXR Innovations Software Developer Reviews and Ratings

based on 2 reviews

2.9/5

Rating in categories

2.9

Skill development

2.9

Work-Life balance

2.9

Salary & Benefits

2.9

Job Security

2.9

Company culture

2.9

Promotions/Appraisal

2.9

Work Satisfaction

Explore 2 Reviews and Ratings
Software Developer
4 salaries
unlock blur

₹1.8 L/yr - ₹9.2 L/yr

HR Executive
4 salaries
unlock blur

₹2.5 L/yr - ₹4 L/yr

Career Counsellor
4 salaries
unlock blur

₹2 L/yr - ₹6.6 L/yr

UI Developer
3 salaries
unlock blur

₹1 L/yr - ₹1.8 L/yr

Associate Director Sales
3 salaries
unlock blur

₹12 L/yr - ₹12 L/yr

Explore more salaries
Compare TechXR Innovations with

Infosys

3.7
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview