Filter interviews by
I applied via Naukri.com and was interviewed before Sep 2023. There were 3 interview rounds.
Aptitude Test. Basic reasoning and logical Questions.
Asked a recursion question.
During a project, we faced a critical situation when a major software bug caused system downtime.
Identified the root cause of the bug through thorough debugging and testing.
Collaborated with team members to quickly develop and implement a fix.
Communicated effectively with stakeholders about the issue and the steps being taken to resolve it.
I applied via Walk-in and was interviewed before Oct 2022. There were 3 interview rounds.
Logical reasoning,Algebra
It has basic aptitude question
If you unable to clear apti then there is a option for GD
I applied via Job Portal and was interviewed in Dec 2023. There was 1 interview round.
Basic code to be written
I applied via Naukri.com and was interviewed in Mar 2022. There were 6 interview rounds.
Stored procedures are precompiled SQL statements that can be executed on demand, while triggers are automatically executed in response to specific events.
Stored procedures are explicitly called by the user, while triggers are automatically invoked by the database system.
Stored procedures can accept parameters and return values, while triggers cannot.
Stored procedures can be executed independently, while triggers are al...
Kernel is the core component of an operating system that manages system resources and provides a bridge between hardware and software.
Kernel is responsible for managing memory, processes, and device drivers.
It provides an interface for applications to access hardware resources.
Kernel operates in privileged mode and has direct access to the hardware.
Examples of popular kernels are Linux kernel, Windows NT kernel, and ma
Access specifiers in C++ are keywords that determine the visibility and accessibility of class members.
There are three access specifiers in C++: public, private, and protected.
Public members are accessible from anywhere in the program.
Private members are only accessible within the class itself.
Protected members are accessible within the class and its derived classes.
Access specifiers are used to enforce encapsulation a
Polymorphism is the ability of an object to take on many forms.
It allows objects of different classes to be treated as if they were objects of the same class.
It can be achieved through method overloading or method overriding.
Example: A shape class can have different subclasses like circle, square, etc. and all can be treated as shapes.
It helps in achieving code reusability and flexibility.
Operator overloading allows operators to have different meanings based on the operands they work on.
It allows operators to be used with user-defined data types
It can simplify code and make it more readable
Examples include using the + operator to concatenate strings or add numbers
Operators can be overloaded for unary and binary operations
Encapsulation is the process of hiding implementation details and providing a public interface for accessing the object.
Encapsulation helps in achieving data abstraction and information hiding.
It prevents unauthorized access to the internal state of an object.
It allows for better control over the data and its behavior.
Example: A bank account class with private variables for balance and account number, and public method...
I have worked on various projects involving web development, mobile app development, and data analysis.
Developed a web application using React.js and Node.js for managing customer orders.
Created a mobile app using Flutter for tracking daily expenses and generating expense reports.
Implemented a data analysis tool using Python and SQL to analyze customer behavior and improve marketing strategies.
My family background is diverse and has influenced my values and perspectives.
My parents come from different cultural backgrounds, which has exposed me to different traditions and languages.
I have siblings who are also in the software engineering field, which has fostered a supportive and collaborative environment.
My family has always encouraged education and personal growth, which has motivated me to pursue a career i
I am a software engineer with experience in developing and maintaining software applications.
I have a Bachelor's degree in Computer Science.
I have worked on various projects using different programming languages such as Java, C++, and Python.
I am skilled in software development methodologies like Agile and have experience with version control systems like Git.
I have strong problem-solving and analytical skills, which h...
My native place is a small town in the countryside known for its scenic beauty and peaceful environment.
My native place is located in the outskirts of a major city.
It is known for its rich cultural heritage and historical landmarks.
The people in my native place are warm and welcoming.
The local cuisine is famous for its unique flavors and traditional recipes.
There are several tourist attractions in and around my native ...
My favorite moment was when I successfully completed a complex software project ahead of schedule.
Successfully completing a complex software project ahead of schedule
Receiving positive feedback from clients and team members
Seeing the impact of my work on improving efficiency or solving a problem
Collaborating with a talented and supportive team
Overcoming challenges and finding innovative solutions
I have worked on various projects involving web development, mobile app development, and data analysis.
Developed a web application using React.js and Node.js for managing customer orders.
Created a mobile app using Flutter for tracking daily expenses and generating reports.
Implemented data analysis algorithms in Python to analyze customer behavior and improve marketing strategies.
I am a software engineer with 5 years of experience in developing web applications using Java and JavaScript.
5 years of experience in software engineering
Proficient in Java and JavaScript
Developed web applications
Strong problem-solving skills
Experience with agile development methodologies
I am a software engineer with experience in developing and maintaining software applications.
I have a Bachelor's degree in Computer Science.
I have worked on various projects using different programming languages such as Java, C++, and Python.
I am skilled in software development methodologies like Agile and have experience with version control systems like Git.
I have strong problem-solving and analytical skills, which h...
I applied via campus placement at Motilal Nehru Institute National Institute of Technology (NIT), Allahabad and was interviewed in May 2022. There were 4 interview rounds.
There was 2 coding question
One was easy One was very Difficult
20 MCQ question from Operating system and DBMS
Find the longest consecutive subarray.
Iterate through the array and keep track of the current subarray length.
Update the maximum length as you iterate.
Reset the current subarray length when a non-consecutive element is encountered.
Minimum Spanning Tree (MST) is a tree that connects all vertices in a graph with minimum total edge weight.
MST can be found using Prim's algorithm or Kruskal's algorithm.
Prim's algorithm starts with a single vertex and adds the closest vertex to the tree until all vertices are included.
Kruskal's algorithm starts with the edges with the lowest weight and adds them to the tree as long as they don't create a cycle.
MST has...
I applied via Campus Placement and was interviewed in Apr 2022. There was 1 interview round.
I was interviewed in Dec 2020.
Round duration - 60 minutes
Round difficulty - Easy
It was a technical interview round which was online in Amazon chime. The first question was- Tell me about yourself. Then he asked about my technical skills like- in which language I code, what all topics do I know. Then he asked me questions on networking
1) Explain DNS
2) What is DHCP
3) What is SIP protocol
4) Difference between TCP/UDP
5) Difference between HTTP/HTTPs
6) What is proxy server.
7) Some basics Linux commands
8) What is BCNF in DBM...
Let the two strings be x and y.
Let x(i) be the substring of x from index 0 to index i.
Let c[i, j] be the length of the longest common subsequence of strings x(i) and y(j).
Then the recurrence relation to find c[i, j] is as follows:
We can use this relation to write a simple recursive program but instead of recomputing the results of subproblems, compute them just once and store their results in a l...
Round duration - 100 minutes
Round difficulty - Medium
This was the second technical round.
1) Tell me about yourself
2) What skills did you learned in this lockdown period.
3) Explain your project (any 1)
4) Was there any situation while doing your project where your team was not a...
The given linked list is 1 -> 2 -> 3 -> 4-> NU...
The brute force approach is to use recursion. First, we reach the end of the Linked List recursively and at last node, we return the last node, which becomes the new head of the partially reversed Linked List. While coming back from each recursion call we add the current node in the current recursion call to the last node of the partially reversed Linked List and assign the current node to null.
Steps:
&...
The given linked list is 1 -> 2 -> 3 -> 4-> NULL. Then t...
The brute force approach is to use recursion. First, we reach the end of the Linked List recursively and at last node, we return the last node, which becomes the new head of the partially reversed Linked List. While coming back from each recursion call we add the current node in the current recursion call to the last node of the partially reversed Linked List and assign the current node to null.
Steps:
&...
Tip 1 : Problem-solving Ability, how to approach a problem, they will tell you to write the logic of the code(most optimized).
Tip 2 : Practice coding from any platforms like leetcode, GFG (solve easy and medium level questions)
Tip 3 : The major shortlisting is done in the first round that is the test(MCQ and Coding) so prepare CSE fundamentals very well (especially networking(all types of protocols like TCP/IP, DHCP, SIP, etc) , JAVA, real applications of data structures, software testing)
Tip 4 : Linux basic commands.
Tip 5 : Mention at least 2 projects which you know very well. Topics like ML, DL make a higher weightage.
Tip 6 : Communications skills should be strong.
Tip 1 : Mention only those skills which you know very well, don't put any false things, they will catch you easily.
Tip 2 : If you have done projects on the skills which you have mentioned makes a higher weightage.
Tip 3 : Certification courses on the latest technology like Big DATA, ML, AI act as bar raiser.
Tip 4 : Number of projects doesn't matter, quality of projects matter (which are build to sole real-life problems).
I applied via Naukri.com and was interviewed in Sep 2020. There were 3 interview rounds.
based on 1 review
Rating in categories
Softwaretest Engineer
160
salaries
| ₹2.8 L/yr - ₹5 L/yr |
Test Engineer
30
salaries
| ₹3 L/yr - ₹5 L/yr |
Automation Test Engineer
28
salaries
| ₹3.5 L/yr - ₹5.5 L/yr |
QA Engineer
20
salaries
| ₹2.5 L/yr - ₹5.5 L/yr |
Software Engineer
18
salaries
| ₹3.2 L/yr - ₹4.9 L/yr |
TCS
Accenture
Cognizant
Infosys