Upload Button Icon Add office photos
Engaged Employer

i

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

NexGen Tech Solutions Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

NexGen Tech Solutions Backend Developer Interview Questions and Answers

Updated 25 Jun 2024

NexGen Tech Solutions Backend Developer Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I appeared for an interview in May 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Find frequency of integer in array
  • Ans. 

    Calculate the frequency of a specific integer in an array of strings.

    • Iterate through the array and use a hashmap to store the frequency of each integer.

    • Return the frequency of the specified integer from the hashmap.

  • Answered by AI
  • Q2. Node js project explanation and evaluation
  • Ans. 

    Node.js is a runtime environment that allows you to run JavaScript on the server side.

    • Node.js is built on Chrome's V8 JavaScript engine.

    • It uses an event-driven, non-blocking I/O model.

    • Node.js is commonly used for building server-side applications and APIs.

    • It has a large ecosystem of libraries and frameworks, such as Express and Socket.io.

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

Round 1 - Aptitude Test 

A total time of 1 hour 30 minutes was given for this round, and it was held on the HackerEarth platform.

20 Aptitude questions- logical questions, questions on the diagram, time and train, direction, efficient statement, Venn diagram, few examples of the type of questions:

1. If 2 workers can paint 3 rooms in 4 hours, how many rooms can 1 worker paint in 5 hours

2. If there are 21 blue, 15 black and 17 red ball in a sack, how many minimum ball would you have to remove to ensure that you have removed at least 2 blue ball? (multiple questions of this type can be there)

3. The sum of the 5 numbers in AP is 80. The difference between each is 5. Smallest number?

4. A and B are standing in a row. A is 5th from the left, and B is 13th from the right. After they exchange their positions, A is 11th from left. How many people are in the row?

20 questions on CSE Fundamentals- Questions based on OS - Time Scheduling, Stacks, Find output and error in Java Code, Cpp code and C Code, DBMS, Time complexity, etc.

2 questions based on DSA, out of which you will have to attempt any 1.

For example, the Question was based on the array - in an abandoned city, you are given an array of gold coins, and you have to maximise the number of gold coins while moving in the city and traverse a minimum number of elements in the array.

Round 2 - Technical 

(9 Questions)

  • Q1. 1. ARRAYS, STRINGS AND SORTING: Bubble sort, Complexity of all sorting algorithms.
  • Q2. 2. Find the first non repeating character in a string
  • Ans. 

    Find the first non-repeating character in a string.

    • Create a hash table to store the frequency of each character in the string.

    • Iterate through the string and check the frequency of each character.

    • Return the first character with a frequency of 1.

  • Answered by AI
  • Q3. 3. Remove duplicates from an array
  • Ans. 

    Remove duplicates from an array of strings

    • Create a new empty array

    • Loop through the original array and check if the element already exists in the new array

    • If not, add it to the new array

    • Return the new array

  • Answered by AI
  • Q4. 4. An array and 2 variables x and y are given, print y sub arrays with x elements.
  • Ans. 

    Print y sub arrays with x elements from given array and variables.

    • Use a loop to iterate through the array and create subarrays of x elements.

    • Use another loop to print y number of subarrays.

    • Handle edge cases where x or y is greater than the length of the array.

  • Answered by AI
  • Q5. 5. Explain the function pointer.
  • Ans. 

    A function pointer is a variable that stores the memory address of a function.

    • Function pointers allow passing functions as arguments to other functions.

    • They can be used to implement callbacks and event handlers.

    • Function pointers can be used to implement polymorphism in C.

    • Example: int (*funcPtr)(int, int) = &add; where add is a function that takes two integers and returns their sum.

    • Function pointers can also be used to

  • Answered by AI
  • Q6. 6. Explain copy constructor
  • Ans. 

    Copy constructor creates a new object by copying an existing object.

    • Used to initialize an object with another object of the same class

    • Takes a reference to an object of the same class as a parameter

    • Creates a new object with the same values as the parameter object

    • Deep copy and shallow copy are two types of copy constructors

  • Answered by AI
  • Q7. 7. Deep copy / Shallow copy
  • Q8. 8. Characteristics of static function
  • Ans. 

    Static functions belong to the class and not to the instance of the class.

    • Can be called without creating an instance of the class

    • Cannot access non-static members of the class

    • Can access other static members of the class

    • Used for utility functions or helper functions

  • Answered by AI
  • Q9. 9. What are Abstract classes
  • Ans. 

    Abstract classes are classes that cannot be instantiated and are meant to be extended by other classes.

    • Abstract classes are declared using the 'abstract' keyword.

    • They can have abstract and non-abstract methods.

    • Abstract methods are declared without a body and must be implemented by the subclass.

    • Abstract classes can have constructors and instance variables.

    • They are useful for creating a common interface for a group of re

  • Answered by AI
