Sdet Intern
Sdet Intern Interview Questions and Answers

Asked in Appnox Technologies

Q. How do you investigate a bug that appears unexpectedly?
Investigate unexpected bugs by analyzing logs, reproducing issues, and collaborating with the team for insights.
Check logs for error messages or unusual patterns. For example, if a web app crashes, look for stack traces in server logs.
Reproduce the bug by following the same steps that led to the issue. This helps in understanding the conditions under which it occurs.
Review recent code changes or deployments that might have introduced the bug. For instance, if a feature was re...read more

Asked in HSBC Group

Q. Sort Strings Greatest element in array
Find the greatest element in an array of strings.
Convert the strings to numbers if applicable before comparing.
Use a loop to iterate through the array and keep track of the greatest element.
Handle edge cases like empty array or non-numeric strings.
Sdet Intern Interview Questions and Answers for Freshers

Asked in Appnox Technologies

Q. What is the role of an SDE?
SDEs (Software Development Engineers) design, develop, and maintain software applications and systems.
Design software architecture: SDEs create the blueprint for software applications, ensuring scalability and maintainability.
Write code: They implement features and functionalities using programming languages like Java, Python, or C++.
Debug and troubleshoot: SDEs identify and fix bugs in the software to ensure smooth operation.
Collaborate with teams: They work with product man...read more
Asked in Medbikri Technologies

Q. Create an Olympics logo using React.
Create a Olympics logo using React.
Use SVG elements to create the rings of the logo.
Utilize CSS for styling and positioning of the rings.
Consider using React components to modularize the design.
Implement animations for a dynamic effect.
Ensure responsiveness for different screen sizes.

Asked in Amazon

Q. Border level traversal of tree
Border level traversal of a tree involves visiting the nodes at the outermost edges of the tree in a clockwise or counterclockwise direction.
Start by visiting the nodes in the leftmost column from top to bottom, excluding the leaf nodes.
Then visit the leaf nodes from left to right at the bottom of the tree.
Next, visit the nodes in the rightmost column from bottom to top, excluding the leaf nodes.
Finally, visit the leaf nodes from right to left at the top of the tree.

Asked in Amazon

Q. Given a binary tree and a target node, burn the tree starting from the target node. Find the time (in minutes) it takes to burn the entire tree.
Implement a function to burn a tree starting from a given node
Start by creating a function that takes in the root node of the tree and the node to start burning from
Use a queue to perform a level order traversal of the tree
Keep track of the nodes that have been burned and the nodes that are yet to be burned
Sdet Intern Jobs



Asked in Accelya Solutions India Limited

Q. Given the head of a linked list, determine if the linked list has a cycle in it. There is a cycle in a linked list if there is some node in the list that can be reached again by continuously following the next...
read moreUse Floyd's Tortoise and Hare algorithm to detect loop in a linked list.
Initialize two pointers, slow and fast, at the head of the linked list.
Move slow pointer by one step and fast pointer by two steps.
If they meet at any point, there is a loop in the linked list.

Asked in CSG International

Q. Oops and it's concept
OOP (Object-Oriented Programming) is a programming paradigm based on objects and classes, promoting code reusability and organization.
Encapsulation: Bundling data and methods that operate on the data within one unit (e.g., a class).
Inheritance: Mechanism to create a new class using properties and methods of an existing class (e.g., a 'Dog' class inheriting from an 'Animal' class).
Polymorphism: Ability to present the same interface for different data types (e.g., method overri...read more
Share interview questions and help millions of jobseekers 🌟
Interview Questions of Similar Designations
Interview Experiences of Popular Companies








Reviews
Interviews
Salaries
Users

