๐ Sprinklr Campus Hiring Challenge | Product Engineer | 3.5 LPA+
* Job Role : Product Engineer
* Education : Bachelor's degree
* Batch : 2021, 2022
* Job Location : Bangalore/Gurgaon, India
* Package : 3.5 LPA+
https://fresherearth.blogspot.com/2021/08/sprinklr-campus-hiring-challenge.html
* Job Role : Product Engineer
* Education : Bachelor's degree
* Batch : 2021, 2022
* Job Location : Bangalore/Gurgaon, India
* Package : 3.5 LPA+
https://fresherearth.blogspot.com/2021/08/sprinklr-campus-hiring-challenge.html
FresherEarth - Get All Latest Jobs Here
Sprinklr Campus Hiring Challenge
fresher jobs, freshers jobs, off campus jobs, latest fresher jobs, fresher jobs bangalore, fresher jobs hyderabad, latest walk in drive
Forwarded from ๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ (S S)
Now correct
That time I just checked one test case๐
Very cool number
That time I just checked one test case๐
Very cool number
๐ฐ Dunzo Answers
1. select id, name
from student
order by score desc, id asc
limit 3;
2. SELECT IFNULL(customer_name, "N/A") customer_name, IFNULL(product_name, "N/A") product_name, IFNULL(quantity, 0) quantity
FROM ((customer LEFT OUTER JOIN invoice ON customer.id = invoice.customer_id) LEFT OUTER JOIN invoice_item ON invoice_item.invoice_id = invoice.id) LEFT OUTER JOIN product ON invoice_item.product_id = product.id
ORDER BY customer.id, product.id;
3. SELECT
p.product_name,
(COALESCE (SUM(CASE WHEN i.time_paid is null and i.time_canceled is null and i.time_refunded is null IS NOT NULL THEN it.quantity * it.price ELSE 0 END ),0)) as due,
(COALESCE (SUM(CASE WHEN i.time_paid IS NOT NULL THEN it.quantity * it.price ELSE 0 END ),0)) as paid,
(COALESCE (SUM(CASE WHEN i.time_canceled IS NOT NULL THEN it.quantity * it.price ELSE 0 END ),0)) as canceled,
(COALESCE (SUM(CASE WHEN i.time_refunded IS NOT NULL THEN it.quantity * it.price ELSE 0 END ),0)) as refunded
FROM
PRODUCT p
LEFT OUTER JOIN invoice_item it ON p.id = it.product_id
LEFT OUTER JOIN invoice i ON it.invoice_id = i.id
GROUP BY
product_name
ORDER BY
p.id ASC
4. SELECT c.name,
c.phone,
SUM(CASE WHEN h.direction = 'in' THEN h.duration END) as IncomingCost,
SUM(CASE WHEN h.direction = 'out' AND h.duration > 120 THEN 500 + 2*(h.duration-120)
ELSE 2*(h.duration-120)
END) as OutgoingCost,
SUM(CASE WHEN h.direction = 'in' THEN h.duration END +
CASE WHEN h.direction = 'out' AND h.duration > 120 THEN 500 + 2*(h.duration-120)
ELSE 2*(h.duration-120)
END) as TotalCost
FROM customer c
JOIN (SELECT 'out' as directon, duration, dialed_on, outgoing_phone as phone
FROM history
WHERE YEAR(dialed_on) = 1995
AND MONTH(dialed_on) = 1
UNION ALL
SELECT 'in' as direction, duration, dialed_on, incoming_phone as phone
FROM history
WHERE YEAR(dialed_on) = 1995
AND MONTH(dialed_on) = 1
) h ON c.phone = h.phone
GROUP BY c.name,
c.phone
5. select c.company_code, c.founder,
count(distinct l.lead_manager_code), count(distinct s.senior_manager_code),
count(distinct m.manager_code),count(distinct e.employee_code)
from Company c, Lead_Manager l, Senior_Manager s, Manager m, Employee e
where c.company_code = l.company_code
and l.lead_manager_code=s.lead_manager_code
and s.senior_manager_code=m.senior_manager_code
and m.manager_code=e.manager_code
group by c.company_code order by c.company_code;
1. select id, name
from student
order by score desc, id asc
limit 3;
2. SELECT IFNULL(customer_name, "N/A") customer_name, IFNULL(product_name, "N/A") product_name, IFNULL(quantity, 0) quantity
FROM ((customer LEFT OUTER JOIN invoice ON customer.id = invoice.customer_id) LEFT OUTER JOIN invoice_item ON invoice_item.invoice_id = invoice.id) LEFT OUTER JOIN product ON invoice_item.product_id = product.id
ORDER BY customer.id, product.id;
3. SELECT
p.product_name,
(COALESCE (SUM(CASE WHEN i.time_paid is null and i.time_canceled is null and i.time_refunded is null IS NOT NULL THEN it.quantity * it.price ELSE 0 END ),0)) as due,
(COALESCE (SUM(CASE WHEN i.time_paid IS NOT NULL THEN it.quantity * it.price ELSE 0 END ),0)) as paid,
(COALESCE (SUM(CASE WHEN i.time_canceled IS NOT NULL THEN it.quantity * it.price ELSE 0 END ),0)) as canceled,
(COALESCE (SUM(CASE WHEN i.time_refunded IS NOT NULL THEN it.quantity * it.price ELSE 0 END ),0)) as refunded
FROM
PRODUCT p
LEFT OUTER JOIN invoice_item it ON p.id = it.product_id
LEFT OUTER JOIN invoice i ON it.invoice_id = i.id
GROUP BY
product_name
ORDER BY
p.id ASC
4. SELECT c.name,
c.phone,
SUM(CASE WHEN h.direction = 'in' THEN h.duration END) as IncomingCost,
SUM(CASE WHEN h.direction = 'out' AND h.duration > 120 THEN 500 + 2*(h.duration-120)
ELSE 2*(h.duration-120)
END) as OutgoingCost,
SUM(CASE WHEN h.direction = 'in' THEN h.duration END +
CASE WHEN h.direction = 'out' AND h.duration > 120 THEN 500 + 2*(h.duration-120)
ELSE 2*(h.duration-120)
END) as TotalCost
FROM customer c
JOIN (SELECT 'out' as directon, duration, dialed_on, outgoing_phone as phone
FROM history
WHERE YEAR(dialed_on) = 1995
AND MONTH(dialed_on) = 1
UNION ALL
SELECT 'in' as direction, duration, dialed_on, incoming_phone as phone
FROM history
WHERE YEAR(dialed_on) = 1995
AND MONTH(dialed_on) = 1
) h ON c.phone = h.phone
GROUP BY c.name,
c.phone
5. select c.company_code, c.founder,
count(distinct l.lead_manager_code), count(distinct s.senior_manager_code),
count(distinct m.manager_code),count(distinct e.employee_code)
from Company c, Lead_Manager l, Senior_Manager s, Manager m, Employee e
where c.company_code = l.company_code
and l.lead_manager_code=s.lead_manager_code
and s.senior_manager_code=m.senior_manager_code
and m.manager_code=e.manager_code
group by c.company_code order by c.company_code;
What all mnc doing๐๐๐๐๐๐๐๐๐๐๐
Now Capgemini
Last date to register Sep 1, 2021
https://www.capgemini.com/in-en/careers/pooled-campus-recruitment-drive-for-engineering-and-mca/?utm_source=tpo_mailers&utm_medium=college_campus&utm_campaign=pooledcampus_drive_aug_21
Now Capgemini
Last date to register Sep 1, 2021
2021 Batch
https://www.capgemini.com/in-en/careers/pooled-campus-recruitment-drive-for-engineering-and-mca/?utm_source=tpo_mailers&utm_medium=college_campus&utm_campaign=pooledcampus_drive_aug_21
๐๐ Giveaway Time ๐๐
๐What will you get in this giveaway?
๐When is our Giveaway?
๐What will you get in this giveaway?
30 X StupidTechy.Me VIP Membership Accounts
๐How to participate in the giveaway?Make sure that you have an account on StuipdTechy.
You have to invite your friends/classmates to our group (@sup777exams).
โ
Winner will be selected Randomly.๐When is our Giveaway?
A giveaway will happen when we reach 4k members in our group.
๐งIf you have any query related to Giveaway... Ping my Bot ๐โ๐จ @sup777exams_bot*IBM opportunity For Fresher*
๐ฏIBM Off Campus Hiring Associate System Engineer Fresher
*Freshers Don't Miss this Chance*
๐ฏIBM Off Campus Hiring Associate System Engineer Fresher
Location : PAN India
Qualification : B.E/B.Tech/M.E/M.Tech/MCA
Work Experience : Fresher
CTC : 4 LPA
Batch : 2019/2020/2021/2022
Apply Before Expired
Apply Link : https://fresherearth.blogspot.com/2021/08/IBM-Off-Campus-Drive-2021-Associate-System-Engineer-Freshers-BE-B.Tech-ME-M.Tech-MCA-Bangalore.html*Freshers Don't Miss this Chance*
FresherEarth - Get All Latest Jobs Here
IBM Off Campus Drive 2021: Associate System Engineer | Freshers | BE/ B.Tech/ ME/ M.Tech/ MCA | Bangalore
fresher jobs, freshers jobs, off campus jobs, latest fresher jobs, fresher jobs bangalore, fresher jobs hyderabad, latest walk in drive
๐DeepIntent Off Campus Drive 2021: Hiring Freshers as QA Engineer | BE/ B.Tech | Pune
*Job Role : QA Engineer
*Experience : Freshers (2020/ 2021 Batch)
*Job Location : Pune
*Package : 3 LPA+
https://fresherearth.blogspot.com/2021/07/DeepIntent-Off-Campus-Drive-2021-Hiring-Freshers-as-QA-Engineer-BE-B.Tech-Pune.html
โ Important - Unmute & Pin this channel in your telegram app to never miss any updates
*Job Role : QA Engineer
*Experience : Freshers (2020/ 2021 Batch)
*Job Location : Pune
*Package : 3 LPA+
https://fresherearth.blogspot.com/2021/07/DeepIntent-Off-Campus-Drive-2021-Hiring-Freshers-as-QA-Engineer-BE-B.Tech-Pune.html
โ Important - Unmute & Pin this channel in your telegram app to never miss any updates
FresherEarth - Get All Latest Jobs Here
DeepIntent Off Campus Drive 2021: Hiring Freshers as QA Engineer | BE/ B.Tech | Pune
fresher jobs, freshers jobs, off campus jobs, latest fresher jobs, fresher jobs bangalore, fresher jobs hyderabad, latest walk in drive
If we helped in right way from your perspective you can appreciate us with donate option...
Donate Us - swiggy@apl
After that send us screenshot on our bot - @sup777exams_bot
Donate Us - swiggy@apl
After that send us screenshot on our bot - @sup777exams_bot
โ
โ
The Heroes Location - HackerRank Sql question
select id from superhero where latitude<50 and longitude <50;
select id from superhero where latitude<50 and longitude <50;
โ ๏ธโ ๏ธRulesโ ๏ธโ ๏ธ
๐ Don't flood messages here ,
like sending 10+ photos randomly
๐ First try Google , if u can't get answer there ,then send your questions here
๐ No,one will do pm to any admin
๐ All active members , try to help to help also. If you want further help
๐ All solutions will be posted in Channel @f_a_a_n_g_777 and @fresherearth so don't forget to subscribe our channel
๐ Don't flood messages here ,
like sending 10+ photos randomly
๐ First try Google , if u can't get answer there ,then send your questions here
๐ No,one will do pm to any admin
๐ All active members , try to help to help also. If you want further help
๐ All solutions will be posted in Channel @f_a_a_n_g_777 and @fresherearth so don't forget to subscribe our channel
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ pinned ยซโ ๏ธโ ๏ธRulesโ ๏ธโ ๏ธ ๐ Don't flood messages here , like sending 10+ photos randomly ๐ First try Google , if u can't get answer there ,then send your questions here ๐ No,one will do pm to any admin ๐ All active members , try to help to help also. If you want furtherโฆยป
Forwarded from ๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ (Sanket Kumar)
๐๐ Giveaway Time ๐๐
๐What will you get in this giveaway?
๐When is our Giveaway?
๐What will you get in this giveaway?
30 X StupidTechy.Me VIP Membership Accounts
๐How to participate in the giveaway?Make sure that you have an account on StuipdTechy.
You have to invite your friends/classmates to our group (@sup777exams).
โ
Winner will be selected Randomly.๐When is our Giveaway?
A giveaway will happen when we reach 4k members in our group.
๐งIf you have any query related to Giveaway... Ping my Bot ๐โ๐จ @sup777exams_bot๐Acies Global Off Campus Drive 2021: Freshers | Software Developer | BE/ B.Tech | PAN India
Job Role : Software Developer
Qualification : B.E/B.Tech
Experience : 0 โ 1 years
Job Location : PAN India
Package : 3 LPA+
https://fresherearth.blogspot.com/2021/08/Acies-Global-Off-Campus-Drive-2021-Freshers-Software-Developer-BE-B.Tech-PAN-India.html
Job Role : Software Developer
Qualification : B.E/B.Tech
Experience : 0 โ 1 years
Job Location : PAN India
Package : 3 LPA+
https://fresherearth.blogspot.com/2021/08/Acies-Global-Off-Campus-Drive-2021-Freshers-Software-Developer-BE-B.Tech-PAN-India.html
FresherEarth - Get All Latest Jobs Here
Acies Global Off Campus Drive 2021: Freshers | Software Developer | BE/ B.Tech | PAN India
fresher jobs, freshers jobs, off campus jobs, latest fresher jobs, fresher jobs bangalore, fresher jobs hyderabad, latest walk in drive
โ
โ
#HackerRank - The Code Friends - Python HackerRank Solutions
https://stupidtechy.me/threads/the-code-friends-python-hackerrank-solutions.126/
https://stupidtechy.me/threads/the-code-friends-python-hackerrank-solutions.126/
StupidTechy.Me
HackerRank - The Code Friends - Python HackerRank Solutions
The Code Friends - Python HackerRank Solutions
Solution-
The Code Friends - Python HackerRank Solutions
Solution-
The Code Friends - Python HackerRank Solutions
โ
โ
#HackerEarth Substring deletion - C++ Solution
https://stupidtechy.me/threads/substring-deletion-c-solution.96/
https://stupidtechy.me/threads/substring-deletion-c-solution.96/
StupidTechy.Me
HackerEarth - Substring deletion - C++ Solution
Substring deletion - HackerEarth C++ Solution
Substring deletion
You are given a string C. You have to perform the following operations on it:
Pick any two non-overlapping substrings that are...
Substring deletion
You are given a string C. You have to perform the following operations on it:
Pick any two non-overlapping substrings that are...
โ
โ
Circular Printer - MapIt (MyAnatomy) Python Solution - Replicon Test Code
https://stupidtechy.me/threads/circular-printer-mapit-myanatomy-python-solution-replicon-test-code.116/
https://stupidtechy.me/threads/circular-printer-mapit-myanatomy-python-solution-replicon-test-code.116/
StupidTechy.Me
Premium - Circular Printer - MapIt (MyAnatomy) Python Solution -...
Circular Printer - MapIt (MyAnatomy) Python Solution - Replicon Test Code
Solution-
Circular Printer - MapIt (MyAnatomy) Python Solution - Replicon Test Code
Solution-
Circular Printer - MapIt (MyAnatomy) Python Solution - Replicon Test Code
โ
โ
Duplicated Products - MapIt (MyAnatomy) Python Solution - Replicon Test Code
https://stupidtechy.me/threads/duplicated-products-mapit-myanatomy-python-solution-replicon-test-code.117/
https://stupidtechy.me/threads/duplicated-products-mapit-myanatomy-python-solution-replicon-test-code.117/
StupidTechy.Me
Premium - Duplicated Products - MapIt (MyAnatomy) Python Solution...
Duplicated Products - MapIt (MyAnatomy) Python Solution - Replicon Test Code
Solutions-
Duplicated Products - MapIt (MyAnatomy) Python Solution - Replicon Test Code
For VIP Membership Upgrade:-...
Solutions-
Duplicated Products - MapIt (MyAnatomy) Python Solution - Replicon Test Code
For VIP Membership Upgrade:-...