Round 3 - Technical 

(4 Questions)

  • Q1. 1. Explain Trees and Binary Search Trees.
  • Ans. 

    Trees are data structures that store hierarchical data. Binary Search Trees are a type of tree that maintains sorted order.

    • Trees are composed of nodes that have a parent-child relationship.

    • Binary Search Trees have at most two children per node and the left child is always smaller than the parent while the right child is always larger.

    • Binary Search Trees allow for efficient searching, insertion, and deletion operations.

    • ...

  • Answered by AI
  • Q2. 2. Difference between Linked List and Tree (where what should be used).
  • Ans. 

    Linked list is a linear data structure while tree is a hierarchical data structure.

    • Linked list is used when we need to maintain a sequence of elements and perform operations like insertion and deletion at any position.

    • Tree is used when we need to represent a hierarchical structure and perform operations like searching, insertion, and deletion efficiently.

    • Linked list has a single pointer to the next node while tree has ...

  • Answered by AI
  • Q3. 3. A real-life example of Tree.
  • Ans. 

    A family tree is a real-life example of a tree data structure.

    • A family tree has a root node (the oldest ancestor) and branches out to children, grandchildren, etc.

    • Each node can have multiple child nodes but only one parent node.

    • The tree structure allows for easy visualization of relationships and ancestry.

    • Other examples include file systems, organization charts, and decision trees.

  • Answered by AI
  • Q4. 4. Some in-depth questions from standard topics like Linked List, trees, etc. will also be asked.
Round 4 - Real Life Situation 

(1 Question)

  • Q1. If a rival company tries to use your code against us what will you do?
  • Ans. 

    I will ensure that our code is properly protected by implementing security measures and legal actions if necessary.

    • Implement security measures such as encryption and access control to prevent unauthorized access to our code.

    • Monitor for any suspicious activity and take immediate action if any unauthorized access is detected.

    • If necessary, take legal action against the rival company for intellectual property theft.

    • Collabo...

  • Answered by AI
Round 5 - Puzzles Interview 

(1 Question)

  • Q1. Given 9 ball all of which weigh the same except for one, what is the minimum of weighings necessary to find the ball weighs more (or less)?
Round 6 - HR 

