11gupt
BAN USER
- 0of 0 votes
Answersthere are 3 tables :
- 11gupt in United States
Movie = {movie_id, .....}
Actor = {actor_id, gender, .....}
Movie_Actor = {movie_id, actor_id,....}
Find the pair of movie actor ( male) and actress ( female) who appeared in most movies together.| Report Duplicate | Flag | PURGE
SQL - 0of 0 votes
AnswersTablea Order = {order_id, order_timestamp, total_sale_amount, ....}
- 11gupt in United States
Note => Trimmed Mean = remove top and bottom 5 percentile data to remove outliers. Take the average of middle 90% of the data.
you can use function percentile(Col_name, 0.95)
output should look like => {Date, raw_average, trimmed_average}| Report Duplicate | Flag | PURGE
SQL - 0of 0 votes
AnswersCan we write a Fixed LOD inside a Fixed LOD.
- 11gupt in United States| Report Duplicate | Flag | PURGE
Tableau None Data analysis - 0of 0 votes
AnswersThere is Tableu dashboard on Production server and you dont have access to it. You have this dashboard with staging data(not production data). This dashboard has performance issue. How will you fix this problem.
- 11gupt in United States| Report Duplicate | Flag | PURGE
Tableau None Data analysis - 0of 0 votes
AnswersEmployee Salary Department
- 11gupt in United States
A 1000 IT
B 2000 IT
C 3000 IT
D 4000 HR
E 2000 HR
F 1500 IT
G 7000 HR
Write a query to get results like below -
Employee Salary Next highest salary(in same department) Department
A 1000 2000 IT
B 2000 3000 IT
.
.
E 2000 4000 HR| Report Duplicate | Flag | PURGE
Data Engineer - 0of 0 votes
AnswersIf ( a = True){
- 11gupt in United States
If (b = True){
Approve credit card;
}
Else {
Disapprove credit card;
}
}
Else {
If(C=False){
IF(D=True){
Approve Credit card;
}
else {
Diapprove credit card;
}
}
}
Simplify above written code.| Report Duplicate | Flag | PURGE
Data Engineer Java - 0of 0 votes
AnswersWhile designing a Table in database, how will you determine its performance?
- 11gupt in United States| Report Duplicate | Flag | PURGE
Data Engineer SQL