Accenture Hiring Freshers ๐ฅ
Role : Python
Batch : 2022 / 2023 / 2024 / 2025 / 2026
Experience : Freshers
Location : India
Apply now ๐๏ธ
https://www.accenture.com/in-en/careers/jobdetails?id=ATCI-5704900-S2062039_en
โโโโโโโโโโโโโโโโโโโโ
๐ OFF CAMPUS JOBS PRO
๐ฅ 50+ Freshers & Early-Career Jobs Daily
๐ผ IT Jobs โข Internships โข Off-Campus Drives
๐ฏ Verified Jobs โข Premium Opportunities โข Placement Updates
๐ Get 50+ Job Updates Daily โ Join Premium
๐ https://offcampusjobsindia.com/premium
Role : Python
Batch : 2022 / 2023 / 2024 / 2025 / 2026
Experience : Freshers
Location : India
Apply now ๐๏ธ
https://www.accenture.com/in-en/careers/jobdetails?id=ATCI-5704900-S2062039_en
โโโโโโโโโโโโโโโโโโโโ
๐ OFF CAMPUS JOBS PRO
๐ฅ 50+ Freshers & Early-Career Jobs Daily
๐ผ IT Jobs โข Internships โข Off-Campus Drives
๐ฏ Verified Jobs โข Premium Opportunities โข Placement Updates
๐ Get 50+ Job Updates Daily โ Join Premium
๐ https://offcampusjobsindia.com/premium
Accenture
Custom Software Engineer
Learn more about applying for Custom Software Engineer position at Accenture.
History gave us a free nation. ๐ฎ๐ณ
Now itโs our turn to build a future worth remembering.
What we do today will become the history of tomorrow.
Letโs make the next generation proud of what we leave behind.
Happy Independence Day! ๐ฎ๐ณ
India @80 โ Proud of the past. Responsible for the future.
Now itโs our turn to build a future worth remembering.
What we do today will become the history of tomorrow.
Letโs make the next generation proud of what we leave behind.
Happy Independence Day! ๐ฎ๐ณ
India @80 โ Proud of the past. Responsible for the future.
L&T Hiring Freshers ๐ฅ
Role : Graduate Trainee
Batch : 2023 / 2024 / 2025 / 2026
Experience : Freshers
Location : India
CTC : Not Disclosed
Apply now ๐๏ธ
https://larsentoubrocareers.peoplestrong.com/job/detail/LNT_GT_1820286?Source=Linkedin
โโโโโโโโโโโโโโโโโโโโ
๐ OFF CAMPUS JOBS PRO
๐ฅ 50+ Freshers & Early-Career Jobs Daily
๐ผ IT Jobs โข Internships โข Off-Campus Drives
๐ฏ Verified Jobs โข Premium Opportunities โข Placement Updates
๐ Get 50+ Job Updates Daily โ Join Premium
๐ https://offcampusjobsindia.com/premium
Role : Graduate Trainee
Batch : 2023 / 2024 / 2025 / 2026
Experience : Freshers
Location : India
CTC : Not Disclosed
Apply now ๐๏ธ
https://larsentoubrocareers.peoplestrong.com/job/detail/LNT_GT_1820286?Source=Linkedin
โโโโโโโโโโโโโโโโโโโโ
๐ OFF CAMPUS JOBS PRO
๐ฅ 50+ Freshers & Early-Career Jobs Daily
๐ผ IT Jobs โข Internships โข Off-Campus Drives
๐ฏ Verified Jobs โข Premium Opportunities โข Placement Updates
๐ Get 50+ Job Updates Daily โ Join Premium
๐ https://offcampusjobsindia.com/premium
Eaton Hiring Freshers ๐ฅ
Role : Associate Engineer - Software
Experience : 0-2 Years
Location : Pune, India
CTC : Not Disclosed
Apply now ๐๏ธ
https://eaton.eightfold.ai/careers/job/687238462939?domain=eaton.com&hl=en
Role : Associate Engineer - Software
Experience : 0-2 Years
Location : Pune, India
CTC : Not Disclosed
Apply now ๐๏ธ
https://eaton.eightfold.ai/careers/job/687238462939?domain=eaton.com&hl=en
static long minMaxConvoyLoad(int n, int k, long escort, int maxCrates, long[] weights) {
long l = 0, r = 0;
for (long w : weights) {
if (w > l) l = w;
r += w;
}
long res = r;
while (l <= r) {
long m = l + (r - l) / 2;
int g = 1, c = 0;
long s = 0;
for (long w : weights) {
if (s + w > m || c == maxCrates) {
g++;
s = w;
c = 1;
} else {
s += w;
c++;
}
}
if (g <= k) {
res = m;
r = m - 1;
} else {
l = m + 1;
}
}
return res + escort;
}
Google โ
long l = 0, r = 0;
for (long w : weights) {
if (w > l) l = w;
r += w;
}
long res = r;
while (l <= r) {
long m = l + (r - l) / 2;
int g = 1, c = 0;
long s = 0;
for (long w : weights) {
if (s + w > m || c == maxCrates) {
g++;
s = w;
c = 1;
} else {
s += w;
c++;
}
}
if (g <= k) {
res = m;
r = m - 1;
} else {
l = m + 1;
}
}
return res + escort;
}
Google โ
CODING SOLUTION - Placement Jobs & Materials
Photo
import java.util.ArrayList;
import java.util.PriorityQueue;
import java.util.Arrays;
public class Solution {
static class E {
int t;
long w;
E(int t, long w) {
this.t = t;
this.w = w;
}
}
static class N implements Comparable<N> {
int i;
long d;
N(int i, long d) {
this.i = i;
this.d = d;
}
public int compareTo(N o) {
return Long.compare(this.d, o.d);
}
}
static long findSecondShortestTime(int n, int m, int[][] arr) {
ArrayList<E>[] g = new ArrayList[n + 1];
for (int i = 0; i <= n; i++) {
g[i] = new ArrayList<>();
}
for (int i = 0; i < m; i++) {
int u = arr[i][0];
int v = arr[i][1];
long w = arr[i][2];
g[u].add(new E(v, w));
g[v].add(new E(u, w));
}
long[] d1 = new long[n + 1];
long[] d2 = new long[n + 1];
Arrays.fill(d1, Long.MAX_VALUE);
Arrays.fill(d2, Long.MAX_VALUE);
PriorityQueue<N> q = new PriorityQueue<>();
d1[1] = 0;
q.add(new N(1, 0));
while (!q.isEmpty()) {
N c = q.poll();
int u = c.i;
long d = c.d;
if (d > d2[u]) {
continue;
}
for (E e : g[u]) {
int v = e.t;
long nd = d + e.w;
if (nd < d1[v]) {
d2[v] = d1[v];
d1[v] = nd;
q.add(new N(v, d1[v]));
if (d2[v] != Long.MAX_VALUE) {
q.add(new N(v, d2[v]));
}
} else if (nd > d1[v] && nd < d2[v]) {
d2[v] = nd;
q.add(new N(v, d2[v]));
}
}
}
return d2[n];
}
}
Google โ
import java.util.PriorityQueue;
import java.util.Arrays;
public class Solution {
static class E {
int t;
long w;
E(int t, long w) {
this.t = t;
this.w = w;
}
}
static class N implements Comparable<N> {
int i;
long d;
N(int i, long d) {
this.i = i;
this.d = d;
}
public int compareTo(N o) {
return Long.compare(this.d, o.d);
}
}
static long findSecondShortestTime(int n, int m, int[][] arr) {
ArrayList<E>[] g = new ArrayList[n + 1];
for (int i = 0; i <= n; i++) {
g[i] = new ArrayList<>();
}
for (int i = 0; i < m; i++) {
int u = arr[i][0];
int v = arr[i][1];
long w = arr[i][2];
g[u].add(new E(v, w));
g[v].add(new E(u, w));
}
long[] d1 = new long[n + 1];
long[] d2 = new long[n + 1];
Arrays.fill(d1, Long.MAX_VALUE);
Arrays.fill(d2, Long.MAX_VALUE);
PriorityQueue<N> q = new PriorityQueue<>();
d1[1] = 0;
q.add(new N(1, 0));
while (!q.isEmpty()) {
N c = q.poll();
int u = c.i;
long d = c.d;
if (d > d2[u]) {
continue;
}
for (E e : g[u]) {
int v = e.t;
long nd = d + e.w;
if (nd < d1[v]) {
d2[v] = d1[v];
d1[v] = nd;
q.add(new N(v, d1[v]));
if (d2[v] != Long.MAX_VALUE) {
q.add(new N(v, d2[v]));
}
} else if (nd > d1[v] && nd < d2[v]) {
d2[v] = nd;
q.add(new N(v, d2[v]));
}
}
}
return d2[n];
}
}
Google โ
๐ฅ DON'T MISS YOUR DREAM JOB AGAIN! ๐ฅ
Every day, 100+ new jobs are posted.
By the time you find them, hundreds of candidates have already applied.
๐ก Getting hired isn't just about skillsโit's about applying early.
๐ Off Campus Jobs India Premium
๐ Launch Offer: Just โน299 (Lifetime Access)
โ 50+ Verified Jobs Daily
โ Freshers, Internships & Experienced Roles
โ Jobs from 15+ Trusted Platforms
โ Alerts Within 30 Minutes
โ Direct Apply Links & Referrals
โ No Spam โ Only Quality Opportunities
๐ผ One early application could be the one that changes your career.
โณ Don't be late. Be the first to apply.
๐ Join Premium (Lifetime):
๐ https://www.offcampusjobsindia.com/premium
๐ Apply First. Get More Interview Calls.
Every day, 100+ new jobs are posted.
By the time you find them, hundreds of candidates have already applied.
๐ก Getting hired isn't just about skillsโit's about applying early.
๐ Off Campus Jobs India Premium
๐ Launch Offer: Just โน299 (Lifetime Access)
โ 50+ Verified Jobs Daily
โ Freshers, Internships & Experienced Roles
โ Jobs from 15+ Trusted Platforms
โ Alerts Within 30 Minutes
โ Direct Apply Links & Referrals
โ No Spam โ Only Quality Opportunities
๐ผ One early application could be the one that changes your career.
โณ Don't be late. Be the first to apply.
๐ Join Premium (Lifetime):
๐ https://www.offcampusjobsindia.com/premium
๐ Apply First. Get More Interview Calls.
Swish Hiring ๐ฅ
Role : Software Engineer โ Backend
Experience : 1+ Year
Location : Bengaluru, Karnataka
Work Mode : Work from Office
Skills : Java / Kotlin / Go / Python / Node.js, DSA, REST APIs, Databases, Git, Backend Development, System Design
Apply now ๐๏ธ
https://docs.google.com/forms/d/e/1FAIpQLSc9rEDhQ0e09lqO6MIeLdwtLxQ-8QEu08jEi4P2c_aEzfdJyQ/viewform
Role : Software Engineer โ Backend
Experience : 1+ Year
Location : Bengaluru, Karnataka
Work Mode : Work from Office
Skills : Java / Kotlin / Go / Python / Node.js, DSA, REST APIs, Databases, Git, Backend Development, System Design
Apply now ๐๏ธ
https://docs.google.com/forms/d/e/1FAIpQLSc9rEDhQ0e09lqO6MIeLdwtLxQ-8QEu08jEi4P2c_aEzfdJyQ/viewform
๐จ Accenture Hirings (Updated List)
Qualification: B.E / B.Tech, M.E / M.Tech, BCA / MCA, BBA / MBA, B.Com / M.Com, BA / MA, B.Sc / M.Sc (All Branches)
Eligible Passout Batches: 2026, 2025, 2024, 2023, 2022, 2021 & 2020
๐ผ Job Details:
1๏ธโฃ Full Stack Engineer
๐ฐ Salary: โน6.5 โ โน11.2 LPA
๐ Location: Gurugram
๐ Experience: 0โ2 Years
๐ Skills: Full Stack Development, Nutanix Architecture, Cloud Computing
๐ Education: 15 years full-time education
โฐโโค Apply: https://www.offcampusjobsindia.com/jobs/accenture-full-stack-engineer-off-campus-gurugram
2๏ธโฃ Application Support Engineer
๐ฐ Salary: โน3.8 โ โน4.2 LPA
๐ Location: As per Accenture job posting
๐ Eligibility: Freshers / Early Career
๐ Skills: Application Support & Troubleshooting
โฐโโค Apply: https://www.offcampusjobsindia.com/jobs/accenture-application-support-engineer-off-campus-jobs-mumbai-2024-2028
3๏ธโฃ Custom Software Engineer โ Python
๐ฐ Salary: ~โน8 LPA
๐ Location: Hyderabad
๐ Experience: 0โ2 Years
๐ Skills: Python, OOP, Software Development, Debugging
๐ Education: 15 years full-time education
โฐโโค Apply: http://offcampusjobsindia.com/jobs/accenture-custom-software-engineer-off-campus-hyderabad
Qualification: B.E / B.Tech, M.E / M.Tech, BCA / MCA, BBA / MBA, B.Com / M.Com, BA / MA, B.Sc / M.Sc (All Branches)
Eligible Passout Batches: 2026, 2025, 2024, 2023, 2022, 2021 & 2020
๐ผ Job Details:
1๏ธโฃ Full Stack Engineer
๐ฐ Salary: โน6.5 โ โน11.2 LPA
๐ Location: Gurugram
๐ Experience: 0โ2 Years
๐ Skills: Full Stack Development, Nutanix Architecture, Cloud Computing
๐ Education: 15 years full-time education
โฐโโค Apply: https://www.offcampusjobsindia.com/jobs/accenture-full-stack-engineer-off-campus-gurugram
2๏ธโฃ Application Support Engineer
๐ฐ Salary: โน3.8 โ โน4.2 LPA
๐ Location: As per Accenture job posting
๐ Eligibility: Freshers / Early Career
๐ Skills: Application Support & Troubleshooting
โฐโโค Apply: https://www.offcampusjobsindia.com/jobs/accenture-application-support-engineer-off-campus-jobs-mumbai-2024-2028
3๏ธโฃ Custom Software Engineer โ Python
๐ฐ Salary: ~โน8 LPA
๐ Location: Hyderabad
๐ Experience: 0โ2 Years
๐ Skills: Python, OOP, Software Development, Debugging
๐ Education: 15 years full-time education
โฐโโค Apply: http://offcampusjobsindia.com/jobs/accenture-custom-software-engineer-off-campus-hyderabad