(5 Questions)

  • Q1. 1. What are your goals for the next 1 year, your 5-year goals?
  • Ans. 

    To become proficient in new technologies and frameworks, contribute to meaningful projects, and advance my career.

    • Learn and master new programming languages, frameworks, and tools

    • Contribute to open-source projects and collaborate with other developers

    • Improve problem-solving and critical thinking skills

    • Advance to a senior or lead developer role

    • Stay updated with industry trends and best practices

  • Answered by AI
  • Q2. 2. What are the recent challenges you faced in life?
  • Ans. 

    I recently faced the challenge of learning a new programming language and adapting to a new project.

    • Learning a new programming language

    • Adapting to a new project

    • Working with unfamiliar technologies

    • Meeting tight deadlines

  • Answered by AI
  • Q3. 3. What are your hobbies in life besides coding?
  • Ans. 

    I enjoy playing musical instruments, reading books, and hiking in my free time.

    • Playing musical instruments

    • Reading books

    • Hiking

  • Answered by AI
  • Q4. 4. Why do you want to join this company?
  • Ans. 

    I want to join this company because of its strong reputation in the industry and its commitment to innovation.

    • Strong reputation in the industry

    • Commitment to innovation

    • Opportunity for professional growth

    • Positive work culture

    • Exciting projects and challenges

  • Answered by AI
  • Q5. 5. What work does our company do?
  • Ans. 

    Our company provides backend development services for various industries.

    • We develop and maintain backend systems for clients

    • We specialize in creating scalable and efficient APIs

    • Our work involves database management and optimization

    • We collaborate with frontend developers to ensure seamless integration

    • We follow industry best practices and stay updated with the latest technologies

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure your CSE Fundamentals are strong. DSA should be your Top priority and make sure you practice DSA questions. Make sure to revise all the standard questions of DSA for interviews. Round 1 is easy. The Technical round is mainly Project-Based on the projects you mentioned in your resume. For the DSA questions, try and focus on the approach and how it could be made better.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Median of a stream
  • Ans. 

    Finding the median of a stream of numbers as they are received

    • Keep track of the numbers in a sorted data structure like a min heap and max heap

    • Maintain balance between the two heaps to efficiently find the median

    • If the total number of elements is odd, median is the middle element. If even, median is the average of two middle elements

  • Answered by AI

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Jun 2021. There were 5 interview rounds.

Round 1 - Aptitude Test 

It has aptitude and coding based questions.For coding you can choose any coding language

Round 2 - Group Discussion 

There will be a GD for 7-10 people on random topic

Round 3 - Technical 

(1 Question)

  • Q1. 1st TR,ask to write a code of your preference.Linux commands,SQL
Round 4 - Technical 

(1 Question)

  • Q1. 2nd TR ,ask about the projects you have done
Round 5 - HR 

(1 Question)

  • Q1. Basic HR round,where they will discuss about the company , job role etc

Interview Preparation Tips

Interview preparation tips for other job seekers - The above process is for freshers which is of 2 years back.there might be change in process.

I applied via Campus Placement and was interviewed before Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Tell me. Something about yourself
  • Q2. Probability question on dice, guesstimate on Delhi Metro, Resume Based, Projects in Detail
  • Q3. Behavioral as well as Mathematical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident and do not lie in your CV, Practice as many Guesstimates and Puzzles as you can

I applied via Naukri.com and was interviewed in Jul 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. What is difference between flip-flop and Latches?
  • Ans. 

    Flip-flops and latches are sequential logic circuits used to store and manipulate binary data.

    • Flip-flops are edge-triggered devices, while latches are level-sensitive devices.

    • Flip-flops have separate clock and data inputs, while latches have a single input for both clock and data.

    • Flip-flops are used in synchronous circuits, while latches are used in asynchronous circuits.

    • Flip-flops are more complex and require more cir...

  • Answered by AI
  • Q2. Where is the money needed to recruited you for embedur system?.The Hr will ask.

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not apply or just putting resume to this company.As the hr will make money with this job. They don't deseve Talented candidates.They want referrals and salary cuts for hr to hire you.Instead of hiring candidates for software position, They should hire best Hr first (definitely in chennai)

Interview Questionnaire 

1 Question

  • Q1. All regarding networking and c

I applied via Naukri.com and was interviewed before Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. How will you sync your distributed systems
  • Ans. 

    I will use a combination of messaging systems, data replication, and versioning to ensure consistency and availability.

    • Use messaging systems like Kafka or RabbitMQ to ensure reliable communication between systems

    • Implement data replication to ensure that data is available on multiple nodes

    • Use versioning to ensure that all nodes are working with the same data

    • Implement conflict resolution strategies to handle conflicts th...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - just be yourself, they will not ask you irrelevant questions, at least in my case.

I applied via Referral

Interview Questionnaire 

