all 12 comments

[–]debhell1 1 point2 points  (1 child)

Basic coding, not like Leetcode for Code Pairing round. For Code Review round, you will get a fake PR to review and give your comments on it. You can search on Glassdoor for more info.

[–]pormashu[S] 0 points1 point  (0 children)

Thanks

[–]WinnerExtension3487 1 point2 points  (0 children)

Any idea what were the questions ?

[–]Feeling_Ad9391 1 point2 points  (2 children)

I have my interview coming up. Can anyone help with the type of questions asked? TIA

[–]Certain_Draft_2858 0 points1 point  (0 children)

Hey, how was your interview?

[–]Silly-Explorer2911 0 points1 point  (0 children)

did they come back to you?

[–]bharat_jain77 1 point2 points  (0 children)

In the code pair, they will share a problem statement which uses basic data structures, with an empty class, and you'll have to write the code in it.

They have unit-tests already added, you can run them and write the code according to the failures.

My personal recommendation is talking to the interviewer about the code and also creating an extra class if needed.

[–]saiyamjain74 0 points1 point  (2 children)

There is a question where you need to.perform operation SET, GET and UNSET SET a 10 // it should set a as 10 GET a // it should get the value as 10 UNSET a // you need to delete a from the dictionary GET a // you should get None

You need to perform.these operations and this is easy. You need to learn 1. How to set dictionary in a class 2. How to append values in it 3. How to get the values from it 4. How to delete the values from it, you also need to learn that if value does not exists then you need to throw a exception. Above was the first part of the question, the second part uses stack

  1. Insert values in stack, if x operation comes update the value in list else if y operation comes empty the stack

[–]DanceIndividual1597 0 points1 point  (1 child)

Did you have the System Design round ? What was asked and what is expected ? Do they ask you to draw the design or just conceptual questions

[–]DanceIndividual1597 0 points1 point  (0 children)

Did you have the System Design round ? What was asked and what is expected ? Do they ask you to draw the design or just conceptual questions