Filter interviews by
Be the first one to contribute and help others!
posted on 29 Jun 2015
posted on 29 Jun 2015
I applied via Campus Placement and was interviewed before Aug 2020. There were 4 interview rounds.
Recursive functions solve problems by breaking them down into smaller subproblems, often leading to elegant solutions.
A recursive function calls itself with modified parameters.
Base case is crucial to prevent infinite recursion.
Example: Factorial function - factorial(n) = n * factorial(n-1) with base case factorial(0) = 1.
Example: Fibonacci sequence - fib(n) = fib(n-1) + fib(n-2) with base cases fib(0) = 0, fib(1) = 1.
...
posted on 1 Apr 2021
posted on 1 Apr 2021
posted on 1 Apr 2021
posted on 7 Dec 2021
I applied via Campus Placement and was interviewed before Dec 2020. There were 3 interview rounds.
posted on 13 Sep 2021
I applied via Recruitment Consultant and was interviewed in Mar 2021. There was 1 interview round.
posted on 16 Nov 2021
I applied via Campus Placement and was interviewed before Nov 2020. There were 3 interview rounds.
I applied via Naukri.com and was interviewed in Apr 2021. There were 3 interview rounds.
Bug/defect life cycle is a process of identifying, reporting, prioritizing, fixing, and verifying software defects.
Defect identification
Defect reporting
Defect prioritization
Defect fixing
Defect verification
Smoke testing is a quick and shallow test to check basic functionality, while sanity testing is a more thorough test to ensure system stability.
Smoke testing is done to check if the critical functionalities of the system are working or not.
Sanity testing is done to check if the system is stable enough to proceed with further testing.
Smoke testing is usually done after a build is deployed, while sanity testing is done a...