I had a phone screen for meta E6 engineer done. We spent 30-35 minutes on behavioral questions and 30 minutes on two coding questions
Behavioral questions:
Q1. Can you tell about any project that had the most business impact.
The goal here is to understand cross functional and cross org complexities. And how you dealt with it.
Q2. Can you tell about any project where there were conflicts.
Interviewer wanted to understand my role in conflict resolution.
Coding questions:
Q1. https://leetcode.com/problems/valid-palindrome/description/ Given a string with special characters, will the string be palindrome if all special characters are removed. You can assume a function which takes a character and tell where this is a special character or not.
Q2. https://leetcode.com/problems/reverse-linked-list/description/ Print the elements of a linked list in reverse order. Gave the solution using recurssion, but interviwer wanted a solution without recurssion. I gave an iterative solution where we modify the next element to the previous element.