Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Tisac is hiring for Frontend Developer Intern
Stipend: Paid Internship
Duration: 3โ6 months
Apply here: https://www.linkedin.com/jobs/view/4156147823/?alternateChannel=search
Stipend: Paid Internship
Duration: 3โ6 months
Apply here: https://www.linkedin.com/jobs/view/4156147823/?alternateChannel=search
Linkedin
Tisac hiring Frontend Developer Intern in Bengaluru, Karnataka, India | LinkedIn
Posted 12:04:28 PM. Job Description: Frontend Intern (Next.js Stack)We are building the future of customer support andโฆSee this and similar jobs on LinkedIn.
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Linkedin
#hiring2025 #students #internships #nextjs #node #typescript | Sourabh Mishra | 160 comments
๐ We are hiring SDE-Interns at OpenGig ๐
Role: SDE Intern - NextJs/NodeJs
Stipend: โน25k-30k Fixed (12 LPA (PPO) based on performance)
Number of Positions: 5
Location: Remote/Hyderabad
Contribute to real-world projects and build products for early-stageโฆ
Role: SDE Intern - NextJs/NodeJs
Stipend: โน25k-30k Fixed (12 LPA (PPO) based on performance)
Number of Positions: 5
Location: Remote/Hyderabad
Contribute to real-world projects and build products for early-stageโฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Z1 Tech is hiring for Junior Frontend Developer
Experience: 0 - 1 years
Expected Salary: 4-6 LPA
Apply here: https://jobs.lever.co/z1tech/74865c26-7b56-447e-a674-52957d609395/
Experience: 0 - 1 years
Expected Salary: 4-6 LPA
Apply here: https://jobs.lever.co/z1tech/74865c26-7b56-447e-a674-52957d609395/
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
RoboMQ is hiring Software Engineer
For 2021, 2022, 2023 gards
Location: Jaipur
https://www.linkedin.com/jobs/view/4155864023
For 2021, 2022, 2023 gards
Location: Jaipur
https://www.linkedin.com/jobs/view/4155864023
Linkedin
RoboMQ hiring Software Engineer, (Node.js, Angular/React) in Jaipur, Rajasthan, India | LinkedIn
Posted 5:52:48 AM. About Us RoboMQ is an API and data integration company that enables enterprises to automateโฆSee this and similar jobs on LinkedIn.
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Friday Tech Labs Product Design Intern
For 2022, 2023, 2024, 2025, 2026 gards
Location: Jaipur
https://www.linkedin.com/jobs/view/4156891765
For 2022, 2023, 2024, 2025, 2026 gards
Location: Jaipur
https://www.linkedin.com/jobs/view/4156891765
Linkedin
Friday Tech Labs hiring Product Design Intern (Framer/UI/UX) โ Jaipur (In-Office) in Jaipur, Rajasthan, India | LinkedIn
Posted 5:42:41 AM. ๐ Location: Jaipur (Yes, physically. No "I'm relocating soon" excuses.)๐ Work Days: Monday toโฆSee this and similar jobs on LinkedIn.
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐OneOrigin is hiring for Junior Software Engineer
Experience: 0 - 1 years
Expected Salary: 4-9 LPA
Apply here: https://www.linkedin.com/jobs/view/4156972768
Experience: 0 - 1 years
Expected Salary: 4-9 LPA
Apply here: https://www.linkedin.com/jobs/view/4156972768
Linkedin
OneOrigin hiring Junior Software Engineer in Bengaluru, Karnataka, India | LinkedIn
Posted 11:47:38 AM. OneOrigin, one of the world's rapidly expanding Technology Companies, proudly headquartered in theโฆSee this and similar jobs on LinkedIn.
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Navi is hiring UI Engineer
For 2021, 2022, 2023, 2024 grads
Location: Bangalore
https://www.linkedin.com/posts/krmukesh_ui-engineer-job-application-form-activity-7297520724057956353-KPeC?utm_source=share&utm_medium=member_android&rcm=ACoAADcYLRgBJmsLNWvacCtmAInFWe0W5S4QEzg
For 2021, 2022, 2023, 2024 grads
Location: Bangalore
https://www.linkedin.com/posts/krmukesh_ui-engineer-job-application-form-activity-7297520724057956353-KPeC?utm_source=share&utm_medium=member_android&rcm=ACoAADcYLRgBJmsLNWvacCtmAInFWe0W5S4QEzg
Linkedin
UI Engineer: Job Application Form | Mukesh Kumar | 40 comments
๐จ ๐๐โ๐ซ๐ ๐๐ข๐ซ๐ข๐ง๐ !๐จ
Excited to share that we are looking for ๐๐ ๐๐ง๐ ๐ข๐ง๐๐๐ซ๐ฌ to join my team at ๐๐๐ฏ๐ข!
If you're passionate about building seamless user experiences, solving challenging problems, and working with some of the brightest minds in the fintech industryโฆ
Excited to share that we are looking for ๐๐ ๐๐ง๐ ๐ข๐ง๐๐๐ซ๐ฌ to join my team at ๐๐๐ฏ๐ข!
If you're passionate about building seamless user experiences, solving challenging problems, and working with some of the brightest minds in the fintech industryโฆ
#include <bits/stdc++.h>
using namespace std;
int main() {
int T;
cin >> T;
while (T--) {
int N;
cin >> N;
vector<long long> A(N);
for (int i = 0; i < N; ++i) {
cin >> A[i];
}
sort(A.begin(), A.end());
long long sum = 0;
int pairs = N / 2;
for (int i = 0; i < pairs; ++i) {
sum += A[N - 1 - i] - A[i];
}
cout << sum << endl;
}
return 0;
}
Maximum score
Google โ
using namespace std;
int main() {
int T;
cin >> T;
while (T--) {
int N;
cin >> N;
vector<long long> A(N);
for (int i = 0; i < N; ++i) {
cin >> A[i];
}
sort(A.begin(), A.end());
long long sum = 0;
int pairs = N / 2;
for (int i = 0; i < pairs; ++i) {
sum += A[N - 1 - i] - A[i];
}
cout << sum << endl;
}
return 0;
}
Maximum score
Google โ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Linkedin
#npci #bhim #technicalhiring | Prisha Srivastava | 72 comments
Hi Connections,
Looking for Technology experts in App development with a specialization in the payments sector.
Scan to apply on following roles at NPCI (BHIM) -
- Technical Architect/Principal Architect
- Backend Developer (Java)
- Frontend Developerโฆ
Looking for Technology experts in App development with a specialization in the payments sector.
Scan to apply on following roles at NPCI (BHIM) -
- Technical Architect/Principal Architect
- Backend Developer (Java)
- Frontend Developerโฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Linkedin
Gaurav Agarwal on LinkedIn: Hiring Alert !
Amazon Payments Team is looking for Data Engineer (12โฆ
Amazon Payments Team is looking for Data Engineer (12โฆ
Hiring Alert !
Amazon Payments Team is looking for Data Engineer (12 Months Direct contract) in Bangalore
- We are looking for 1+ Years of non-internship professional software development experience. Experience programming with at least one software programmingโฆ
Amazon Payments Team is looking for Data Engineer (12 Months Direct contract) in Bangalore
- We are looking for 1+ Years of non-internship professional software development experience. Experience programming with at least one software programmingโฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name : QuanSight
Open Source Internship
Batch : 2025/2026/2027 passouts
Last date to apply is March 18th, 2025
Link : https://job-boards.greenhouse.io/quansight/jobs/4011005005
Open Source Internship
Batch : 2025/2026/2027 passouts
Last date to apply is March 18th, 2025
Link : https://job-boards.greenhouse.io/quansight/jobs/4011005005
job-boards.greenhouse.io
Quansight
<h2 class="font_5"><span class="color_11">Building a Sustainable Open Source Economy for Creating Value with Data. Our Services <span class="color_14">connect</span> organizations and individuals who participate in the development and use of open source toolsโฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Zeta is hiring SDE I (Frontend)
For 2021, 2022, 2023, 2024 grads
Location: Bangalore
https://jobs.lever.co/zeta/694d39f1-6def-4520-ae8e-4cd16301f1e2/
For 2021, 2022, 2023, 2024 grads
Location: Bangalore
https://jobs.lever.co/zeta/694d39f1-6def-4520-ae8e-4cd16301f1e2/
jobs.lever.co
Zeta - Software Development Engineer I - Frontend
About Zeta Zeta is a Next-Gen Banking Tech company that empowers banks and fintechs to launch banking products for the future. It was founded by Bhavin Turakhia and Ramki Gaddipati in 2015. Our flagship processing platform - Zeta Tachyon - is the industryโsโฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Jelly Card is hiring for Software Development Engineer Intern
Experience: 0 - 1 years
Stipend: 15K-20K per month
Apply here: https://cutshort.io/job/Software-Development-Engineer-Intern-Bengaluru-Bangalore-Jelly-Card-2jYGPE78?applicationsource=linkedin-feed
Experience: 0 - 1 years
Stipend: 15K-20K per month
Apply here: https://cutshort.io/job/Software-Development-Engineer-Intern-Bengaluru-Bangalore-Jelly-Card-2jYGPE78?applicationsource=linkedin-feed
Jelly Card is hiring Software Development Engineer Intern job in Bengaluru (Bangalore) | Cutshort
Apply to Software Development Engineer Intern internship at Jelly Card in Bengaluru (Bangalore) from 0 - 0.6 years of experience.
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐๐๐๐๐๐ - ๐๐ง๐ญ๐๐ซ๐ง๐ฌ๐ก๐ข๐ฉ, ๐๐๐๐!
Position: Intern - Data Analyst/ Software Development
Experience: Freshers
Location: Bangalore, India
๐ปApply Link: https://jobs.iqvia.com/en/job/bengaluru/intern-campus/24443/77584910528
Position: Intern - Data Analyst/ Software Development
Experience: Freshers
Location: Bangalore, India
๐ปApply Link: https://jobs.iqvia.com/en/job/bengaluru/intern-campus/24443/77584910528
Iqvia
Intern(Campus) at IQVIA
Learn more about applying for Intern(Campus) at IQVIA
#include <bits/stdc++.h>
using namespace std;
int main() {
int N;
cin >> N;
vector<long long> a(N);
for (int i = 0; i < N; i++) {
cin >> a[i];
}
sort(a.begin(), a.end());
vector<long long> prefix_sum(N + 1, 0);
for (int i = 0; i < N; i++) {
prefix_sum[i + 1] = prefix_sum[i] + a[i];
}
vector<long long> suffix_sum(N + 1, 0);
for (int i = N - 1; i >= 0; i--) {
suffix_sum[i] = suffix_sum[i + 1] + a[i];
}
vector<long long> sum_left(N + 1, 0);
for (int k = 1; k <= N; k++) {
int m = (k - 1) / 2;
long long median = a[m];
long long sum_prev = prefix_sum[m + 1];
long long sum_next = prefix_sum[k] - sum_prev;
sum_left[k] = median * (m + 1) - sum_prev + (sum_next - median * (k - (m + 1)));
}
vector<long long> sum_right(N + 1, 0);
for (int m = 1; m <= N; m++) {
int median_pos = (m - 1) / 2;
int median_idx = (N - m) + median_pos;
long long median = a[median_idx];
long long sum_prev = suffix_sum[N - m] - suffix_sum[median_idx + 1];
long long sum_next = suffix_sum[median_idx + 1];
int left_count = median_idx - (N - m) + 1;
int right_count = m - left_count;
sum_right[m] = median * left_count - sum_prev + (sum_next - median * right_count);
}
long long ans = LLONG_MAX;
for (int k = 1; k < N; k++) {
ans = min(ans, sum_left[k] + sum_right[N - k]);
}
cout << ans << endl;
return 0;
}
Work division โ
Google
using namespace std;
int main() {
int N;
cin >> N;
vector<long long> a(N);
for (int i = 0; i < N; i++) {
cin >> a[i];
}
sort(a.begin(), a.end());
vector<long long> prefix_sum(N + 1, 0);
for (int i = 0; i < N; i++) {
prefix_sum[i + 1] = prefix_sum[i] + a[i];
}
vector<long long> suffix_sum(N + 1, 0);
for (int i = N - 1; i >= 0; i--) {
suffix_sum[i] = suffix_sum[i + 1] + a[i];
}
vector<long long> sum_left(N + 1, 0);
for (int k = 1; k <= N; k++) {
int m = (k - 1) / 2;
long long median = a[m];
long long sum_prev = prefix_sum[m + 1];
long long sum_next = prefix_sum[k] - sum_prev;
sum_left[k] = median * (m + 1) - sum_prev + (sum_next - median * (k - (m + 1)));
}
vector<long long> sum_right(N + 1, 0);
for (int m = 1; m <= N; m++) {
int median_pos = (m - 1) / 2;
int median_idx = (N - m) + median_pos;
long long median = a[median_idx];
long long sum_prev = suffix_sum[N - m] - suffix_sum[median_idx + 1];
long long sum_next = suffix_sum[median_idx + 1];
int left_count = median_idx - (N - m) + 1;
int right_count = m - left_count;
sum_right[m] = median * left_count - sum_prev + (sum_next - median * right_count);
}
long long ans = LLONG_MAX;
for (int k = 1; k < N; k++) {
ans = min(ans, sum_left[k] + sum_right[N - k]);
}
cout << ans << endl;
return 0;
}
Work division โ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Ubisoft Solutions is Hiring Data Analyst Fresher
Role : Data Analyst Fresher
Location: Pune/ Bangalore
Package:4.25 LPA
Write your Name and Email in the Comment Section
Shortlisting Applicant will receive the exam link by mail.
Send your Resume: hr_pooja07@ubi.com
Role : Data Analyst Fresher
Location: Pune/ Bangalore
Package:4.25 LPA
Write your Name and Email in the Comment Section
Shortlisting Applicant will receive the exam link by mail.
Send your Resume: hr_pooja07@ubi.com
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Myntra is hiring for 2024 batch
Link: https://job-boards.greenhouse.io/myntra/jobs/7871478002?gh_src=bb272d8c2
Link: https://job-boards.greenhouse.io/myntra/jobs/7871478002?gh_src=bb272d8c2
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
โจBNY Mellon is hiring Software Engineer Intern/Full Timeโจ
๐ฅ๐ผ๐น๐ฒ -> Software Engineer Intern/Full Time
๐๐ ๐ฝ๐ฒ๐ฐ๐๐ฒ๐ฑ ๐ฃ๐ฎ๐ฐ๐ธ๐ฎ๐ด๐ฒ -> ~20-25LPA
๐๐ฝ๐ฝ๐น๐ถ๐ฐ๐ฎ๐๐ถ๐ผ๐ป ๐๐ถ๐ป๐ธ: -> https://assessment.hackerearth.com/challenges/new/hiring/bny-mellon-code-divas-diversity-challenge-2025/
๐ฅ๐ผ๐น๐ฒ -> Software Engineer Intern/Full Time
๐๐ ๐ฝ๐ฒ๐ฐ๐๐ฒ๐ฑ ๐ฃ๐ฎ๐ฐ๐ธ๐ฎ๐ด๐ฒ -> ~20-25LPA
๐๐ฝ๐ฝ๐น๐ถ๐ฐ๐ฎ๐๐ถ๐ผ๐ป ๐๐ถ๐ป๐ธ: -> https://assessment.hackerearth.com/challenges/new/hiring/bny-mellon-code-divas-diversity-challenge-2025/
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Send resume to : iffat.shah@decimalpointanalytics.com
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Cex is hiring Trainee Associate Devops Engineer
For 2024, 2025 gards
Location: Mumbai
https://in.webuy.com/careers/careerDetails?type=1&jobId=741
For 2024, 2025 gards
Location: Mumbai
https://in.webuy.com/careers/careerDetails?type=1&jobId=741
Webuy
CeX (IN) Buy & Sell Games, Phones, DVDs, Blu-ray, Electronics, Computing, Vision & CDs
The CeX homepage.