"I will start with discussing the Google mission statement, which is to organize the world's information and make it easily accessible to everyone to help them get things done, and make their day a bit easier.
I will think about building something that will leapfrog this mission.
Google has already organized all of the world's public digital information in the current state. There are opportunities to get more information into a digital form. But there are also significant improvements in mak"
Praveen - "I will start with discussing the Google mission statement, which is to organize the world's information and make it easily accessible to everyone to help them get things done, and make their day a bit easier.
I will think about building something that will leapfrog this mission.
Google has already organized all of the world's public digital information in the current state. There are opportunities to get more information into a digital form. But there are also significant improvements in mak"See full answer
"Google mission is to organize worlds information and make it universally accessible and useful.
Keeping that in mind will focus on what should be the solve for emerging market.
Clarification: Any specific country Google is thinking about ?
Answer: lets say Ghana it has come often as one of the fast emerging markets and untapped
Clarification: Goal is monetization or growth
Answer: We are entering the market so growth
Based on the clarification above I will think about user segments, p"
Sumeet R. - "Google mission is to organize worlds information and make it universally accessible and useful.
Keeping that in mind will focus on what should be the solve for emerging market.
Clarification: Any specific country Google is thinking about ?
Answer: lets say Ghana it has come often as one of the fast emerging markets and untapped
Clarification: Goal is monetization or growth
Answer: We are entering the market so growth
Based on the clarification above I will think about user segments, p"See full answer
"A high level framework
Clarifications:
Reactions already exist in Instagram?
Any specific region or user group we try to target for the launch?
...
Product description:
IG is ...
Reactions are Emoji alike icons users can use to reply to posts/photos/comments
FB's mission:
Help people stay connected and build communities
IG's mission/goal:
Allow users to capture world's moments and share with friends
Reactions Goal:
To provide users an easier way to react to the content and to bet"
Kai W. - "A high level framework
Clarifications:
Reactions already exist in Instagram?
Any specific region or user group we try to target for the launch?
...
Product description:
IG is ...
Reactions are Emoji alike icons users can use to reply to posts/photos/comments
FB's mission:
Help people stay connected and build communities
IG's mission/goal:
Allow users to capture world's moments and share with friends
Reactions Goal:
To provide users an easier way to react to the content and to bet"See full answer
"-- Write your query here
with cte as
(
SELECT e.Emp_ID,
e.First_Name,
e.Middle_Name,
e.Last_Name,
e.Manager_ID,
e.Country,
s.Salary as original_salary,
CASE
WHEN Country = 'IRELAND' THEN s.Salary*1.09
WHEN Country = 'INDIA' THEN s.Salary*0.012
ELSE s.Salary
END AS Salary
FROM tbl_Employee e
LEFT JOIN tbl_EmployeeSalary s
ON e.Emp_ID = s.Emp"
Abhishek K. - "-- Write your query here
with cte as
(
SELECT e.Emp_ID,
e.First_Name,
e.Middle_Name,
e.Last_Name,
e.Manager_ID,
e.Country,
s.Salary as original_salary,
CASE
WHEN Country = 'IRELAND' THEN s.Salary*1.09
WHEN Country = 'INDIA' THEN s.Salary*0.012
ELSE s.Salary
END AS Salary
FROM tbl_Employee e
LEFT JOIN tbl_EmployeeSalary s
ON e.Emp_ID = s.Emp"See full answer
"Clarifying question?
What is GCP and what does it mean to create a new GCP region in Portugal?
GCP is Google Cloud Portugal. Creating a new region means creating data centres (clouds) which can be used as hosts.
Is there a business objective to consider Portugal for a new region?
None in particular
Structure:
Explore internal factors
Is there a particular business goal that we are trying to accomplish like goal of getting more business from EU companies in coming few years? If yes"
S Y. - "Clarifying question?
What is GCP and what does it mean to create a new GCP region in Portugal?
GCP is Google Cloud Portugal. Creating a new region means creating data centres (clouds) which can be used as hosts.
Is there a business objective to consider Portugal for a new region?
None in particular
Structure:
Explore internal factors
Is there a particular business goal that we are trying to accomplish like goal of getting more business from EU companies in coming few years? If yes"See full answer
"import string
from collections import defaultdict
def mostcommonwords(text):
d = defaultdict(int)
s = text.translate(str.maketrans('', '', string.punctuation))
for w in s.lower().split():
d[w] = d[w] + 1
return sorted(sorted(d.items()), reverse=True, key=lambda x: x[1])
`"
Michael S. - "import string
from collections import defaultdict
def mostcommonwords(text):
d = defaultdict(int)
s = text.translate(str.maketrans('', '', string.punctuation))
for w in s.lower().split():
d[w] = d[w] + 1
return sorted(sorted(d.items()), reverse=True, key=lambda x: x[1])
`"See full answer
"in simple words, linear regression helps in predicting the value whereas logistics regression helps in predicting the binary classification.
But lets talk through some example
Linear regression model: E-commerce website pricing recommendation engine is built on linear regression model where we do have some variables such as competitor price, internal economics and consumer demand etc when we put this in a supervised learning model, it helps in predicting prices
Logistics regression model"
Anonymous Aardvark - "in simple words, linear regression helps in predicting the value whereas logistics regression helps in predicting the binary classification.
But lets talk through some example
Linear regression model: E-commerce website pricing recommendation engine is built on linear regression model where we do have some variables such as competitor price, internal economics and consumer demand etc when we put this in a supervised learning model, it helps in predicting prices
Logistics regression model"See full answer
"
The Situation
A few months ago, our trading platform started experiencing significant latency issues during peak trading hours. This latency was affecting our ability to process real-time market data and execute trades efficiently, potentially leading to substantial financial losses and missed opportunities.
Identifying the Problem
The first step was to identify the root cause of the latency. I organized a team meeting with our data engineers, DevOps, and network specialists to gather"
Scott S. - "
The Situation
A few months ago, our trading platform started experiencing significant latency issues during peak trading hours. This latency was affecting our ability to process real-time market data and execute trades efficiently, potentially leading to substantial financial losses and missed opportunities.
Identifying the Problem
The first step was to identify the root cause of the latency. I organized a team meeting with our data engineers, DevOps, and network specialists to gather"See full answer
" are we considering ride sharing app or also Uber Eats?
If we are considering Ride sharing app
Uber is successful when a Customer is safely dropped at its selected destination and Uber driver is paid for the drive.
For Uber to be successful in a new city we want to track
Number of completed rides per day/week
Number of customers who came back to the app for another ride after first one was completed.
Number of active drivers per day.
Number of drivers completing at least 1 ride"
Sanjana G. - " are we considering ride sharing app or also Uber Eats?
If we are considering Ride sharing app
Uber is successful when a Customer is safely dropped at its selected destination and Uber driver is paid for the drive.
For Uber to be successful in a new city we want to track
Number of completed rides per day/week
Number of customers who came back to the app for another ride after first one was completed.
Number of active drivers per day.
Number of drivers completing at least 1 ride"See full answer
"python:
def justifywords(wordslist, width):
result = []
currlinechar_count = 0
curr_words = []
for word in words_list:
if curr_words:
space_needed = len(word) + 1 # Space needed for the word and a preceding space
else:
space_needed = len(word)
if currlinecharcount + spaceneeded > width:
result.append(' '.join(curr_words))
curr_words = [word]
currlinechar_count = len("
Anonymous Unicorn - "python:
def justifywords(wordslist, width):
result = []
currlinechar_count = 0
curr_words = []
for word in words_list:
if curr_words:
space_needed = len(word) + 1 # Space needed for the word and a preceding space
else:
space_needed = len(word)
if currlinecharcount + spaceneeded > width:
result.append(' '.join(curr_words))
curr_words = [word]
currlinechar_count = len("See full answer
"Clarifying Questions
Improve Netflix; Geography? India
Vision - Becoming the best global entertainment distribution service
Objective:
Growth
Engagement
Retention
I would focus on Growth because
Highly growing adoption of internet
increasing purchasing power in T2&T3
Indian consumers are constantly in need of finding new content to watch
aligned with Netflix strategy of producing content for indian masses
I believe Netflix has a really good immersive viewing/wathcing"
Sandeep K. - "Clarifying Questions
Improve Netflix; Geography? India
Vision - Becoming the best global entertainment distribution service
Objective:
Growth
Engagement
Retention
I would focus on Growth because
Highly growing adoption of internet
increasing purchasing power in T2&T3
Indian consumers are constantly in need of finding new content to watch
aligned with Netflix strategy of producing content for indian masses
I believe Netflix has a really good immersive viewing/wathcing"See full answer
"Define the feature
A virtual card number is a temporary or disposable card number generated by your credit card issuer or financial institution. It is designed to protect your actual credit card information during online transactions. Its main purpose is the security of your actual credit card.
Clarification questions
No questions
What is the purpose of the feature?
Enhanced Security: Using a virtual card number protects your actual credit card details from being exposed to potentia"
Ekta M. - "Define the feature
A virtual card number is a temporary or disposable card number generated by your credit card issuer or financial institution. It is designed to protect your actual credit card information during online transactions. Its main purpose is the security of your actual credit card.
Clarification questions
No questions
What is the purpose of the feature?
Enhanced Security: Using a virtual card number protects your actual credit card details from being exposed to potentia"See full answer