Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐United Airlines is Hiring !!
Role: Associate Engineer
Experience: 0 -1 year's
Expected Salary: 8 LPA - 13 LPA
๐Apply here: https://bit.ly/3Ippqmn
Role: Associate Engineer
Experience: 0 -1 year's
Expected Salary: 8 LPA - 13 LPA
๐Apply here: https://bit.ly/3Ippqmn
โค1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Rupeek Is Hiring For SDE 1
Batch: 2023, 2022, 2021
https://docs.google.com/forms/d/e/1FAIpQLSdRlMVo7R7OmhBwAZJ3M0W8FEq7Y60ZDeQgaECoDmMj3TKSYw/viewform
Batch: 2023, 2022, 2021
https://docs.google.com/forms/d/e/1FAIpQLSdRlMVo7R7OmhBwAZJ3M0W8FEq7Y60ZDeQgaECoDmMj3TKSYw/viewform
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Swiggy Hiring 2022/2023 Batch
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐HARMAN is HIring !!
Role: Multiple Intern
Stipend: 15K-30K per month
๐Apply here for Intern: https://jobs.harman.com/en_US/careers/JobDetail/Student/19344
๐Apply here for Intern - Testing: https://jobs.harman.com/en_US/careers/JobDetail?jobId=19364&source=LinkedIn
Role: Multiple Intern
Stipend: 15K-30K per month
๐Apply here for Intern: https://jobs.harman.com/en_US/careers/JobDetail/Student/19344
๐Apply here for Intern - Testing: https://jobs.harman.com/en_US/careers/JobDetail?jobId=19364&source=LinkedIn
Harman
Student
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐ HPE is Hiring !!
Role - Salesforce Junior Developer
Experience: Freshers (0-3 years)
Location: Bengaluru
๐Apply Link -
https://careers.hpe.com/us/en/job/HPE1US1170920EXTERNALENUS/Salesforce-Junior-Developer
Role - Salesforce Junior Developer
Experience: Freshers (0-3 years)
Location: Bengaluru
๐Apply Link -
https://careers.hpe.com/us/en/job/HPE1US1170920EXTERNALENUS/Salesforce-Junior-Developer
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Eurofins hiring Associate software engineer
Experience : 0-2
https://www.smartrecruiters.com/Eurofins/743999970683493
Experience : 0-2
https://www.smartrecruiters.com/Eurofins/743999970683493
Eurofins
Eurofins is looking for a Associate Software Engineer in Bengaluru, Karnataka, India
POSITION TITLE: ASE/SEREPORTING TO: Manager REPORTING LOCATION: BangaloreWORKING LOCATION: Bangalore SUMMARY OF POSITION AND OBJECTIVES:As a โBI team memberโ, you need to ...
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
FresherOpportunityAlert
Fujitsu is Hiring For Trainee #Freshers!
Hiring For Trainee Freshers (2022 to 2023 Passed Out)
Position- Software Trainee.
Location -Pune, Chennai, Hyderabad, Bangalore and Noida
B.E./B. Tech. (CS/ IT/ECE, ENTC) MCA/BCA, MCS/BCS, MSC(IT, CS, ECE) Freshers of 2022/2023
Freshers who certified any IT technologies will have an added advantage.
Interested can share the your profile to Priyanka.bhosale@fujitsu.com
Fujitsu is Hiring For Trainee #Freshers!
Hiring For Trainee Freshers (2022 to 2023 Passed Out)
Position- Software Trainee.
Location -Pune, Chennai, Hyderabad, Bangalore and Noida
B.E./B. Tech. (CS/ IT/ECE, ENTC) MCA/BCA, MCS/BCS, MSC(IT, CS, ECE) Freshers of 2022/2023
Freshers who certified any IT technologies will have an added advantage.
Interested can share the your profile to Priyanka.bhosale@fujitsu.com
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Trained freshers Hiring..!!!!
1. JAVA (Fullstack)
2. QA (Manual & Automation selenium with JAVA and Frameworks)
NOTE: Must be trained on above any one technology.
Work Location : Hyderabad
Mode of work : WFO (Onsite)
# immediate joiners only preferred
Interested candidates kindly share your profiles to prem@defteam.co
1. JAVA (Fullstack)
2. QA (Manual & Automation selenium with JAVA and Frameworks)
NOTE: Must be trained on above any one technology.
Work Location : Hyderabad
Mode of work : WFO (Onsite)
# immediate joiners only preferred
Interested candidates kindly share your profiles to prem@defteam.co
๐ฑ1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
GDSC Leads | Google Developer Student Clubs | Google for Developers
https://developers.google.com/community/gdsc/leads
https://developers.google.com/community/gdsc/leads
Google for Developers
Community, Network, Stories, and Programs - Google for Developers
Join a Google community for developers to network, share stories, and learn together about web and mobile app development, cloud, AI, and other topics.
def find_first_non_repeating_character(s):
char_count = {}
for char in s:
if char in char_count:
char_count[char] += 1
else:
char_count[char] = 1
for char in s:
if char_count[char] == 1:
return char
return -1
str_input = input()
result = find_first_non_repeating_character(str_input)
print(result)
char_count = {}
for char in s:
if char in char_count:
char_count[char] += 1
else:
char_count[char] = 1
for char in s:
if char_count[char] == 1:
return char
return -1
str_input = input()
result = find_first_non_repeating_character(str_input)
print(result)
๐2
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐NAVI TECHNOLOGIES LIMITED is hiring !!
Role: Software Solutions Engineer - 1
Salary: 14-28 LPA
Experience: Fresher
๐Apply here: https://navi.freshteam.com/jobs/q4Vx6QzXdzDz/software-solutions-engineer-1
Role: Software Solutions Engineer - 1
Salary: 14-28 LPA
Experience: Fresher
๐Apply here: https://navi.freshteam.com/jobs/q4Vx6QzXdzDz/software-solutions-engineer-1
Freshteam
Hiring for Software Solutions Engineer - 1 for Bengaluru
Posted by : Navi |
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Lytx is Hiring !!
Role: Software Engineer I
Expected Salary: 7-15 LPA
๐Apply here: https://lytx.wd1.myworkdayjobs.com/en-US/Lytx/job/India/Software-Engineer-I_R-2919
Role: Software Engineer I
Expected Salary: 7-15 LPA
๐Apply here: https://lytx.wd1.myworkdayjobs.com/en-US/Lytx/job/India/Software-Engineer-I_R-2919
Happy Mahashivrati Everyone ๐ Lord Shiva help everyone getting their Dreams Jobs
โค14
def getRegions(ip_addresses):
def isValidIP(ip):
parts = ip.split('.')
if len(parts) != 4:
return False
for part in parts:
if not part.isdigit():
return False
if not 0 <= int(part) <= 255:
return False
return True
def getRegion(ip):
first_octet = int(ip.split('.')[0])
if 0 <= first_octet <= 127:
return 1
elif 128 <= first_octet <= 191:
return 2
elif 192 <= first_octet <= 223:
return 3
elif 224 <= first_octet <= 239:
return 4
elif 240 <= first_octet <= 255:
return 5
else:
return -1
regions = []
for ip in ip_addresses:
if isValidIP(ip):
regions.append(getRegion(ip))
else:
regions.append(-1)
return regions
Location Detection โ
def isValidIP(ip):
parts = ip.split('.')
if len(parts) != 4:
return False
for part in parts:
if not part.isdigit():
return False
if not 0 <= int(part) <= 255:
return False
return True
def getRegion(ip):
first_octet = int(ip.split('.')[0])
if 0 <= first_octet <= 127:
return 1
elif 128 <= first_octet <= 191:
return 2
elif 192 <= first_octet <= 223:
return 3
elif 224 <= first_octet <= 239:
return 4
elif 240 <= first_octet <= 255:
return 5
else:
return -1
regions = []
for ip in ip_addresses:
if isValidIP(ip):
regions.append(getRegion(ip))
else:
regions.append(-1)
return regions
Location Detection โ
#include <iostream>
#include <vector>
#include <unordered_map>
#include <algorithm>
using namespace std;
int solution(const vector<int> &m, const vector<int> &t, int mlimit) {
unordered_map<int, vector<int>> have;
for (int i = 0; i < m.size(); ++i) {
have[t[i]].push_back(m[i]);
}
int r = 0;
for (auto& p : have) {
auto& v = p.second;
sort(v.begin(), v.end());
int i = 0, j = v.size() - 1;
for (; i < j; ++r, --j) {
if (v[i] + v[j] <= mlimit) {
++i;
}
}
if (i == j) {
++r;
}
}
return r;
}
Task Scheduling โ
#include <vector>
#include <unordered_map>
#include <algorithm>
using namespace std;
int solution(const vector<int> &m, const vector<int> &t, int mlimit) {
unordered_map<int, vector<int>> have;
for (int i = 0; i < m.size(); ++i) {
have[t[i]].push_back(m[i]);
}
int r = 0;
for (auto& p : have) {
auto& v = p.second;
sort(v.begin(), v.end());
int i = 0, j = v.size() - 1;
for (; i < j; ++r, --j) {
if (v[i] + v[j] <= mlimit) {
++i;
}
}
if (i == j) {
++r;
}
}
return r;
}
Task Scheduling โ
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Cognizant are hiring for Subject Matter Expert- Foreclosure
Qualification: Any Graduate
Experience: 0 to 5 yrs.
Timings: US Shift
Location: Mumbai
Skillset: Foreclosure, US Mortgage
If you find yourself suitable for this role, please share your updated resume on swati.dansana@cognizant.com with the below details.
Total work experience:
Current CTC:
Expected CTC:
Notice period:
Qualification: Any Graduate
Experience: 0 to 5 yrs.
Timings: US Shift
Location: Mumbai
Skillset: Foreclosure, US Mortgage
If you find yourself suitable for this role, please share your updated resume on swati.dansana@cognizant.com with the below details.
Total work experience:
Current CTC:
Expected CTC:
Notice period:
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
ROLE Manager โ Logistics and Customer Service.
LOCATION-Chennai, Head Office
EXPERIENCE-6 months + experience in Logistics. Supply chain would also be relevant as long as candidate has knowledge of logistics
INDUSTRY-FMCG / Automobile / Manufacturing
CURRENT CTC-25 LPA + only
OFFERED CTC-15% - 20% Increase on CTC
QUALIFICATION-PG Diploma in Industrial Engineering โ From IIM โ Mumbai (Also called as NITIE - National Institute of Industrial Engineering)
2022 / 2023 batches only
If interested, kindly share your updated resumes on mitali.dey@cielhr.com
LOCATION-Chennai, Head Office
EXPERIENCE-6 months + experience in Logistics. Supply chain would also be relevant as long as candidate has knowledge of logistics
INDUSTRY-FMCG / Automobile / Manufacturing
CURRENT CTC-25 LPA + only
OFFERED CTC-15% - 20% Increase on CTC
QUALIFICATION-PG Diploma in Industrial Engineering โ From IIM โ Mumbai (Also called as NITIE - National Institute of Industrial Engineering)
2022 / 2023 batches only
If interested, kindly share your updated resumes on mitali.dey@cielhr.com
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Wipro Recruitment of Freshers For Software Developer Role
Experience : Freshers
Skills:
- Strong Knowledge of various programming languages.
- Expertise in automation tools and systems.
- Good knowledge of software development life cycle.
- Strong debug and data analysis skills
๐ Apply Link -
https://careers.wipro.com/opportunities/jobs/3046326?lang=en-us&previousLocale=en-US
Experience : Freshers
Skills:
- Strong Knowledge of various programming languages.
- Expertise in automation tools and systems.
- Good knowledge of software development life cycle.
- Strong debug and data analysis skills
๐ Apply Link -
https://careers.wipro.com/opportunities/jobs/3046326?lang=en-us&previousLocale=en-US
โค2๐1