4 Questions

  • Q1. I was asked to write the algorithm of checking
  • Q2. How many mobile phones are sold each year in India
  • Ans. 

    Approximately 150-200 million mobile phones are sold each year in India.

    • India is the second-largest smartphone market in the world after China.

    • The number of mobile phone users in India is expected to reach 1.25 billion by 2020.

    • The Indian smartphone market grew by 7% YoY in 2019.

    • Major players in the Indian smartphone market include Xiaomi, Samsung, and Vivo.

  • Answered by AI
  • Q3. How many tube lights are there in the city of Mumbai
  • Ans. 

    It is not possible to accurately determine the number of tube lights in the city of Mumbai.

    • The number of tube lights in a city is not publicly available information.

    • The city of Mumbai has a large population and a vast number of buildings, making it impossible to count all the tube lights.

    • The number of tube lights can vary greatly depending on factors such as residential, commercial, and industrial areas.

    • Even if we cons...

  • Answered by AI
  • Q4. Three different puzzles

Interview Preparation Tips

Round: Test
Experience: The Test is in lines of what we prepare for all the major competitive exams, similar to CAT. The difficulty level is moderate to easy. No negative marking. Cut off were sectional as well as overall.
It was overall a smooth ride. The results were given an hour later after the test.
Tips: Attempt your strong section first. Maintain accuracy and try and be fast in solving.
Duration: 60 minutes
Total Questions: 60

Round: Guesstimate Interview
Experience: It was pretty smooth. They generally look for your thought process rather than the exact figure. Expect cross questions on your solution.

Round: Puzzle Interview
Experience: This round was combined with the Guesstimate question. The puzzles were of a good level. But if you like solving them in your free time, you would fare well here.

Skills: Analyzing And Problem Solving Skills, Logical Thinking
College Name: KJ Somaiya Institute Of Management Studies And Research
Motivation: Its into Analytics industry. I like the the culture and the people. Wish to build a career in Analytics.

Interview Questionnaire 

