Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
KPMG (2021/2022) Batch
Qualification: MBA
https://ejgk.fa.em2.oraclecloud.com/hcmUI/CandidateExperience/en/sites/CX_1/job/22000AHB/?utm_medium=jobshare
Qualification: MBA
https://ejgk.fa.em2.oraclecloud.com/hcmUI/CandidateExperience/en/sites/CX_1/job/22000AHB/?utm_medium=jobshare
KPMG India
Analyst
#KI Hiring MBA HR Freshers(21-22 batch only) to be a part of our Talent Acquisition Team. Are you aspiring to start an exciting career in Talent Acquisition? Come & Join our amazing TA team. Job Location : Mumbai, Bangalore, Gurgaon & Pune locations.
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
MountBlue is hiring for Software Development Engineer role (2022 and 2023 grads eligible)
https://careers.mountblue.io/sde
https://careers.mountblue.io/sde
careers.mountblue.io
Careers @ MountBlue
Register @ MountBlue
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐ด Company:- MasterCard
Job Role :- Software Engineer II
Experienced Required : - 2 years+
Eligibility : Any Degree Apply
Salary Range :- 30 to 60 LPA+ (Depend upon Experience)
Job Location - Pune
โ๏ธ Apply Link : https://mstr.cd/3wpnIeQ
Job Role :- Software Engineer II
Experienced Required : - 2 years+
Eligibility : Any Degree Apply
Salary Range :- 30 to 60 LPA+ (Depend upon Experience)
Job Location - Pune
โ๏ธ Apply Link : https://mstr.cd/3wpnIeQ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
OKCL OFF Campus Hiring
Batch: 2019-2023
Salary: 3.9-9LPA
http://okcl.org/careers/project-trainee-recruitment-2023
For MBA Hiring(Managament Trainee)
Batch : 2023-2021
http://okcl.org/careers/management-trainee-recruitment-2022-23
Batch: 2019-2023
Salary: 3.9-9LPA
http://okcl.org/careers/project-trainee-recruitment-2023
For MBA Hiring(Managament Trainee)
Batch : 2023-2021
http://okcl.org/careers/management-trainee-recruitment-2022-23
๐2
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Software Development Engineer - Campus Hire - Summer Intern - Job ID: 2146508 | Amazon.jobs
https://www.amazon.jobs/en/jobs/2146508/software-development-engineer-campus-hire-summer-intern
https://www.amazon.jobs/en/jobs/2146508/software-development-engineer-campus-hire-summer-intern
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Thinkitive Job Application Form Year 2023 !!!
Batch 2022/2021 &Experience
https://docs.google.com/forms/d/e/1FAIpQLSfOiQt0I5G2J5pp_tFRPpYb9ZVZzGMwFqQfPDQq_6_Vak_o1w/viewform
Batch 2022/2021 &Experience
https://docs.google.com/forms/d/e/1FAIpQLSfOiQt0I5G2J5pp_tFRPpYb9ZVZzGMwFqQfPDQq_6_Vak_o1w/viewform
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
CloudSEK is hiring for SDET Intern role (Batch eligible: 2022 grads only)
Apply Link: https://www.linkedin.com/jobs/view/3449921545
Apply Link: https://www.linkedin.com/jobs/view/3449921545
Linkedin
CloudSEK hiring Intern - SDET in Bengaluru, Karnataka, India | LinkedIn
Posted 7:54:44 AM. WHO ARE WE?
We are a bunch of super enthusiastic, passionate, and highly driven people, working toโฆSee this and similar jobs on LinkedIn.
We are a bunch of super enthusiastic, passionate, and highly driven people, working toโฆSee this and similar jobs on LinkedIn.
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
ICIMS is hiring for Software Engineer Intern (2023 and 2024 batch can try)
https://careers.icims.com/careers-home/jobs/3971?lang=en-gb
https://careers.icims.com/careers-home/jobs/3971?lang=en-gb
๐1
int n = s.length();
Map<Character, Integer> f = new HashMap<>();
for (int i = 0; i < n; i++)
{
char chh = s.charAt(i);
int count = f.getOrDefault(chh, 0);
f.put(chh, count + 1);
}
int m = t.length();
Map<Character, Integer> f = new HashMap<>();
for (int i = 0; i < m; i++)
{
char chh = t.charAt(i);
int count = f.getOrDefault(chh, 0);
f.put(chh, count + 1);
}
int result = Integer.MAX_VALUE;
for (char key : f.keySet())
{
int c = freqS.getOrDefault(key, 0);
int r = f.get(key);
result = Math.min(result, c / r);
}
return result == Integer.MAX_VALUE ? -1 : result;
Amazon SDE1โ
Map<Character, Integer> f = new HashMap<>();
for (int i = 0; i < n; i++)
{
char chh = s.charAt(i);
int count = f.getOrDefault(chh, 0);
f.put(chh, count + 1);
}
int m = t.length();
Map<Character, Integer> f = new HashMap<>();
for (int i = 0; i < m; i++)
{
char chh = t.charAt(i);
int count = f.getOrDefault(chh, 0);
f.put(chh, count + 1);
}
int result = Integer.MAX_VALUE;
for (char key : f.keySet())
{
int c = freqS.getOrDefault(key, 0);
int r = f.get(key);
result = Math.min(result, c / r);
}
return result == Integer.MAX_VALUE ? -1 : result;
Amazon SDE1โ
๐2
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
ServiceNow hiring through their Women Code to Win Program. (Only for female candidates)
2023, 2024 and 2025 grads can apply.
Apply Link: https://unstop.com/o/6hDv8C0?lb=VM0FqwL
2023, 2024 and 2025 grads can apply.
Apply Link: https://unstop.com/o/6hDv8C0?lb=VM0FqwL
Unstop
ServiceNow Code to Win 2023 by ServiceNow! | 2022 // Unstop (formerly Dare2Compete)
ServiceNow invites female engineering students pursuing a career in technology to create impact and help solve some of the most challenging real-life problems with ServiceNow Women Code to Win 2023 - India! Apply before 1st Feb'23! | 2022
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Hexaview QA fresher's hiring (2020, 2021 and 2022 grads eligible)
First 6 months: 20k, then 3.6 LPA.
Also 2 year bond.
Fill if interested: https://forms.gle/HiWTv5r73P6pYYav5
First 6 months: 20k, then 3.6 LPA.
Also 2 year bond.
Fill if interested: https://forms.gle/HiWTv5r73P6pYYav5
Google Docs
Hexaview QA Fresher's Hiring
Hexaview QA Fresher's Hiring
Location: Noida
Batch: 2020, 2021 and 2022 grads (BTech, MCA)
2 year Bond.
Location: Noida
Batch: 2020, 2021 and 2022 grads (BTech, MCA)
2 year Bond.
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Smart Interviews is hiring for SDE 1 role (2021 and 2022 grads can apply)
https://www.linkedin.com/jobs/view/3456628470
CTC : 6-8 LPA
https://www.linkedin.com/jobs/view/3456628470
CTC : 6-8 LPA
Linkedin
Smart Interviews hiring Software Development Engineer - 1 in Hyderabad, Telangana, India | LinkedIn
Posted 1:30:49 PM. Hi there, weโre Smart Interviews.
Weโre on a mission to bridge the gap between education andโฆSee this and similar jobs on LinkedIn.
Weโre on a mission to bridge the gap between education andโฆSee this and similar jobs on LinkedIn.
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Seclore is hiring for Trainee Product Engineer role (2022 and 2023 grads eligible)
Location: Mumbai/Pune
Apply: https://www.linkedin.com/jobs/view/3456628105
P.S. There is less chance for your resume shortlist, because they mentioned from reputed institute only But you can try.
Location: Mumbai/Pune
Apply: https://www.linkedin.com/jobs/view/3456628105
P.S. There is less chance for your resume shortlist, because they mentioned from reputed institute only But you can try.
Linkedin
Seclore hiring Trainee Product Engineer in Mumbai, Maharashtra, India | LinkedIn
Posted 1:20:21 PM. WHO ARE WE?We are global leaders in the Data-Centric Security space. Right from protecting nuclearโฆSee this and similar jobs on LinkedIn.
๐3
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Quest Global - Off Campus Recruitment Drive
Only Batch 2022
https://forms.office.com/pages/responsepage.aspx?id=pCOqk-FuAUaFkjGnYkiTWZO07bw3lZFFsB8my-WVAMFUNzY3RjNOU0tSNUVIMkExMDhUQ0JYM0dZQi4u
Only Batch 2022
https://forms.office.com/pages/responsepage.aspx?id=pCOqk-FuAUaFkjGnYkiTWZO07bw3lZFFsB8my-WVAMFUNzY3RjNOU0tSNUVIMkExMDhUQ0JYM0dZQi4u
Office
Please fill out this form
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Analyst-Technology-Noida - KPMG India Careers
https://ejgk.fa.em2.oraclecloud.com/hcmUI/CandidateExperience/en/sites/CX_1/job/22000DY5/?utm_medium
https://ejgk.fa.em2.oraclecloud.com/hcmUI/CandidateExperience/en/sites/CX_1/job/22000DY5/?utm_medium
KPMG India
Analyst-Technology-Noida
JD for Python develops 1. 0-1 years of experience in python programming 2. Familiarity with Core Python programming such as python data structures, regular expressions, OOPS programming constructs 3. Knowledge on scrapping data from various sources like CSVโฆ
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Information Security Specialist | Careers at NTT DATA
https://nttdata.eightfold.ai/careers/job/563327913823409-information-security-specialist-bangalore-karnataka-india?domain=nttdata.com
https://nttdata.eightfold.ai/careers/job/563327913823409-information-security-specialist-bangalore-karnataka-india?domain=nttdata.com
๐3
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
ServiceNow is hiring for Software Engineer role (2020, 2021 and 2022 grads eligible)
https://careers.servicenow.com/careers/jobs/743999881486633EXT?lang=en-us&src=linkedin&sid=2d92f286-613b-4daf-9dfa-6340ffbecf73
https://careers.servicenow.com/careers/jobs/743999881486633EXT?lang=en-us&src=linkedin&sid=2d92f286-613b-4daf-9dfa-6340ffbecf73
๐1