Amazon On campus - Data Engineering Interview experience
1. Introduction
2. Projects
3. Types of data
4. Data warehouse and lake
5. In context with Amazon redshift
6. Snowflake and star schema
7. Simple join and sub query based sql question on livecoding platform
8. Simple count no. Of each letter in a string in python on livecoding
1. Introduction
2. Projects
3. Types of data
4. Data warehouse and lake
5. In context with Amazon redshift
6. Snowflake and star schema
7. Simple join and sub query based sql question on livecoding platform
8. Simple count no. Of each letter in a string in python on livecoding
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ pinned ยซAmazon On campus - Data Engineering Interview experience 1. Introduction 2. Projects 3. Types of data 4. Data warehouse and lake 5. In context with Amazon redshift 6. Snowflake and star schema 7. Simple join and sub query based sql question on livecodingโฆยป
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: LimeChat
Batch eligible: 2023 and 2024 passouts
Stipend - 50K per month
Duration - 6 months
Location - Bangalore Office
Preferred PPO is based on the performance during the internship period
Frontend Engineer intern :
https://limechat.zohorecruit.in/jobs/Careers/60755000003929358/Frontend-Engineering-Intern?trk=comments_comments-list_comment-text
Backend Engineer Intern :
https://limechat.zohorecruit.in/jobs/Careers/60755000003662124/Backend-Software-Engineering-Intern?trk=comments_comments-list_comment-text
Full Stack Engineer Intern :
https://limechat.zohorecruit.in/jobs/Careers/60755000003662002/Full-Stack-Engineering-Intern?trk=comments_comments-list_comment-text
ML Engineer Intern:
https://limechat.zohorecruit.in/jobs/Careers/60755000003662063/ML-Engineering-Intern?trk=comments_comments-list_comment-text
Batch eligible: 2023 and 2024 passouts
Stipend - 50K per month
Duration - 6 months
Location - Bangalore Office
Preferred PPO is based on the performance during the internship period
Frontend Engineer intern :
https://limechat.zohorecruit.in/jobs/Careers/60755000003929358/Frontend-Engineering-Intern?trk=comments_comments-list_comment-text
Backend Engineer Intern :
https://limechat.zohorecruit.in/jobs/Careers/60755000003662124/Backend-Software-Engineering-Intern?trk=comments_comments-list_comment-text
Full Stack Engineer Intern :
https://limechat.zohorecruit.in/jobs/Careers/60755000003662002/Full-Stack-Engineering-Intern?trk=comments_comments-list_comment-text
ML Engineer Intern:
https://limechat.zohorecruit.in/jobs/Careers/60755000003662063/ML-Engineering-Intern?trk=comments_comments-list_comment-text
LimeChat
LimeChat - Frontend Engineering Intern in Bangalore South
LimeChat We are seeking a dynamic Frontend Intern to join our team. The ideal candidate is a self-motivated hustler with a strong foundation in JavaSc
๐2
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define vll vector<long long>
void solve(vll adj[], ll n) {
bool vis[n + 1];
memset(vis, 0, sizeof vis);
priority_queue<ll, vll, greater<ll>> Q;
vis[1] = true;
Q.push(1);
while (!Q.empty()) {
ll now = Q.top();
Q.pop();
cout << now << " ";
for (auto p : adj[now]) {
if (!vis[p]) {
Q.push(p);
vis[p] = true;
}
}
}
}
int main() {
ll n = 3, m = 2;
vll adj[n + 1];
vll a = {1, 1};
vll b = {2, 3};
for (ll i = 0; i < m; i++) {
adj[a[i]].push_back(b[i]);
adj[b[i]].push_back(a[i]);
}
solve(adj, n);
return 0;
}
Forest traversal โ
using namespace std;
#define ll long long
#define vll vector<long long>
void solve(vll adj[], ll n) {
bool vis[n + 1];
memset(vis, 0, sizeof vis);
priority_queue<ll, vll, greater<ll>> Q;
vis[1] = true;
Q.push(1);
while (!Q.empty()) {
ll now = Q.top();
Q.pop();
cout << now << " ";
for (auto p : adj[now]) {
if (!vis[p]) {
Q.push(p);
vis[p] = true;
}
}
}
}
int main() {
ll n = 3, m = 2;
vll adj[n + 1];
vll a = {1, 1};
vll b = {2, 3};
for (ll i = 0; i < m; i++) {
adj[a[i]].push_back(b[i]);
adj[b[i]].push_back(a[i]);
}
solve(adj, n);
return 0;
}
Forest traversal โ
int calculateTotalWeight(vector<int>& weights) {
int totalWeight = 0;
while (!weights.empty()) {
auto minElementIter = min_element(weights.begin(), weights.end());
totalWeight += *minElementIter;
int index = distance(weights.begin(), minElementIter);
int start = max(0, index - 1);
int end = min(index + 1, static_cast<int>(weights.size()) - 1);
weights.erase(weights.begin() + start, weights.begin() + end + 1);
}
return totalWeight;
}
IBM โ
Total Weight
int totalWeight = 0;
while (!weights.empty()) {
auto minElementIter = min_element(weights.begin(), weights.end());
totalWeight += *minElementIter;
int index = distance(weights.begin(), minElementIter);
int start = max(0, index - 1);
int end = min(index + 1, static_cast<int>(weights.size()) - 1);
weights.erase(weights.begin() + start, weights.begin() + end + 1);
}
return totalWeight;
}
IBM โ
Total Weight
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Mindtickle
Role: SDE Intern
Batch eligible: 2024 passouts only
Apply: https://jobs.lever.co/mindtickle/f3d4179b-8392-4b26-b60b-23db265cf52c
Role: SDE Intern
Batch eligible: 2024 passouts only
Apply: https://jobs.lever.co/mindtickle/f3d4179b-8392-4b26-b60b-23db265cf52c
๐2
Happy Diwali Sbko๐ช, Ram Ram ๐๏ธ
โค8๐ฅ1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: embedUR systems
Role: Software Engineer
Batch eligible: 2023 grads
Apply: https://bit.ly/49IWQZN
Role: Software Engineer
Batch eligible: 2023 grads
Apply: https://bit.ly/49IWQZN
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Microsoft
Role: SRE Intern
Batch eligible: 2024 and 2025 passouts
Apply: https://jobs.careers.microsoft.com/us/en/job/1577275/Site-Reliability-Engineering:-Internship-Opportunities
Role: SRE Intern
Batch eligible: 2024 and 2025 passouts
Apply: https://jobs.careers.microsoft.com/us/en/job/1577275/Site-Reliability-Engineering:-Internship-Opportunities
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: IBM
Role: Software Engineer Intern
Batch eligible: 2023 and 2024 passouts can apply
Apply Link: https://careers.ibm.com/job/19135602/intern-software-engineer-remote/?codes=SN_LinkedIn&Codes=SN_LinkedIn
Role: Software Engineer Intern
Batch eligible: 2023 and 2024 passouts can apply
Apply Link: https://careers.ibm.com/job/19135602/intern-software-engineer-remote/?codes=SN_LinkedIn&Codes=SN_LinkedIn
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Equinix
Role: Data Science Intern
Batch eligible: 2024 passouts
Apply: https://careers.equinix.com/jobs/data-science-intern-bangalore-karnataka-india
Role: Data Science Intern
Batch eligible: 2024 passouts
Apply: https://careers.equinix.com/jobs/data-science-intern-bangalore-karnataka-india
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Branch International
Roles
1) Software Engineering Intern
Batch eligible: 2023 and 2024 passouts
Apply: https://branchinternational.applytojob.com/apply/5IEP0JcJSv/Software-Engineering-Intern
2) Android Software Engineer Intern
Batch eligible: 2024 passouts
Apply: https://branchinternational.applytojob.com/apply/9ab7GV5wE7/Android-Software-Engineer-Intern
Roles
1) Software Engineering Intern
Batch eligible: 2023 and 2024 passouts
Apply: https://branchinternational.applytojob.com/apply/5IEP0JcJSv/Software-Engineering-Intern
2) Android Software Engineer Intern
Batch eligible: 2024 passouts
Apply: https://branchinternational.applytojob.com/apply/9ab7GV5wE7/Android-Software-Engineer-Intern
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
We (Metastart) are urgently hiring immediate joiners!
โข Full Stack JAVASCRIPT Developer
โข Work Experience: 6-12 months.
โข Skills: JavaScript, ReactJS, NodeJS, MongoDB
We are a remote company based out of Bengaluru. please share your resume at srishti.gupta@metastart.in.
โข Full Stack JAVASCRIPT Developer
โข Work Experience: 6-12 months.
โข Skills: JavaScript, ReactJS, NodeJS, MongoDB
We are a remote company based out of Bengaluru. please share your resume at srishti.gupta@metastart.in.
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
โ๏ธLinde Engineering Off Campus Drive 2023 for Trainee Engineers | Rs. 3.75 โ 5.60 LPAโ๏ธ
๐จโ๐ป Job Role : Trainee Engineers
๐Qualification : B.E/B.Tech/M.E/M.Tech/Diploma
๐Experience : Freshers
๐ฐSalary : Rs. 3.75 โ 5.60 LPA
โญ๏ธ Apply Fast :
https://www.firstnaukri.com/careers/customised/landingpage/linde/index.html
๐จโ๐ป Job Role : Trainee Engineers
๐Qualification : B.E/B.Tech/M.E/M.Tech/Diploma
๐Experience : Freshers
๐ฐSalary : Rs. 3.75 โ 5.60 LPA
โญ๏ธ Apply Fast :
https://www.firstnaukri.com/careers/customised/landingpage/linde/index.html
Blackhawk Hiring Frontend Engineer
Batch : 2023, 2022, 2021 and before passout
Experience: fresher
Salary : 10 lpa - 18 lpa
Application link :
https://careers-blackhawknetwork.icims.com/jobs/20196/software-engineer---frontend-developer/job?mobile=true&width=360&height=664&bga=true&needsRedirect=false&jan1offset=330&jun1offset=330
Batch : 2023, 2022, 2021 and before passout
Experience: fresher
Salary : 10 lpa - 18 lpa
Application link :
https://careers-blackhawknetwork.icims.com/jobs/20196/software-engineer---frontend-developer/job?mobile=true&width=360&height=664&bga=true&needsRedirect=false&jan1offset=330&jun1offset=330
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ pinned ยซBlackhawk Hiring Frontend Engineer Batch : 2023, 2022, 2021 and before passout Experience: fresher Salary : 10 lpa - 18 lpa Application link : https://careers-blackhawknetwork.icims.com/jobs/20196/software-engineer---frontend-developer/job?mobile=โฆยป
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
CISIN Hiring Trainee Software Engineer
Batch : 2023, 2022, 2021 passout
Experience: fresher
Salary : 4lpa - 5.5 lpa
Application link :
https://career.cisin.com/job/open-source-trainee-software-developer
Batch : 2023, 2022, 2021 passout
Experience: fresher
Salary : 4lpa - 5.5 lpa
Application link :
https://career.cisin.com/job/open-source-trainee-software-developer
Cyber Infrastructure (P) Ltd
Cyber Infrastructure is hiring - Ruby on Rails Jobs for Freshers | ROR Freshers Jobs in India
Begin your career as a fresher Ruby on Rails Developer. Apply for freshers Ruby on Rails positions and gain experience in web development. Check out the detailed job description and apply now!