23 Questions

  • Q1. Walk me through your resume
  • Ans. 

    I have experience in marketing and sales, with a focus on digital marketing and customer acquisition.

    • Worked as a marketing intern at XYZ company, where I helped develop and execute social media campaigns

    • Managed email marketing campaigns for ABC company, resulting in a 20% increase in open rates

    • Led a team of sales representatives at DEF company, achieving a 15% increase in revenue

    • Developed and implemented a customer acq...

  • Answered by AI
  • Q2. What did you learn in your conference at Harvard University?
  • Ans. 

    I learned about the latest trends in AI and machine learning.

    • Discussed the impact of AI on various industries

    • Explored the ethical implications of AI

    • Learned about new techniques in machine learning

    • Attended workshops on natural language processing and computer vision

  • Answered by AI
  • Q3. If you were travelling so much, how did you maintain a CGPA of 8?
  • Ans. 

    Maintained CGPA of 8 by managing time efficiently and prioritizing studies.

    • Managed time efficiently

    • Prioritized studies over leisure activities

    • Utilized travel time for studying

    • Maintained a study schedule

    • Sought help from professors and peers when needed

  • Answered by AI
  • Q4. Mumbai or Bangalore (2 job locations in the offer). I said Bangalore, she was surprised as I stay in Nagpur. Asked me why?
  • Q5. What is your weakness?
  • Ans. 

    I tend to overthink and get anxious about small details.

    • I have a tendency to overanalyze situations

    • I sometimes struggle with decision-making

    • I am working on improving my time management skills

    • For example, I may spend too much time perfecting a project and not enough time on other tasks

  • Answered by AI
  • Q6. Give me a situation where you handled a problem effectively?
  • Ans. 

    Handled a customer complaint about a delayed delivery

    • Listened to the customer's concerns and apologized for the inconvenience

    • Investigated the issue and found out that the delivery was delayed due to unforeseen circumstances

    • Offered a discount on the next purchase as a gesture of goodwill

    • Followed up with the customer to ensure their satisfaction

  • Answered by AI
  • Q7. Why do you not want to go in core Metallurgy (my Btech majors)?
  • Q8. Women in India do not get what they deserve. Do you agree?
  • Ans. 

    Disagree. Women in India have made significant progress in various fields.

    • Women in India have excelled in fields like politics, sports, entertainment, and education.

    • The government has implemented various schemes and policies to empower women.

    • However, there are still issues like gender-based violence and discrimination that need to be addressed.

    • Efforts are being made to increase women's participation in the workforce an

  • Answered by AI
  • Q9. Tell me about both
  • Ans. 

    The question is unclear. Please provide more context.

    • Please provide more information about what you are asking for.

    • Without additional context, it is difficult to provide a meaningful answer.

    • Can you please clarify the question?

    • I am unable to answer the question without more information.

  • Answered by AI
  • Q10. What are the evidences?
  • Ans. 

    The evidences refer to the proof or supporting facts that validate a claim or argument.

    • Evidences can be in the form of data, statistics, research studies, expert opinions, eyewitness accounts, etc.

    • For example, in a court case, evidences can include DNA samples, fingerprints, and witness testimonies.

    • In scientific research, evidences can include experimental data, peer-reviewed studies, and expert analysis.

    • In journalism,...

  • Answered by AI
  • Q11. Okay what are your hobbies?
  • Ans. 

    I enjoy reading, hiking, and playing board games.

    • Reading: I love getting lost in a good book, especially science fiction and fantasy.

    • Hiking: I enjoy exploring new trails and being out in nature.

    • Board games: I like playing strategy games with friends and family, such as Settlers of Catan and Ticket to Ride.

  • Answered by AI
  • Q12. What genre of books?
  • Ans. 

    I enjoy reading a variety of genres, including mystery, science fiction, and historical fiction.

    • Mystery

    • Science fiction

    • Historical fiction

  • Answered by AI
  • Q13. What was the last book you read? What do you think of it?
  • Ans. 

    The last book I read was 'The Alchemist' by Paulo Coelho. It's a beautiful story about following your dreams.

    • The book is a fictional story about a shepherd boy named Santiago who embarks on a journey to fulfill his personal legend

    • The author uses simple language and metaphors to convey deep philosophical ideas about life and purpose

    • The book has sold over 65 million copies worldwide and has been translated into 80 langua...

  • Answered by AI
  • Q14. What is one learning from it?
  • Ans. 

    One learning from what?

    • Please provide context or specify what 'it' refers to

    • Without context, it is impossible to provide a meaningful answer

  • Answered by AI
  • Q15. What is truth? Like the one you have been taught or the one you learn yourself like your parents teach you to not cut nails at night etc ot go to the temple?
  • Ans. 

    Truth is subjective and can be influenced by personal experiences and cultural beliefs.

    • Truth is not always objective or universal

    • It can be shaped by personal experiences and cultural beliefs

    • What is considered true in one culture may not be true in another

    • Truth can also change over time as new information is discovered

    • For example, the belief that the earth was flat was once considered true, but is now known to be false

  • Answered by AI
  • Q16. So why should we visit temples?
  • Ans. 

    Visiting temples can provide spiritual and cultural experiences, as well as a sense of community and peace.

    • Temples offer a space for prayer and meditation

    • They can provide a sense of community and belonging

    • Visiting temples can offer cultural and historical insights

    • Many temples have beautiful architecture and artwork

    • Temples can provide a peaceful and calming environment

    • Some people believe that visiting temples can bring

  • Answered by AI
  • Q17. Why fractal?
  • Ans. 

    Fractals offer a unique way to understand complex patterns and structures in nature and mathematics.

    • Fractals can be found in natural phenomena such as snowflakes, coastlines, and ferns.

    • They have practical applications in computer graphics, data compression, and cryptography.

    • Fractal geometry provides a new perspective on understanding the behavior of complex systems.

    • Fractals have been used to model the growth of tumors ...

  • Answered by AI
  • Q18. What was your internship in IIM A about?
  • Ans. 

    My internship at IIM A was focused on market research and analysis for a new product launch.

    • Conducted primary and secondary research to identify market trends and consumer preferences

    • Analyzed data using statistical tools and presented findings to senior management

    • Assisted in developing marketing strategies and creating promotional materials

    • Collaborated with cross-functional teams to ensure successful product launch

    • Gain...

  • Answered by AI
  • Q19. Okay. How many people attended StanChart Mumbai Marathon?
  • Ans. 

    The number of attendees at StanChart Mumbai Marathon is not available.

    • Data on the number of attendees is not available.

    • The organizers have not released any official figures.

    • It is unclear how many people participated in the marathon.

  • Answered by AI
  • Q20. The puzzle of 2 cans of 3Litre and 5 litre used to measure other values (very common one)
  • Q21. I have 5 other BTech metallurgy graduates, why should I hire you?
  • Ans. 

    I bring a unique combination of skills and experience to the table.

    • My experience in internships and projects sets me apart from my peers.

    • I have a strong understanding of the latest industry trends and technologies.

    • My ability to work well in a team and communicate effectively makes me a valuable asset.

    • I am passionate about metallurgy and am always eager to learn and improve.

    • My dedication and work ethic are unmatched.

  • Answered by AI
  • Q22. You mean they will disappoint my efforts?
  • Ans. 

    It depends on the situation and the people involved.

    • It's possible that they may not appreciate or recognize your efforts.

    • It's also possible that they may have different expectations or priorities.

    • Communication and understanding are key to avoiding disappointment.

    • Examples: a boss who doesn't acknowledge your hard work, a friend who doesn't show up to your event.

  • Answered by AI
  • Q23. Do not try to safe guard your friends (humorously)

