Filter interviews by
Top trending discussions
I applied via Campus Placement and was interviewed in Jan 2021. There were 3 interview rounds.
Swap two numbers with and without temporary variable
Without temporary variable: Use addition and subtraction
With temporary variable: Use a third variable to store the value of one of the numbers
Example without temporary variable: a=5, b=7; a=a+b; b=a-b; a=a-b;
Example with temporary variable: a=5, b=7; temp=a; a=b; b=temp;
I applied via Campus Placement and was interviewed in Jan 2021. There were 4 interview rounds.
I applied via Campus Placement and was interviewed before Sep 2020. There were 4 interview rounds.
I applied via Referral and was interviewed in May 2021. There was 1 interview round.
I applied via Campus Placement and was interviewed in Apr 2021. There were 4 interview rounds.
I applied via Referral and was interviewed before Sep 2020. There were 5 interview rounds.
I applied via Campus Placement and was interviewed before Oct 2020. There were 3 interview rounds.
I appeared for an interview in Oct 2020.
Round duration - 60 Minutes
Round difficulty - Medium
Permutations of a string with fixed characters.
For 1st character fixed: Generate permutations for the remaining characters.
For 1st and 2nd characters fixed: Generate permutations for the remaining characters.
For 1st, 2nd, and 3rd characters fixed: Generate permutations for the remaining characters.
A thief is planning to rob a store and can carry a maximum weight of 'W' in his knapsack. The store contains 'N' items where the ith item has a weight of 'wi' and a value of...
Yes, the 0/1 Knapsack Problem can be solved using dynamic programming with a space complexity of not more than O(W).
Use a 1D array to store the maximum value that can be stolen for each weight capacity from 0 to W.
Iterate through each item and update the array based on whether including the item would increase the total value.
The final element of the array will contain the maximum value that can be stolen within the we
Tip 1 : Do atleast 1 internship
Tip 2 : Don't write anything vague or don't brag be honest with your resume
Tip 3 : Go through OOPS concepts thoroughly
Tip 1 : Mention your projects clearly they will definitely question about your projects
Tip 2 : Do mention about your coding/dsa achievements it makes a good impact on the interviewer
based on 1 review
Rating in categories
TCS
Accenture
Wipro
Cognizant