"I defaulted to a dictionary-style definition of autonomy, then loosely tied it to users and systems. But I missed the interviewer’s signal that this was really a design/strategy probe. Stopping at a generic level made it sound like I couldn’t translate agency into what matters for product — user trust, trade-offs, risk, and roadmap implications."
Tracy M. - "I defaulted to a dictionary-style definition of autonomy, then loosely tied it to users and systems. But I missed the interviewer’s signal that this was really a design/strategy probe. Stopping at a generic level made it sound like I couldn’t translate agency into what matters for product — user trust, trade-offs, risk, and roadmap implications."See full answer
"Clarifyig questons
Why do we want to re-design the feature? are there any existing problem with the existing DM feature? -- you figure out
Do we have any particular goal in mind which we want to achieve? related to Engagement, Session time etc? -- Think yourself
When we say DMs, this includes P2P, Message to business, Message to an open account or you have something else in mind? -- Think yourself
With that bieng said lets first understand what are the core use cases of the DM as a feature
P"
Shoaib H. - "Clarifyig questons
Why do we want to re-design the feature? are there any existing problem with the existing DM feature? -- you figure out
Do we have any particular goal in mind which we want to achieve? related to Engagement, Session time etc? -- Think yourself
When we say DMs, this includes P2P, Message to business, Message to an open account or you have something else in mind? -- Think yourself
With that bieng said lets first understand what are the core use cases of the DM as a feature
P"See full answer
Product Manager
Product Design
🧠 Want an expert answer to a question? Saving questions lets us know what content to make next.
"Something not mentioned in my resume is my hobbies. I have a strong interest in analyzing situations, which I enjoy as a mental exercise. I'm also skilled at painting and have a passion for reading books, which helps me broaden my perspective."
Manaswini D. - "Something not mentioned in my resume is my hobbies. I have a strong interest in analyzing situations, which I enjoy as a mental exercise. I'm also skilled at painting and have a passion for reading books, which helps me broaden my perspective."See full answer
"Function signature for reference:
def calculate(servers: List[int], k: int) -> int:
...
To resolve this, you can use binary search considering left=0 and right=max(servers) * k
so
Example:
servers=[1,4,5] First server handle 1 request in let's say 1 second, second 4 seconds and last 5 seconds.
k=10
So I want to know the minimal time to process 10 requests
Get the mid for timeline
mid = (left+right)//2 -> mid is 25
Check how many we could process
25//1 = 25 25//4=6 25//5=5 so 25 + 6 +"
Babaa - "Function signature for reference:
def calculate(servers: List[int], k: int) -> int:
...
To resolve this, you can use binary search considering left=0 and right=max(servers) * k
so
Example:
servers=[1,4,5] First server handle 1 request in let's say 1 second, second 4 seconds and last 5 seconds.
k=10
So I want to know the minimal time to process 10 requests
Get the mid for timeline
mid = (left+right)//2 -> mid is 25
Check how many we could process
25//1 = 25 25//4=6 25//5=5 so 25 + 6 +"See full answer
"Control plane has few component, it's like the brain of the cluster, the data plane is the work horse, CP has etcd, api-server, DP has kublet and kube-proxy"
Hyder A. - "Control plane has few component, it's like the brain of the cluster, the data plane is the work horse, CP has etcd, api-server, DP has kublet and kube-proxy"See full answer
"I started going through the different main area of focus
stakeholder alignment with Product and engineering; resource alignment
getting it into the backlog and then prioritization
spoke about Sprint planning and timelines and timely communication back to stakeholders to be on track for this end to end
demo / pilot options
(but HM already wasn't too happy about the response and asked me the Question again)"
Anonymous Hummingbird - "I started going through the different main area of focus
stakeholder alignment with Product and engineering; resource alignment
getting it into the backlog and then prioritization
spoke about Sprint planning and timelines and timely communication back to stakeholders to be on track for this end to end
demo / pilot options
(but HM already wasn't too happy about the response and asked me the Question again)"See full answer
"Implementing the anomaly Machine learning using some algorithm like Isolation Forest algorithm DBscan algorithm and local data point find algorithm."
Suhas P. - "Implementing the anomaly Machine learning using some algorithm like Isolation Forest algorithm DBscan algorithm and local data point find algorithm."See full answer
"It was like say we have a library A which has a library B as a dependency and so on, how would we determine in the dependency chain that whether there is a circular depedency?"
Chris R. - "It was like say we have a library A which has a library B as a dependency and so on, how would we determine in the dependency chain that whether there is a circular depedency?"See full answer
"Given a Binary Tree, the task is to find its vertical traversal starting from the leftmost level to the rightmost level. If multiple nodes pass through a vertical line, they should be printed as they appear in the level order traversal of the tree.
The idea is to traverse the tree using dfs and maintain a hashmap to store nodes at each horizontal distance (HD) from the root. Starting with an HD of 0 at the root, the HD is decremented for left children and incremented for right children. As we"
Anonymous Mongoose - "Given a Binary Tree, the task is to find its vertical traversal starting from the leftmost level to the rightmost level. If multiple nodes pass through a vertical line, they should be printed as they appear in the level order traversal of the tree.
The idea is to traverse the tree using dfs and maintain a hashmap to store nodes at each horizontal distance (HD) from the root. Starting with an HD of 0 at the root, the HD is decremented for left children and incremented for right children. As we"See full answer