Interview Preparation Tips

Round: Test
Experience: The test was of easy to moderate difficulty level. There was no negative marking hence choosing the questions to maximize score was the best way. It was a speed based test and a few questions in each section were put to break your speed in the form of calculation based questions or slightly difficult ones. Decent preparation for CAT etc is more than sufficient. Verbal was very easy, quants and reasoning were moderate. I always thought that quants was my weakness, but this test was easier than expected.
Tips: 1) Choose questions in each section wisely because there is no negative marking. Leave the ones you think are time consuming and fill it at the last.
2) Make sure you allot equal time to all sections or if you have one section as your strength do it first. There can be chances of sectional cut off, I am not sure
3) Maximize your score by keeping your speed maintained
4) A decent preparation for CAT is more than enough. Verbal has 1 or 2 RCs which are very easy.
Duration: 60 minutes
Total Questions: 60

Round: Technical Interview
Experience: The first round was pretty easy I thought because the interviewer was pretty relaxed and was just trying to get to know me. She asked questions about every point in my resume. I could feel that you are the one who drive your interview the way you want to from the first question.
Tips: 1) PLEASE be HONEST with your resume. They will ask you about each and every point. They asked about EVERY internship I did, every conference, everything. So be honest and well versed with what you mention in your resume.

2) Do not get laid back if the interviewer is a little relaxed. The ones who did in my time, did not get shortlisted for next round.

3) Be aware of your answers, you can drive your own interview.

Round: Puzzle Interview
Experience: Ans 1 - Case studies on sports leagues in India - Indian Badminton League, Hockey India League and Standard Chartered Mumbai Marathon
Ans 2 - Guessestimate question. Gave a reason for answer, it was not even close for the first time because I could not estimate population of Marine Drive (venue of marathon) near to real value but my algorithm was correct, hence he moved to next question.
Ans 4 - I will not disappont the efforts put in me, I am sincere and passionate about my work.
Ans 5 - No I do not mean that.
Ans 6 - I would act as an asset for the company who would help in building other assets by helping and working together with my peers in Fractal

Tips: 1) Make sure you keep explaining your method at each step, this way even if values are wrong, they are interested in method.

2) Dont panic, you can ask them to give you 2 3 minutes to think

3) Be honest. Have presence of mind, understand when he is not happy with your response

4) The interviewer was continuously roaming around the room trying to distract me. So be focussed.

