"You should be able to easily identify this as a Measure Success question. These kinds of questions are used to test your analytical skills, as well as your ability to track project progress post-launch.
Recall the strategy for tackling them methodically and thoroughly:
Ask clarifying questions
State the goal of the feature / product
Behavior Mapping / UX Flow Mapping
Provide criteria to prioritize metrics
Prioritize metrics
Summarize
Let's begin!
"
Exponent - "You should be able to easily identify this as a Measure Success question. These kinds of questions are used to test your analytical skills, as well as your ability to track project progress post-launch.
Recall the strategy for tackling them methodically and thoroughly:
Ask clarifying questions
State the goal of the feature / product
Behavior Mapping / UX Flow Mapping
Provide criteria to prioritize metrics
Prioritize metrics
Summarize
Let's begin!
"See full answer
"Before I begin, I would confirm the idea of Stories as "phone-shot video with light editing to share a person's current experience in a short form video". I would also ask if they would be integrated into the current application or a standalone service.
The process I'll use is to think through twitter's mission, outline its current user personas and how they use twitter. Articulate a rubric framework for stakeholder needs, and then compare the stories idea against that.
To start off with the m"
Anonymous Wallaby - "Before I begin, I would confirm the idea of Stories as "phone-shot video with light editing to share a person's current experience in a short form video". I would also ask if they would be integrated into the current application or a standalone service.
The process I'll use is to think through twitter's mission, outline its current user personas and how they use twitter. Articulate a rubric framework for stakeholder needs, and then compare the stories idea against that.
To start off with the m"See full answer
"Lets start with assumptions
100m people go out to bars in US
Assuming COVID is behind us
Also assuming this is annually and not monthly or daily (though it might be better to ask this)
Step 1: Why should Google build something like this
Google Mission: Make information accessible and useful
Google's current state: Focus on improving current products (improve engagement and thus monetization) while also building things for future (growth)
Product Mission: Make going to bar a"
Date G. - "Lets start with assumptions
100m people go out to bars in US
Assuming COVID is behind us
Also assuming this is annually and not monthly or daily (though it might be better to ask this)
Step 1: Why should Google build something like this
Google Mission: Make information accessible and useful
Google's current state: Focus on improving current products (improve engagement and thus monetization) while also building things for future (growth)
Product Mission: Make going to bar a"See full answer
"I will work with data scientist to implement anomaly detection models to flag any deviations in a business’s review patterns over time. Like if any sudden influx of positive reviews after a negative review could indicate a reputation management effort. Or Any like any bot reviews happening in quick sessions happening from different cities/geo locations"
Anonymous Duck - "I will work with data scientist to implement anomaly detection models to flag any deviations in a business’s review patterns over time. Like if any sudden influx of positive reviews after a negative review could indicate a reputation management effort. Or Any like any bot reviews happening in quick sessions happening from different cities/geo locations"See full answer
"function isPalindrome(s, start, end) {
while (s[start] === s[end] && end >= start) {
start++;
end--;
}
return end <= start;
}
function longestPalindromicSubstring(s) {
let longestPalindrome = '';
for (let i=0; i < s.length; i++) {
let j = s.length-1;
while (s[i] !== s[j] && i <= j) {
j--;
}
if (s[i] === s[j]) {
if (isPalindrome(s, i, j)) {
const validPalindrome = s.substring(i, j+1"
Tiago R. - "function isPalindrome(s, start, end) {
while (s[start] === s[end] && end >= start) {
start++;
end--;
}
return end <= start;
}
function longestPalindromicSubstring(s) {
let longestPalindrome = '';
for (let i=0; i < s.length; i++) {
let j = s.length-1;
while (s[i] !== s[j] && i <= j) {
j--;
}
if (s[i] === s[j]) {
if (isPalindrome(s, i, j)) {
const validPalindrome = s.substring(i, j+1"See full answer