1 953
Subscribers
No data24 hours
-27 days
-1930 days
Posts Archive
π Amazon Hiring Alert | Apply Now π₯
π’ Company: Amazon
π» Role: Software Development Engineer I (SDE I)
π Qualification: Bachelor's Degree or above in Computer Science, Computer Engineering, or a related field
π
Eligible Batch: 2025 & 2026 Passouts Only
π οΈ Skills Required: C/C++, Python, Java, or Perl, Data Structures & Algorithms (DSA), Problem Solving
π° Salary: Up to βΉ15 LPA (Expected)
π Location: PAN India
π Apply Here:
https://www.amazon.jobs/en/jobs/10454435/software-dev-engineer-i-amazon-university-talent-acquisitionβ οΏ½
π’ Share this opportunity with your friends and classmates!
π INFOSYS Exam Support β August
π’ Limited Pre-Booking Slots Available!
π
1st August
π 11:00 AM β 2 Slots
π 3:00 PM β 4 Slots
π
2nd August
π 11:00 AM β 3 Slots
π 3:00 PM β 2 Slots
β
Advance booking is mandatory.
Hurry! Slots are filling up fast.
Contact @coder_pythh for help
ππ₯ PwC Off-Campus Hiring 2026 π₯π
π’ Company: PwC Acceleration Centers
π¨βπ» Role: Fullstack Engineer β Intern, Specialist
π Location: Bengaluru, Karnataka
π Eligibility: 2025, 2026 & 2027 Batch Freshers (as shared)
π° Expected Package: βΉ5β8 LPA
π Expected Exams & Interviews: August 2026
π Apply Link:
https://jobs-ta.pwc.com/global/en/job/PACPACGLOBAL741799WDEXTERNALENGLOBAL/Fullstack-Engineer-Intern-Specialistβ
π American Express Apprenticeship Hiring 2026 π₯
π’ Company: American Express
π¨βπ» Role: Apprentice β Enterprise Technology Services
π Locations: Bengaluru, Gurugram & Chennai
π Work Mode: Hybrid
β³ Duration: 12 Months
π° Expected Package: βΉ6β8 LPA (Approx.)
π Apply Now:
https://egug.fa.us2.oraclecloud.com/hcmUI/CandidateExperience/en/sites/CX_1/job/26009713
All on campus and off campus placement exam helps available and all interview helps available
Infosys offline interview panel management
Infosys exam help
Amazon hackon
Oracle, Amazon, capitals one , Capgemini,Cognizant , IBM, texas ,mthree,Walmart, wipro ,CGI, EY GDS,L &T ,Wipro, blog volut
Hcl,Rippling ,Amazon
Cognizant communication
Wipro ,Deloitte NLA,tech Mahindra ,Ibm
Dm @coder_pythh for help
Only pre booking slots help available
+1
Swiggy sde 2 role help done successfully completed β
All 3/3 codes done and dusted π
Contact @coder_pythh for any placement exam helps and interview helps
π’ Infosys Virtual Coding Assessment
π’ Company: Infosys
π
Scheduled On: 01 August 2026
β° Time: 11:00 AM
π Mode: Online (Virtual)
Contact @coder_pythh for coding help and interview helps
Accenture pre joining mcqs exam help done successfully completed β
All mcqs done successfully answer and correct π―
Contact @coder_pythh for any placement exam helps and interview helps
π’ Company: Virtusa
π¨βπ» Role: Associate Python Developer
π Location: Bengaluru, Karnataka
πΌ Experience: 0 Years Listed
π Qualification: B.E.
π° Package: Not Disclosed
π οΈ Skills: Python, SQL Server, Pandas, NumPy, Scikit-learn, Generative AI, Azure, Azure Functions and API Development.
Apply Link:
https://www.virtusa.com/careers/in/bangalore/aiml/associate-python-developer/creq262480
π Cisco Hiring Alert π
π’ Company: Cisco
π Eligible Batch: 2027 Only β
π Apply Here:
https://careers.cisco.com/global/en/job//
β‘ If you're from the 2027 batch, don't miss this opportunity. Apply as soon as possible and share it with your friends!
π Elite Placements 2027
A Telegram community for 2027 graduates.
β Placement Updates β Internship Alerts β Job Opportunities β Coding & Interview Preparationπ Join here: https://t.me/+rkDJOjzDnto4NmRl
import java.util.*;
public class TestClass {
public static int cureTheVirus(int n, int[] impact, int[] numOfPre, int[][] precells) {
int source = 0;
int sink = n + 1;
List<Edge>[] graph = new List[sink + 1];
for (int i = 0; i <= sink; i++) {
graph[i] = new ArrayList<>();
}
int totalPositiveImpact = 0;
for (int i = 0; i < n; i++) {
int w = impact[i];
int u = i + 1;
if (w > 0) {
totalPositiveImpact += w;
addEdge(graph, source, u, w);
} else if (w < 0) {
addEdge(graph, u, sink, -w);
}
for (int k = 0; k < numOfPre[i]; k++) {
int v = precells[i][k];
addEdge(graph, u, v, Integer.MAX_VALUE);
}
}
int minCut = dinicMaxFlow(graph, source, sink);
return totalPositiveImpact - minCut;
}
private static class Edge {
int to;
int rev;
int cap;
int flow;
Edge(int to, int rev, int cap) {
this.to = to;
this.rev = rev;
this.cap = cap;
this.flow = 0;
}
}
private static void addEdge(List<Edge>[] graph, int from, int to, int cap) {
Edge a = new Edge(to, graph[to].size(), cap);
Edge b = new Edge(from, graph[from].size(), 0);
graph[from].add(a);
graph[to].add(b);
}
private static int dinicMaxFlow(List<Edge>[] graph, int src, int dest) {
int flow = 0;
int[] level = new int[graph.length];
while (bfs(graph, src, dest, level)) {
int[] ptr = new int[graph.length];
while (true) {
int pushed = dfs(graph, src, dest, Integer.MAX_VALUE, level, ptr);
if (pushed == 0) {
break;
}
flow += pushed;
}
}
return flow;
}
private static boolean bfs(List<Edge>[] graph, int src, int dest, int[] level) {
Arrays.fill(level, -1);
level[src] = 0;
Queue<Integer> q = new LinkedList<>();
q.add(src);
while (!q.isEmpty()) {
int v = q.poll();
for (Edge e : graph[v]) {
if (level[e.to] < 0 && e.flow < e.cap) {
level[e.to] = level[v] + 1;
q.add(e.to);
}
}
}
return level[dest] >= 0;
}
private static int dfs(List<Edge>[] graph, int v, int dest, int pushed, int[] level, int[] ptr) {
if (pushed == 0 || v == dest) {
return pushed;
}
for (int cid = ptr[v]; ptr[v] < graph[v].size(); cid = ++ptr[v]) {
Edge e = graph[v].get(cid);
int tr = e.to;
if (level[v] + 1 != level[tr] || e.flow == e.cap) {
continue;
}
int trPushed = dfs(graph, tr, dest, Math.min(pushed, e.cap - e.flow), level, ptr);
if (trPushed == 0) {
continue;
}
e.flow += trPushed;
graph[tr].get(e.rev).flow -= trPushed;
return trPushed;
}
return 0;
}Flipkart 10 am codes done β
and available
Contact @coder_pythh for codes
Flipkart Grid 10 am slots available
Contact @coder_pythh for help
π Elite Placements 2027
A Telegram community for 2027 graduates.
β Placement Updates β Internship Alerts β Job Opportunities β Coding & Interview Preparationπ Join here: https://t.me/+rkDJOjzDnto4NmRl
+3
Flipkart GRID 8.0 6 pm slot done successfully completed β
Contact @coder_pythh for any placement exam helps and interview helps
2027 on campus people u can join here for all opportunities
https://t.me/+rkDJOjzDnto4NmRl
SATYA CODE DONE β
THE CITY OF LINKEDONIA DONE β
CONTACT @coder_pythh for codes
Uploading proofs soon π
π Elite Placements 2027
A Telegram community for 2027 graduates.
β Placement Updates β Internship Alerts β Job Opportunities β Coding & Interview Preparationπ Join here: https://t.me/+rkDJOjzDnto4NmRl
