Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Batch 2023/2024
https://docs.google.com/forms/d/e/1FAIpQLSdQ-NzcoWBahQyqn_8fpL0DEWxmN1pu5F8RbRuPw2PY6qks6Q/viewform?pli=1
https://docs.google.com/forms/d/e/1FAIpQLSdQ-NzcoWBahQyqn_8fpL0DEWxmN1pu5F8RbRuPw2PY6qks6Q/viewform?pli=1
Google Docs
HBWSL Software Developer Form 2024
This is a screening application form for HummingBird Web Solutions, for the following roles -
Software Developer (Fresher) postion:- (SD 02)
Job Location: Pune, Baner.
CTC :- 6 lac
JD Link:- https://drive.google.com/file/d/1HvXVdvPnPp4SoyxiSF-kiwGj9โฆ
Software Developer (Fresher) postion:- (SD 02)
Job Location: Pune, Baner.
CTC :- 6 lac
JD Link:- https://drive.google.com/file/d/1HvXVdvPnPp4SoyxiSF-kiwGj9โฆ
#include <iostream>
#include <vector>
#include <algorithm>
const int MOD = 1e9 + 7;
using namespace std;
long long solve(const vector<int>& a, int b) {
int c = a.size();
long long d = 0;
for (int i = 0; i < c; i++) {
d += a[i];
}
vector<long long> e(b + 1, 0);
e[0] = 1;
for (int i = 0; i < c; i++) {
for (int j = b; j >= a[i]; j--) {
e[j] = (e[j] + e[j - a[i]]) % MOD;
}
}
long long f = 1;
for (int i = 0; i < c; i++) {
f = (f * 2) % MOD;
}
long long g = 0;
for (int i = 0; i <= b; i++) {
g = (g + e[i]) % MOD;
}
long long h = (f - 2 * g + MOD) % MOD;
return h;
}
Sum of the elements โ
Oyo
def solve(n, m, arr):
mod = 10**9 + 7
fact = [1] * (n + 1)
for i in range(2, n + 1):
fact[i] = fact[i - 1] * i % mod
arr.sort()
if n == 1:
return 1
val = arr.pop()
arr[-1] += val
def mod_inverse(a, mod):
return pow(a, mod - 2, mod)
ans = fact[n]
temp = 1
for count in arr:
temp = (temp * fact[count]) % mod
temp = mod_inverse(temp, mod)
return (ans * temp) % mod
minimum arrangements โ
Oyo
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Linkedin
๐ Hiring Full Stack Developers - Batch 2025! | Pushpa Barpete
๐ Hiring Full Stack Developers - Batch 2025! ๐
Wyreflow Technologies is excited to welcome fresh talent from the 2025 batch to join our team as Full Stack Developers. If youโre passionate about coding, innovation, and ready to grow with us, this opportunityโฆ
Wyreflow Technologies is excited to welcome fresh talent from the 2025 batch to join our team as Full Stack Developers. If youโre passionate about coding, innovation, and ready to grow with us, this opportunityโฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name : Google
Batch : 2025 passouts
Role : Software Engineer - University Grad
Link : https://www.google.com/about/careers/applications/jobs/results/142576465748075206-software-engineer/
Batch : 2025 passouts
Role : Software Engineer - University Grad
Link : https://www.google.com/about/careers/applications/jobs/results/142576465748075206-software-engineer/
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐We are hiring for Network Engineers..
Location - Kochi and Bangalore
Qualification - Graduate and CCNA Certified
Experience - Only Freshers
Interested candidates please share your resume on ankita.thakur@intertouch.com
Location - Kochi and Bangalore
Qualification - Graduate and CCNA Certified
Experience - Only Freshers
Interested candidates please share your resume on ankita.thakur@intertouch.com
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
Photo
#include <iostream>
#include <vector>
using namespace std;
const int MOD = 1e9 + 7;
class SegmentTree {
int n;
vector<long long> t;
bool isSum;
public:
SegmentTree(const vector<int>& v, bool sum) : n(v.size()), isSum(sum) {
t.resize(2 * n, sum ? 0 : 1);
for (int i = 0; i < n; ++i) {
t[i + n] = v[i];
}
for (int i = n - 1; i > 0; --i) {
t[i] = isSum ? (t[2 * i] + t[2 * i + 1]) % MOD : (t[2 * i] * t[2 * i + 1]) % MOD;
}
}
long long query(int l, int r) {
long long res = isSum ? 0 : 1;
l += n;
r += n;
while (l < r) {
if (l & 1) {
res = isSum ? (res + t[l]) % MOD : (res * t[l]) % MOD;
++l;
}
if (r & 1) {
--r;
res = isSum ? (res + t[r]) % MOD : (res * t[r]) % MOD;
}
l /= 2;
r /= 2;
}
return res;
}
};
vector<long long> HardQueries(int n, const vector<int>& v, int q, const vector<vector<int>>& queries) {
vector<long long> ans;
SegmentTree sumTree(v, true);
SegmentTree prodTree(v, false);
for (const auto& x : queries) {
int type = x[0], a = x[1] - 1, b = x[2];
vector<int> indices;
for (int i = a; i < n; i += b) {
indices.push_back(i);
}
if (type == 0) {
long long res = 0;
for (int idx : indices) {
res = (res + sumTree.query(idx, idx + 1)) % MOD;
}
ans.push_back(res);
} else if (type == 1) {
long long res = 1;
for (int idx : indices) {
res = (res * prodTree.query(idx, idx + 1)) % MOD;
}
ans.push_back(res);
}
}
return ans;
}
queries and fruitsโ
โค1๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Optum
Role: Software Engineer
Batch eligible: 2023 and 2024 grads
Apply: https://careers.unitedhealthgroup.com/job/21243748/software-engineer-hyderabad-in
Role: Software Engineer
Batch eligible: 2023 and 2024 grads
Apply: https://careers.unitedhealthgroup.com/job/21243748/software-engineer-hyderabad-in
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Zebra Technology
Role: Software Engineer 1
YOE: 0-2 years
Apply: https://zebra.eightfold.ai/careers/job?domain=zebra.com&pid=343623229683&domain=zebra.com
Role: Software Engineer 1
YOE: 0-2 years
Apply: https://zebra.eightfold.ai/careers/job?domain=zebra.com&pid=343623229683&domain=zebra.com
โค1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name : UKG
Batch : 2024 passouts
Role : SDE Internship
Link : https://apply.ukg.com/careers/job?domain=ukg.com&pid=893379164769&domain=ukg.com&sort_by=relevance&job_index=0
Batch : 2024 passouts
Role : SDE Internship
Link : https://apply.ukg.com/careers/job?domain=ukg.com&pid=893379164769&domain=ukg.com&sort_by=relevance&job_index=0
๐2
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name : Meesho
Batch : 2024/2023 passouts
Role : SDE1
Link : https://docs.google.com/forms/d/e/1FAIpQLScESUZ3QSePda-W4tpRQh3jYgI5l5LqvdzscXosghfVTOgvNA/viewform?pli=1
Will be closed soon, fill asap.
Batch : 2024/2023 passouts
Role : SDE1
Link : https://docs.google.com/forms/d/e/1FAIpQLScESUZ3QSePda-W4tpRQh3jYgI5l5LqvdzscXosghfVTOgvNA/viewform?pli=1
Will be closed soon, fill asap.
๐2
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Synopsys Internship
Batch - 2024,2025
Link - https://careers.synopsys.com/job/-/-/44408/70164146400?codes=OT
Batch - 2024,2025
Link - https://careers.synopsys.com/job/-/-/44408/70164146400?codes=OT
Company
Working at Synopsys
Browse available job openings at Synopsys
๐1๐คฎ1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐GroRapid Labs is hiring for Senior Web3 Full Stack Engineer - Remote India
Experience: 0 - 1 year's
Expected Salary: $100K - $120K yearly
Apply here: https://www.linkedin.com/jobs/view/4068751932/?alternateChannel=search
๐Baazi Games is hiring for React Native Engineer
Experience: 0 - 1 year's
Expected Salary: 10-20 LPA
Apply here: https://www.linkedin.com/jobs/view/4070650542/?alternateChannel=search
Experience: 0 - 1 year's
Expected Salary: $100K - $120K yearly
Apply here: https://www.linkedin.com/jobs/view/4068751932/?alternateChannel=search
๐Baazi Games is hiring for React Native Engineer
Experience: 0 - 1 year's
Expected Salary: 10-20 LPA
Apply here: https://www.linkedin.com/jobs/view/4070650542/?alternateChannel=search
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐RSM Hiring !!
Role - Associate Engineer 1
Experience: 0 to 2 year
๐ปApply Link: https://rsm.wd1.myworkdayjobs.com/RSMCareers/job/Hyderabad/Associate-Engineer-1_JR109851
Role - Associate Engineer 1
Experience: 0 to 2 year
๐ปApply Link: https://rsm.wd1.myworkdayjobs.com/RSMCareers/job/Hyderabad/Associate-Engineer-1_JR109851
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐ข Hiring Alert: Data Science Interns Wanted! (Offline, Full-Time, 3 Months)
Location - Indore
Seeking enthusiastic, data-driven individuals for a full-time, on-site internship lasting 3 months! This is a unique opportunity to dive into real-world data science projects, collaborate with industry experts, and build valuable skills in a hands-on environment. If you're ready to learn, innovate, and make a difference, weโd love to hear from you!
Note - To be considered for further process,
Mail your resume at ankush.deshmukh@artivatic.ai
mail subject / Title - internship_application
resume - internship_yourname.pdf
Location - Indore
Seeking enthusiastic, data-driven individuals for a full-time, on-site internship lasting 3 months! This is a unique opportunity to dive into real-world data science projects, collaborate with industry experts, and build valuable skills in a hands-on environment. If you're ready to learn, innovate, and make a difference, weโd love to hear from you!
Note - To be considered for further process,
Mail your resume at ankush.deshmukh@artivatic.ai
mail subject / Title - internship_application
resume - internship_yourname.pdf
๐2
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
We're looking for talented B.Tech (CS/IT) & MCA graduates from the 2024/2025 batch to join our team. If you're ready to kickstart your tech career, apply by 20th November 2024 and become part of our innovation-driven culture! Please DM me if you are interested!
#Email- hr@venturesdigitalindia.com
#Email- hr@venturesdigitalindia.com
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Hello All,
I am delighted to announce that We are currently hiring freshers with backgrounds in MTech Optical Engineering/ Applied Optics/ Optoelectronics and Optical Communication/ Laser and Electro-Optical Engineering, or Optics and Optoelectronics.
If you are interested, please share your resume with us at suganya.umameshwaran@vcti.io
Thank you,
Suganya
I am delighted to announce that We are currently hiring freshers with backgrounds in MTech Optical Engineering/ Applied Optics/ Optoelectronics and Optical Communication/ Laser and Electro-Optical Engineering, or Optics and Optoelectronics.
If you are interested, please share your resume with us at suganya.umameshwaran@vcti.io
Thank you,
Suganya
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Weโre #Hiring #Freshers! Join Our Dynamic Team! ๐
Position: Trainee Software Engineer
Location: Hyderabad
Industry: IT Software
Job Type: Full-time
Role Overview:
We are looking for enthusiastic and motivated Freshers to join our dynamic team. If you are passionate about working with latest technologies, eager to learn, and excited to contribute to a vibrant team environment, this is the perfect opportunity for you!
Key Responsibilities:
Assist with day-to-day tasks and projects
Collaborate with cross-functional teams
Learn and adapt to [specific tools/technologies related to the role]
Contribute fresh ideas and solutions
Participate in training and development sessions to build your skills
Who We Are Looking For:
Recent graduates or individuals with less than 1 year of work experience
Strong communication and interpersonal skills
Eagerness to learn and adapt in a fast-paced environment
Proactive attitude and willingness to take initiative
Skills: Python, React JS, Node JS or any running/upcoming tech stack in the market
Why #AthenaGlobalTechnologiesLtd?
Opportunities for growth and career advancement
A supportive and inclusive work culture
Training and mentorship from experienced professionals
How to Apply:
Please submit your updated resume and a brief cover letter to praveen.pappu@athenagt.com & ramana.singh@athenagt.com
Position: Trainee Software Engineer
Location: Hyderabad
Industry: IT Software
Job Type: Full-time
Role Overview:
We are looking for enthusiastic and motivated Freshers to join our dynamic team. If you are passionate about working with latest technologies, eager to learn, and excited to contribute to a vibrant team environment, this is the perfect opportunity for you!
Key Responsibilities:
Assist with day-to-day tasks and projects
Collaborate with cross-functional teams
Learn and adapt to [specific tools/technologies related to the role]
Contribute fresh ideas and solutions
Participate in training and development sessions to build your skills
Who We Are Looking For:
Recent graduates or individuals with less than 1 year of work experience
Strong communication and interpersonal skills
Eagerness to learn and adapt in a fast-paced environment
Proactive attitude and willingness to take initiative
Skills: Python, React JS, Node JS or any running/upcoming tech stack in the market
Why #AthenaGlobalTechnologiesLtd?
Opportunities for growth and career advancement
A supportive and inclusive work culture
Training and mentorship from experienced professionals
How to Apply:
Please submit your updated resume and a brief cover letter to praveen.pappu@athenagt.com & ramana.singh@athenagt.com
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Linkedin
Sign Up | LinkedIn
500 million+ members | Manage your professional identity. Build and engage with your professional network. Access knowledge, insights and opportunities.