Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Exciting Opportunity for Fresh Graduates - Graduate Engineer Trainees (GETs)
We are thrilled to announce an excellent career opportunity for fresh graduates who are passionate about building a rewarding career in steel industry. As we continue to grow and innovate, we are actively seeking talented and ambitious individuals to join our team as Graduate Engineer Trainees (GETs).
Why Join Us:
1. Comprehensive training program
2. Mentorship from industry experts
3. Opportunities for career advancement
4. Dynamic and collaborative work environment
How to Apply:
If you are ready to kick-start your career with a dynamic and forward-thinking organization, fill the form
https://docs.google.com/forms/d/e/1FAIpQLSfWQyLXfPGFb-stCbYiSIPZaCTHh8grXdt_rSfJ0naWpxolKg/viewform
We are thrilled to announce an excellent career opportunity for fresh graduates who are passionate about building a rewarding career in steel industry. As we continue to grow and innovate, we are actively seeking talented and ambitious individuals to join our team as Graduate Engineer Trainees (GETs).
Why Join Us:
1. Comprehensive training program
2. Mentorship from industry experts
3. Opportunities for career advancement
4. Dynamic and collaborative work environment
How to Apply:
If you are ready to kick-start your career with a dynamic and forward-thinking organization, fill the form
https://docs.google.com/forms/d/e/1FAIpQLSfWQyLXfPGFb-stCbYiSIPZaCTHh8grXdt_rSfJ0naWpxolKg/viewform
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: One Card
Role: Software Engineer - Backend
Batch eligible: 2022, 2023 and 2024 passouts
Apply: https://bit.ly/47YKevR
Role: Software Engineer - Backend
Batch eligible: 2022, 2023 and 2024 passouts
Apply: https://bit.ly/47YKevR
Codingninjas
Coding Ninjas Studio Weekend Contest 101 Coding Contest- Coding Ninjas
Level up your coding skills and quickly land a job with the Coding Ninjas Studio Contests every week. Compete and see your ranking!
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name : NVIDIA
Role : SDE Intern
Batch : 2025 passouts
Link : https://nvidia.wd5.myworkdayjobs.com/en-US/NVIDIAExternalCareerSite/job/India-Pune/Software-Engineering-Intern_JR1974418
Role : SDE Intern
Batch : 2025 passouts
Link : https://nvidia.wd5.myworkdayjobs.com/en-US/NVIDIAExternalCareerSite/job/India-Pune/Software-Engineering-Intern_JR1974418
โค1๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Zomato Hiring Business Analyst
Location : Gurgaon
https://docs.google.com/forms/d/e/1FAIpQLSfX6vh8u-B3UUdBhdobTz7zvjuHlbOM7p8iYTu7YjLeOGDnkA/viewform
Location : Gurgaon
https://docs.google.com/forms/d/e/1FAIpQLSfX6vh8u-B3UUdBhdobTz7zvjuHlbOM7p8iYTu7YjLeOGDnkA/viewform
Google Docs
Zomato Business Analyst Application ,Gurgaon
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Zeta
Role: SRE Intern/SDE Intern
Batch eligible: 2024 grads only
Duration: 6 months
Apply: https://docs.google.com/forms/d/1QeYCLM3y2AQhbhOL1WuxRjHIPMgv-QIl4bVjynuzULw/viewform?edit_requested=true%E2%80%A6
Role: SRE Intern/SDE Intern
Batch eligible: 2024 grads only
Duration: 6 months
Apply: https://docs.google.com/forms/d/1QeYCLM3y2AQhbhOL1WuxRjHIPMgv-QIl4bVjynuzULw/viewform?edit_requested=true%E2%80%A6
import java.util.HashMap;
import java.util.Map;
public class CabinAllocation {
public static int calculatePeopleWithoutCabin(String input) {
Map<Character, Integer> cabinCount = new HashMap<>();
for (char c : input.toCharArray()) {
cabinCount.put(c, cabinCount.getOrDefault(c, 0) + 1);
}
int peopleWithoutCabin = 0;
for (char key : cabinCount.keySet()) {
int count = cabinCount.get(key);
if (count % 2 != 0) {
peopleWithoutCabin += (count - 1) / 2;
}
}
return peopleWithoutCabin;
}
Java โ
How many people didn't get a cabin
import java.util.Map;
public class CabinAllocation {
public static int calculatePeopleWithoutCabin(String input) {
Map<Character, Integer> cabinCount = new HashMap<>();
for (char c : input.toCharArray()) {
cabinCount.put(c, cabinCount.getOrDefault(c, 0) + 1);
}
int peopleWithoutCabin = 0;
for (char key : cabinCount.keySet()) {
int count = cabinCount.get(key);
if (count % 2 != 0) {
peopleWithoutCabin += (count - 1) / 2;
}
}
return peopleWithoutCabin;
}
Java โ
How many people didn't get a cabin
def solution(matrix):
m = len(matrix)
n = len(matrix[0])
for k in range((min(m, n) - 1) // 2 + 1):
A = []
for j in range(k, n - k):
A.append(matrix[k][j])
for i in range(k + 1, m - k):
A.append(matrix[i][n - k - 1])
for j in range(n - k - 2, k - 1, -1):
A.append(matrix[m - k - 1][j])
for i in range(m - k - 2, k, -1):
A.append(matrix[i][k])
A.sort()
result_idx = 0
for j in range(k, n - k):
matrix[k][j] = A[result_idx]
result_idx += 1
for i in range(k + 1, m - k):
matrix[i][n - k - 1] = A[result_idx]
result_idx += 1
for j in range(n - k - 2, k - 1, -1):
matrix[m - k - 1][j] = A[result_idx]
result_idx += 1
for i in range(m - k - 2, k, -1):
matrix[i][k] = A[result_idx]
result_idx += 1
return matrix
๐1
string solve(string s) {
vector<int> freq(26, 0);
for (char c : s) {
freq[c - 'a']++;
}
string fh = "", m = "";
for (int i = 0; i < 26; ++i) {
if (freq[i] % 2 == 1) {
if (m == "" || m > string(1, i + 'a')) {
m = string(1, i + 'a');
}
}
fh += string(freq[i] / 2, i + 'a');
}
string sh = fh;
reverse(sh.begin(), sh.end());
return fh + m + sh;
}
vector<int> freq(26, 0);
for (char c : s) {
freq[c - 'a']++;
}
string fh = "", m = "";
for (int i = 0; i < 26; ++i) {
if (freq[i] % 2 == 1) {
if (m == "" || m > string(1, i + 'a')) {
m = string(1, i + 'a');
}
}
fh += string(freq[i] / 2, i + 'a');
}
string sh = fh;
reverse(sh.begin(), sh.end());
return fh + m + sh;
}
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Cognizant Hiring only 2023 Batch โ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Google
Role: Associate Product Manager
Batch eligible: 2024 passouts only
Apply: https://www.google.com/about/careers/applications/jobs/results/100297584867713734-associate-product-manager-university-graduate-2024
Role: Associate Product Manager
Batch eligible: 2024 passouts only
Apply: https://www.google.com/about/careers/applications/jobs/results/100297584867713734-associate-product-manager-university-graduate-2024
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Unisys Hiring Junior Linux Engineer
Freshers eligible
Link ๐
https://jobs.unisys.com/us/en/job/REQ551827/Junior-Linux-Engineer
Freshers eligible
Link ๐
https://jobs.unisys.com/us/en/job/REQ551827/Junior-Linux-Engineer
Unisys
Junior Linux Engineer in BANGALORE, Karnataka, India | Software Engineers โ Systems, Applications, Product Development at Unisys
Apply for Junior Linux Engineer job with Unisys in BANGALORE, Karnataka, India. Software Engineers โ Systems, Applications, Product Development at Unisys
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
โ๏ธVisAI Labs Off Campus Drive 2023 for Software Developer | B.E/B.Tech | 5 LPAโ๏ธ
๐จโ๐ป Job Role : Software Developer
๐Qualification : B.E/B.Tech
๐Batch : Any Batch
๐ฐPackage : 5 LPA
โญ๏ธ Apply Fast :
https://forms.office.com/pages/responsepage.aspx?id=f6NVTY2Fpka2pV8_ZHJ58jn_p7ohZxpPvdo42YQUJghUMkpVTU9GVFkzVjY2U1NNRUg2WE5LRUVBVC4u
๐จโ๐ป Job Role : Software Developer
๐Qualification : B.E/B.Tech
๐Batch : Any Batch
๐ฐPackage : 5 LPA
โญ๏ธ Apply Fast :
https://forms.office.com/pages/responsepage.aspx?id=f6NVTY2Fpka2pV8_ZHJ58jn_p7ohZxpPvdo42YQUJghUMkpVTU9GVFkzVjY2U1NNRUg2WE5LRUVBVC4u
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Rajasthan Police is conducting a Hackathon for all of you!
Prizes : worth 20 Lakhs.
Link to register : https://www.police.rajasthan.gov.in/Old/hackathon/index.html
Prizes : worth 20 Lakhs.
Link to register : https://www.police.rajasthan.gov.in/Old/hackathon/index.html
Latest Hiring opportunities for Batches 2020/2021/2022/2023/2024/2025๐
1. Paytm Hiring for Java Developer
๐บ Batch : 2020 / 2021 / 2022
๐บ Location : Noida
๐๐ปApply here - https://jobs.lever.co/paytmbank/5cfc8e7e-14f3-4cd2-9795-91f4c9c20400
2. Tata 1 Mg Hiring for SDE 1
๐บ Batch : 2023 / 2024
๐บ Location :Gurgaon
๐๐ปApply here - https://1mg.darwinbox.in/ms/candidate/careers/a656584f8055e5
3. Trade Desk Hiring for Summer SDE Intern
๐บ Batch : 2025
๐บ Location : Bengaluru
๐๐ปApply here - https://boards.greenhouse.io/thetradedesk/jobs/4150177007?gh_src=57a33adb7us
4. BloomBerg Hiring for SDE Intern
๐บBatch : 2023 / 2024 / 2025
๐บLocation : Bengaluru / Hyderabad / Gurgaon / Mumbai / Chennai
๐บCTC Stipend : 20 LPA K per month.
๐๐ปApply here - https://careers.bloomberg.com/job/detail/118748?ittk=E1RNWE73BD
5.Nissan Hiring for SDE 1
๐บ Batch : 2022 / 2023 / 2024
๐บ Location : Trivandrum
๐๐ปApply here - https://alliance.wd3.myworkdayjobs.com/en-US/nissanjobs/job/software-engineer-i_r00151957-1
6. Cadence Hiring for SDE Intern
๐บ Batch : 2024 / 2025
๐บ Location : Noida
๐๐ปApply here - https://cadence.wd1.myworkdayjobs.com/en-US/External_Careers/job/Intern-Software-engineering_R44773
7. Google Hiring for Associate Product Manager
๐บ Batch : 2024
๐บ Location : Bengaluru
๐๐ปApply here - https://www.google.com/about/careers/applications/jobs/results/100297584867713734-associate-product-manager-university-graduate-2024
8. HashiCorp Hiring for SDE Interm
๐บ Batch : 2024 / 2025
๐บ Location : Bengaluru
๐๐ปApply here - https://www.hashicorp.com/career/5523956
9. Ride Cell Hiring for SDE Intern
๐บ Batch : 2024 / 2025
๐บ Location : Pune
๐๐ปApply here - https://docs.google.com/forms/d/e/1FAIpQLScT2gdgW-LQMThkFGlhi6LI3lmJp127-TaSus1rWwpdI_g7sQ/viewform
10. Nvdia Hiring for SDE Intern
๐บ Batch : 2024 / 2025
๐บ Location : Pune
๐๐ปApply here - https://nvidia.wd5.myworkdayjobs.com/en-US/NVIDIAExternalCareerSite/job/India-Pune/Software-Engineering-Intern_JR1974418
1. Paytm Hiring for Java Developer
๐บ Batch : 2020 / 2021 / 2022
๐บ Location : Noida
๐๐ปApply here - https://jobs.lever.co/paytmbank/5cfc8e7e-14f3-4cd2-9795-91f4c9c20400
2. Tata 1 Mg Hiring for SDE 1
๐บ Batch : 2023 / 2024
๐บ Location :Gurgaon
๐๐ปApply here - https://1mg.darwinbox.in/ms/candidate/careers/a656584f8055e5
3. Trade Desk Hiring for Summer SDE Intern
๐บ Batch : 2025
๐บ Location : Bengaluru
๐๐ปApply here - https://boards.greenhouse.io/thetradedesk/jobs/4150177007?gh_src=57a33adb7us
4. BloomBerg Hiring for SDE Intern
๐บBatch : 2023 / 2024 / 2025
๐บLocation : Bengaluru / Hyderabad / Gurgaon / Mumbai / Chennai
๐บCTC Stipend : 20 LPA K per month.
๐๐ปApply here - https://careers.bloomberg.com/job/detail/118748?ittk=E1RNWE73BD
5.Nissan Hiring for SDE 1
๐บ Batch : 2022 / 2023 / 2024
๐บ Location : Trivandrum
๐๐ปApply here - https://alliance.wd3.myworkdayjobs.com/en-US/nissanjobs/job/software-engineer-i_r00151957-1
6. Cadence Hiring for SDE Intern
๐บ Batch : 2024 / 2025
๐บ Location : Noida
๐๐ปApply here - https://cadence.wd1.myworkdayjobs.com/en-US/External_Careers/job/Intern-Software-engineering_R44773
7. Google Hiring for Associate Product Manager
๐บ Batch : 2024
๐บ Location : Bengaluru
๐๐ปApply here - https://www.google.com/about/careers/applications/jobs/results/100297584867713734-associate-product-manager-university-graduate-2024
8. HashiCorp Hiring for SDE Interm
๐บ Batch : 2024 / 2025
๐บ Location : Bengaluru
๐๐ปApply here - https://www.hashicorp.com/career/5523956
9. Ride Cell Hiring for SDE Intern
๐บ Batch : 2024 / 2025
๐บ Location : Pune
๐๐ปApply here - https://docs.google.com/forms/d/e/1FAIpQLScT2gdgW-LQMThkFGlhi6LI3lmJp127-TaSus1rWwpdI_g7sQ/viewform
10. Nvdia Hiring for SDE Intern
๐บ Batch : 2024 / 2025
๐บ Location : Pune
๐๐ปApply here - https://nvidia.wd5.myworkdayjobs.com/en-US/NVIDIAExternalCareerSite/job/India-Pune/Software-Engineering-Intern_JR1974418
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Linkedin
MAHALAKSHMI . S on LinkedIn: #hiring | 32 comments
PayNways #hiring for a JAVA Freshers position ๐ข
Send your resume on pooja.katyal@paynways.com
Location: Noida
Work from office opportunity
Jobโฆ | 32 comments on LinkedIn
Send your resume on pooja.katyal@paynways.com
Location: Noida
Work from office opportunity
Jobโฆ | 32 comments on LinkedIn
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company - Oton
Role - Software Engineer (Full Stack) Interns
Duration - 3 Months
Link - https://www.linkedin.com/jobs/view/3770142942
Role - Software Engineer (Full Stack) Interns
Duration - 3 Months
Link - https://www.linkedin.com/jobs/view/3770142942
Linkedin
76,000+ Software Engineer jobs in India (3,124 new)
Todayโs top 76,000+ Software Engineer jobs in India. Leverage your professional network, and get hired. New Software Engineer jobs added daily.
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Tradedesk hiring software engineer intern
Batch- 2025
Job ID- 4150177007
Job Link-
https://boards.greenhouse.io/thetradedesk/jobs/4150177007?gh_src=57a33adb7us
Batch- 2025
Job ID- 4150177007
Job Link-
https://boards.greenhouse.io/thetradedesk/jobs/4150177007?gh_src=57a33adb7us