Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Zupee is hiring Software Engineer
For 2021, 2022, 2023, 2024 gards
Location: Gurugram
https://www.linkedin.com/jobs/view/4191157806
For 2021, 2022, 2023, 2024 gards
Location: Gurugram
https://www.linkedin.com/jobs/view/4191157806
Linkedin
1,000+ Qualcomm jobs in United States
Today's top 1,000+ Qualcomm jobs in United States. Leverage your professional network, and get hired. New Qualcomm jobs added daily.
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Hitachi is a Full stack Developer
For 2023, 2024, 2025 gards
Location: Hyderabad
https://hitachids.com/careers/job-details/
For 2023, 2024, 2025 gards
Location: Hyderabad
https://hitachids.com/careers/job-details/
Hitachi Digital Services -
Job Details - Hitachi Digital Services
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Linkedin
๐ Join Ananta Cloudโs Early Career Program: DevOps Internship (Paid) | Ananta Cloud
๐ Join Ananta Cloudโs Early Career Program: DevOps Internship (Paid)
Ananta Cloud is hiring DevOps Interns for our 6-month Training + Internship Program!
๐น Program: Early Career Program
๐น Duration: 6 months (Paid Internship)
๐น Preferred Qualifications:โฆ
Ananta Cloud is hiring DevOps Interns for our 6-month Training + Internship Program!
๐น Program: Early Career Program
๐น Duration: 6 months (Paid Internship)
๐น Preferred Qualifications:โฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Coinbase
Batch : 2023/24 passouts
Role : SDE
Link : https://www.linkedin.com/jobs/view/4172324097
Batch : 2023/24 passouts
Role : SDE
Link : https://www.linkedin.com/jobs/view/4172324097
Linkedin
176 Engine Programmer jobs in United States (8 new)
Todayโs top 176 Engine Programmer jobs in United States. Leverage your professional network, and get hired. New Engine Programmer jobs added daily.
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Linkedin
๐ Hiring Alert โ SDE I (Frontend & Backend) at Observe.AI! | Rahul Verma
๐ Hiring Alert โ SDE I (Frontend & Backend) at Observe.AI! ๐
Hey everyone! Exciting news โ Observe.AI is hiring Software Development Engineer I (SDE I) in Bangalore, India! If you love working on scalable, high-impact solutions in a fast-paced environmentโฆ
Hey everyone! Exciting news โ Observe.AI is hiring Software Development Engineer I (SDE I) in Bangalore, India! If you love working on scalable, high-impact solutions in a fast-paced environmentโฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Linkedin
Hi Everyone! | Saurabh Mittal
Hi Everyone!
We are hiring Business Analysts @Policybazaar.com, Health Insurance Business Unit.
Experience Required: 1-4 Years
Preferred Candidates :
A) Immediate Joiner
B) Prior Experience in Fast Paced Startup
Must have skills
B.Tech/BBA/B.Com in anyโฆ
We are hiring Business Analysts @Policybazaar.com, Health Insurance Business Unit.
Experience Required: 1-4 Years
Preferred Candidates :
A) Immediate Joiner
B) Prior Experience in Fast Paced Startup
Must have skills
B.Tech/BBA/B.Com in anyโฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Linkedin
#salesforce #hiring #salesforceadmin #freshers #careers #jobopeningโฆ | Rutuja Dattatray Shinde | 63 comments
๐ข Hiring Alert: Salesforce Administrator (Fresher) ๐
Are you a fresher looking to kick-start your career in Salesforce Administration? We are looking for aโฆ | 63 comments on LinkedIn
Are you a fresher looking to kick-start your career in Salesforce Administration? We are looking for aโฆ | 63 comments on LinkedIn
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Linkedin
๐ Weโre Hiring: Junior Capabilities & Insights Analyst / Analyst | Anoushka Panwar
๐ Weโre Hiring: Junior Capabilities & Insights Analyst / Analyst
๐ Location: Gurgaon, India
๐ก Make an Impact: Join McKinseyโs Chemicals & Agriculture Practice to solve complex client challenges and deliver actionable insights on global business trendsโฆ
๐ Location: Gurgaon, India
๐ก Make an Impact: Join McKinseyโs Chemicals & Agriculture Practice to solve complex client challenges and deliver actionable insights on global business trendsโฆ
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
Photo
#include <bits/stdc++.h>
using namespace std;
int solve(int x1, int y1, int x2, int y2, int xc, int yc, int R) {
int R_squared = R * R;
int x_min = max(x1, xc - R);
int x_max = min(x2, xc + R);
if (x_min > x_max) {
return 0;
}
int count = 0;
for (int x = x_min; x <= x_max; ++x) {
int dx = x - xc;
int dx_squared = dx * dx;
int remaining = R_squared - dx_squared;
if (remaining < 0) {
continue;
}
int ry = static_cast<int>(sqrt(remaining));
int y_min_circle = yc - ry;
int y_max_circle = yc + ry;
int y_min = max(y1, y_min_circle);
int y_max = min(y2, y_max_circle);
if (y_min > y_max) {
continue;
}
count += (y_max - y_min + 1);
}
return count;
}
int main() {
int x1, y1, x2, y2, xc, yc, R;
cin >> x1 >> y1 >> x2 >> y2;
cin >> xc >> yc >> R;
cout << solve(x1, y1, x2, y2, xc, yc, R) << endl;
return 0;
}
conditional coordinates โ
using namespace std;
int solve(int x1, int y1, int x2, int y2, int xc, int yc, int R) {
int R_squared = R * R;
int x_min = max(x1, xc - R);
int x_max = min(x2, xc + R);
if (x_min > x_max) {
return 0;
}
int count = 0;
for (int x = x_min; x <= x_max; ++x) {
int dx = x - xc;
int dx_squared = dx * dx;
int remaining = R_squared - dx_squared;
if (remaining < 0) {
continue;
}
int ry = static_cast<int>(sqrt(remaining));
int y_min_circle = yc - ry;
int y_max_circle = yc + ry;
int y_min = max(y1, y_min_circle);
int y_max = min(y2, y_max_circle);
if (y_min > y_max) {
continue;
}
count += (y_max - y_min + 1);
}
return count;
}
int main() {
int x1, y1, x2, y2, xc, yc, R;
cin >> x1 >> y1 >> x2 >> y2;
cin >> xc >> yc >> R;
cout << solve(x1, y1, x2, y2, xc, yc, R) << endl;
return 0;
}
conditional coordinates โ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company : SkillFied Mentor
Role: Data Analyst Intern
Exp: Fresher
Apply now - https://www.linkedin.com/jobs/view/4193329703
Company : Corporate Web Solutions
Role: Data Analyst Trainee
Exp: Fresher
Apply now - https://www.linkedin.com/jobs/view/4190531235
Company : Clinchcloud Solutions
Role: Data Analytics Trainee
Exp: Fresher
Apply now - https://www.linkedin.com/jobs/view/4189357960
Role: Data Analyst Intern
Exp: Fresher
Apply now - https://www.linkedin.com/jobs/view/4193329703
Company : Corporate Web Solutions
Role: Data Analyst Trainee
Exp: Fresher
Apply now - https://www.linkedin.com/jobs/view/4190531235
Company : Clinchcloud Solutions
Role: Data Analytics Trainee
Exp: Fresher
Apply now - https://www.linkedin.com/jobs/view/4189357960
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Linkedin
๐ข Weโre Hiring! | NIZAMUDEEN S
๐ข Weโre Hiring! Exciting Internship Opportunities at Botberry Solutions!
Are you a passionate and driven B.E (ECE/EEE) student from the 2024 or 2025 batch looking for hands-on experience in IoT development or Electronics & QA? Botberry Solutions invites youโฆ
Are you a passionate and driven B.E (ECE/EEE) student from the 2024 or 2025 batch looking for hands-on experience in IoT development or Electronics & QA? Botberry Solutions invites youโฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Linkedin
Google Forms: Sign-in | Laya Kurdekar
๐ข Hiring Alert: Walk-in Interviews at DeltaX Pune (Batch of 2025)
We have some exciting opportunities in digital marketing for freshers who are enthusiastic about generating and maximizing ROI, working in a fast paced environment with growing efficiencyโฆ
We have some exciting opportunities in digital marketing for freshers who are enthusiastic about generating and maximizing ROI, working in a fast paced environment with growing efficiencyโฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Pitney Bowes is hiring for Intern
Experience: 0 - 2 year's
Expected Stipend: 25K-45K per month
Apply here: https://careers.pitneybowes.com/global/en/job/R19860/Intern?rx_job=R19860&rx_medium=post&rx_paid=0&rx_r=none&rx_source=linkedinll&rx_ts=20250329T021602Z&rx_viewer=ee0e265b0c5a11f09048f5b2c8cff0f2ca39d22a8b2f41b7ac3ba27142dc90c3
Experience: 0 - 2 year's
Expected Stipend: 25K-45K per month
Apply here: https://careers.pitneybowes.com/global/en/job/R19860/Intern?rx_job=R19860&rx_medium=post&rx_paid=0&rx_r=none&rx_source=linkedinll&rx_ts=20250329T021602Z&rx_viewer=ee0e265b0c5a11f09048f5b2c8cff0f2ca39d22a8b2f41b7ac3ba27142dc90c3
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Curriculum Associates is hiring for Frontend Developer
Experience: 0 - 2 year's
Expected Salary: 10-20 LPA
Apply here: https://www.linkedin.com/jobs/view/4150267143/?alternateChannel=search
Experience: 0 - 2 year's
Expected Salary: 10-20 LPA
Apply here: https://www.linkedin.com/jobs/view/4150267143/?alternateChannel=search
Linkedin
Curriculum Associates hiring Frontend Developer in Bengaluru, Karnataka, India | LinkedIn
Posted 12:28:52 PM. At Curriculum Associates (CA), we believe a diverse team leads to diversity in thinking, making ourโฆSee this and similar jobs on LinkedIn.
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Cisco
Product Activation Specialist - Entry Level (Meraki)
Apply for Product Activation Specialist - Entry Level (Meraki) job with Cisco in Bangalore, India. Read about the role and find out if it's right for you.