Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Eurofins | Associate Software Engineer | 2024, 2023, 2022 Grads | Experience: 0-3 YOE
https://jobs.smartrecruiters.com/Eurofins/743999976784613-software-engineer
https://jobs.smartrecruiters.com/Eurofins/743999976784613-software-engineer
Eurofins
Eurofins is looking for a Software Engineer in Bengaluru, Karnataka, India
POSITION TITLE (ENGLISH): Software Engineer &#x...
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐PW (PhysicsWallah) is hiring for Back End Developer intern
Expected Stipend: 25k-45k per month
Apply here:
https://linkedin.com/jobs/view/3907293630/
Expected Stipend: 25k-45k per month
Apply here:
https://linkedin.com/jobs/view/3907293630/
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Societe Generale Off Campus Hiring Fresher For Analyst
Location : Bangalore
Qualification : Bachelor/Master Degree
Work Experience : Fresher - 3 Years
CTC : 4.8 LPA
Apply Link : https://careers.societegenerale.com/en/job-offers/analyst-2400011N-en?src=JB-14381
Location : Bangalore
Qualification : Bachelor/Master Degree
Work Experience : Fresher - 3 Years
CTC : 4.8 LPA
Apply Link : https://careers.societegenerale.com/en/job-offers/analyst-2400011N-en?src=JB-14381
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
LSEG is hiring Data Analyst!
Qualification: Bachelor's Degree
Entry level position
https://refinitiv.wd3.myworkdayjobs.com/Careers/job/IND-Bangalore-TowerERMZ-Infin/Data-Analyst_R0086415-1?
Qualification: Bachelor's Degree
Entry level position
https://refinitiv.wd3.myworkdayjobs.com/Careers/job/IND-Bangalore-TowerERMZ-Infin/Data-Analyst_R0086415-1?
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Hey all,
At Glance, we are looking for ML Interns, preferably studying Computer Science, to help us tackle problems using cutting edge Gen AI techniques - images & text both.
Location is Bangalore.
if this appeals to you do take a minute to fill this form - https://docs.google.com/forms/d/e/1FAIpQLSfCgZzFWGUmFT2JdPjoGiPq39S8PSpC5DalJ3I5o9az8dktKg/viewform
At Glance, we are looking for ML Interns, preferably studying Computer Science, to help us tackle problems using cutting edge Gen AI techniques - images & text both.
Location is Bangalore.
if this appeals to you do take a minute to fill this form - https://docs.google.com/forms/d/e/1FAIpQLSfCgZzFWGUmFT2JdPjoGiPq39S8PSpC5DalJ3I5o9az8dktKg/viewform
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
ZS is hiring for tech roles through ZS tech challenge - 2025 grads
https://app.joinsuperset.com/join/#/company/c0ca2554-565e-4d4d-b244-0cdfddda0bbc/competitions/a1e875ca-c51e-4049-970c-5046df2afd9a
https://app.joinsuperset.com/join/#/company/c0ca2554-565e-4d4d-b244-0cdfddda0bbc/competitions/a1e875ca-c51e-4049-970c-5046df2afd9a
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Cyber Security Internship Opportunity
Location: IIT Kanpur
Position Type: Virtual
Duration: 1 Month
Skills Knowledge: Cybersecurity + Python + GenAI
Learnings:
1. Research on Cybersecurity Threats and Trends
2. Building Projects on Cybersecurity and AI
3. Learning basics to advanced skills in Python
Kindly submit the form: https://lnkd.in/gaCcGTVM
NOTE: Few Interns will be selected at IIT Kanpur for full-time internship with Cyber3ra
Location: IIT Kanpur
Position Type: Virtual
Duration: 1 Month
Skills Knowledge: Cybersecurity + Python + GenAI
Learnings:
1. Research on Cybersecurity Threats and Trends
2. Building Projects on Cybersecurity and AI
3. Learning basics to advanced skills in Python
Kindly submit the form: https://lnkd.in/gaCcGTVM
NOTE: Few Interns will be selected at IIT Kanpur for full-time internship with Cyber3ra
lnkd.in
LinkedIn
This link will take you to a page thatโs not on LinkedIn
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
MAQ Hiring Software Engineer
https://forms.office.com/pages/responsepage.aspx?id=0o3Z5JmR5UK6i9o-dj7eLq0Di02SxiRKvrcmuY04xrFUQTlQM0tZNEpaQktGT09OUjJZOEhHSzNaNC4u
https://forms.office.com/pages/responsepage.aspx?id=0o3Z5JmR5UK6i9o-dj7eLq0Di02SxiRKvrcmuY04xrFUQTlQM0tZNEpaQktGT09OUjJZOEhHSzNaNC4u
Office
Please fill out this form
def maximize_profit(prices):
if len(prices) < 2:
return "Not Possible"
min_price = prices[0]
max_profit = 0
for price in prices[1:]:
max_profit = max(max_profit, price - min_price)
min_price = min(min_price, price)
if max_profit > 0:
return "Possible\n{}".format(max_profit)
else:
return "Not Possible"
n = int(input())
prices = list(map(int, input().split()))
print(maximize_profit(prices))
Maximize Profit โ
if len(prices) < 2:
return "Not Possible"
min_price = prices[0]
max_profit = 0
for price in prices[1:]:
max_profit = max(max_profit, price - min_price)
min_price = min(min_price, price)
if max_profit > 0:
return "Possible\n{}".format(max_profit)
else:
return "Not Possible"
n = int(input())
prices = list(map(int, input().split()))
print(maximize_profit(prices))
Maximize Profit โ
# include <bits/stdc++.h>
using namespace std;
#define ll long long
signed main(){
ll n; cin>>n;
vector<ll>a(n);
for(ll i=0;i<n;i++) cin>>a[i];
ll x=0;
for(ll i=0;i<n;i++) x^=a[i];
ll ans=LONG_MAX;
for(ll i=0;i<n;i++) ans=min(ans,x^a[i]);
cout<<ans<<endl;
return 0;
}
Minimum Xor โ
using namespace std;
#define ll long long
signed main(){
ll n; cin>>n;
vector<ll>a(n);
for(ll i=0;i<n;i++) cin>>a[i];
ll x=0;
for(ll i=0;i<n;i++) x^=a[i];
ll ans=LONG_MAX;
for(ll i=0;i<n;i++) ans=min(ans,x^a[i]);
cout<<ans<<endl;
return 0;
}
Minimum Xor โ
int minimumMagic(int n, int m, vector<int> &p, vector<int> &mp) {
vector<int> v(n);
int sum_ = 0;
for (int i = 0; i < n; ++i) {
v[i] = p[i] - mp[i];
sum_ += p[i];
}
sort(v.begin(), v.end(), greater<int>());
if (sum_ <= m) {
return 0;
}
for (int i = 0; i < n; ++i) {
sum_ -= v[i];
if (sum_ <= m) {
return i + 1;
}
}
return 0;
}
Hiring Drive โ
vector<int> v(n);
int sum_ = 0;
for (int i = 0; i < n; ++i) {
v[i] = p[i] - mp[i];
sum_ += p[i];
}
sort(v.begin(), v.end(), greater<int>());
if (sum_ <= m) {
return 0;
}
for (int i = 0; i < n; ++i) {
sum_ -= v[i];
if (sum_ <= m) {
return i + 1;
}
}
return 0;
}
Hiring Drive โ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Position: HR Fresher
Location: Phase 8B, Mohali, Punjab
Interview: Face-to-face only
Requirements: Training or internship in HR.
How to Apply: Send CV to sanjot@brucode.com or call/WhatsApp 7009008101.
Location: Phase 8B, Mohali, Punjab
Interview: Face-to-face only
Requirements: Training or internship in HR.
How to Apply: Send CV to sanjot@brucode.com or call/WhatsApp 7009008101.
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company โ Unified Mentor Private Limited
Role โ data analyst intern
Exp. โ Fresher
Apply Here โ https://www.linkedin.com/jobs/view/3907324906
Company โ Acencore Technologies
Role โ AI & ML Internship
Exp. โ Fresher
Apply Here โ https://internshala.com/internship/details/work-from-home-ai-ml-internship-at-acencore-technologies1713779302?utm_source=cp_link&referral=web_share
Company โ INI8 Labs Private Limited
Role โ Data Engineering Internship
Exp. โ Fresher
Apply Here โ https://internshala.com/internship/details/data-engineering-internship-in-bangalore-at-ini8-labs-private-limited1713853327?utm_source=cp_link&referral=web_share
Role โ data analyst intern
Exp. โ Fresher
Apply Here โ https://www.linkedin.com/jobs/view/3907324906
Company โ Acencore Technologies
Role โ AI & ML Internship
Exp. โ Fresher
Apply Here โ https://internshala.com/internship/details/work-from-home-ai-ml-internship-at-acencore-technologies1713779302?utm_source=cp_link&referral=web_share
Company โ INI8 Labs Private Limited
Role โ Data Engineering Internship
Exp. โ Fresher
Apply Here โ https://internshala.com/internship/details/data-engineering-internship-in-bangalore-at-ini8-labs-private-limited1713853327?utm_source=cp_link&referral=web_share
Internshala
AI & ML Work From Home Internship at Acencore Technologies
Selected intern's day-to-day responsibilities include:
1. Assist in Data Preparation: Support data preprocessing tasks using Python, NumPy, and Pandas, including cleaning, transformation, and feature engineering.
2. NLP Support: Assist in NLP tasksโฆ
1. Assist in Data Preparation: Support data preprocessing tasks using Python, NumPy, and Pandas, including cleaning, transformation, and feature engineering.
2. NLP Support: Assist in NLP tasksโฆ