Round: HR Interview
Experience: Ans 1 - Do you intend to ask about their rights from society or freedom from home?
Ans 2 - According to me the societal restrictions are forced, but the family restrictions might be justified because I asked my father and he gave evidences from Vedas which was logical.
Ans 3 - Told her the facts
Ans 4 - Travelling, meeting new people and reading books
Ans 5 - both fiction and non fiction. Named a few titles and authors
Ans 6 - My Experiments with Truth - MK Gandhi, Like most of my peers, I made a negative conclusion about MK Gandhi.
Ans 7 - That truth must always prevail but it doesnt define truth.
Ans 8 - Ma'am, what we are taught and what we grow up with is our paradigm. Truth is what we accept after observing everything. For example I was curious why we should visit the temple and I researched about it, read a few texts and forme dmy opinion this i smy truth so it can be subjective.
Ans 9 - Gave the reason
Ans 10 - I think Fractal works on the same principle as I do that there should be a balance between everything in life. My seniors at fractal have talked extremely well about the work life balance and as you would see my profile is also a balance between sports, extra curriculars and academics

Tips: 1) I was confident and aware about what I was saying.
2) I gave openings for her to ask the next question like define truth, why temples etc.
3) Be honest and tell them waht you think. This round is just to check if you fit in their work culture or not.

General Tips: 2 things are very important for fractal -
1 - stay calm
2 - be honest. they can see through it.

Read about Fractal properly, use it in your answers. HR round will have one question - Do ask at least one question
Skill Tips: Make sure your resume is one page long only and is COMPLETELY TRUE.
Skills: Ability To Cope Up With Stress, Guesstimate Skills, Ability To Deal Diplomatically, Ability To Convince, Hone
College Name: NIT Nagpur
Motivation: It was an analyst job and the company has a very good work life culture.
Funny Moments: When in 1st round I was asked any difficult situation you handled, I told about my visit to Japan and how I did a presentation there in Class 10, my interviewer then began to tell me about her visit to Japan and how good Japanese people are
Also in last round, we had a healthy long discussion about what is truth, why women are denied a few things etc/ All HR interviews were 10 minutes long with normal questions like hobbies and general stuff but mine went on for 40 minutes and I did not even mind it.

NexGen Tech Solutions Interview FAQs

How many rounds are there in NexGen Tech Solutions Backend Developer interview?
NexGen Tech Solutions interview process usually has 1 rounds. The most common rounds in the NexGen Tech Solutions interview process are One-on-one Round.
How to prepare for NexGen Tech Solutions Backend Developer 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 NexGen Tech Solutions. The most common topics and skills that interviewers at NexGen Tech Solutions expect are AWS, Backend, Data Processing, Digital Electronics and HTTP.
What are the top questions asked in NexGen Tech Solutions Backend Developer interview?

Some of the top questions asked at the NexGen Tech Solutions Backend Developer interview -

  1. node js project explanation and evaluat...read more
  2. find frequency of integer in ar...read more

Tell us how to improve this page.

NexGen Tech Solutions Backend Developer Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Fractal Analytics Interview Questions
4.0
 • 208 Interviews
Zeta Interview Questions
3.4
 • 70 Interviews
embedUR Systems Interview Questions
3.2
 • 48 Interviews
Subex Interview Questions
3.5
 • 35 Interviews
CoinDCX Interview Questions
3.7
 • 29 Interviews
Seclore Interview Questions
4.1
 • 26 Interviews
MoEngage Interview Questions
4.0
 • 26 Interviews
View all

NexGen Tech Solutions Backend Developer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

4.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Software Engineer
18 salaries
unlock blur

₹3 L/yr - ₹7.8 L/yr

Technical Lead
18 salaries
unlock blur

₹9.2 L/yr - ₹34.9 L/yr

Senior Software Engineer
18 salaries
unlock blur

₹7.5 L/yr - ₹27.5 L/yr

Front end Developer
13 salaries
unlock blur

₹3.4 L/yr - ₹10.5 L/yr

QA Engineer
8 salaries
unlock blur

₹2.4 L/yr - ₹7 L/yr

Explore more salaries
Compare NexGen Tech Solutions with

Fractal Analytics

4.0
Compare

Subex

3.5
Compare

Innovatiview India Ltd

3.9
Compare

Watchyourhealth.com

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