Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: DP World
Role: SDET - 1
Batch eligible: 2022 and 2023 grads
Apply: https://bit.ly/3r7Pzku
Role: SDET - 1
Batch eligible: 2022 and 2023 grads
Apply: https://bit.ly/3r7Pzku
DP World
SDET I
In this role, the you will have full access to the code, and will be creating & designing test automation scripts and framework for one of our core modules. You will be working with cross functional teams across the company to benchmark the systems with bestโฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Hyland
Role: Developer 1
Batch eligible: 2022 and 2023 grads
Apply: https://bit.ly/45KwUdO
Role: Developer 1
Batch eligible: 2022 and 2023 grads
Apply: https://bit.ly/45KwUdO
careers
Developer 1 in Kolkata, West Bengal | Careers at Kolkata
Hyland Software is widely known as a great company to work for and a great company to do business with. Being a leader in providing software solution for managing content, processes and cases for organizations across the globe we enabled more than 20,000โฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Google
Role: Software Engineer Intern
Batch eligible: 2024 grads
Apply: https://bit.ly/3Zfu1zh
P.S: Itโs not an internship, itโs full time role.
Role: Software Engineer Intern
Batch eligible: 2024 grads
Apply: https://bit.ly/3Zfu1zh
P.S: Itโs not an internship, itโs full time role.
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: FinBox
Role: Software Engineer Intern
Batch eligible: 2023 grads only
Apply: https://www.linkedin.com/jobs/view/3711603387
Role: Software Engineer Intern
Batch eligible: 2023 grads only
Apply: https://www.linkedin.com/jobs/view/3711603387
Linkedin
FinBox hiring Software Engineer Intern (Backend) in Bengaluru, Karnataka, India | LinkedIn
Posted 5:47:17 AM. About FinBox
First thing first, we are happy to share our success in hitting the $15M Series AโฆSee this and similar jobs on LinkedIn.
First thing first, we are happy to share our success in hitting the $15M Series Aโฆ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)
Aditya Birla Capital Scholarship 2023-24
Criteria:
- Students studying from class 1 to graduation courses (General and Professional) can apply & at least 60% marks in their previous class.
- The family annual income of the applicants should not exceed Rs 6 lakh from all sources combined.
Rewards/Benefits:
Scholarship up to Rs 60,000 will be received.
Last date: 30-09-2023
Application Link: https://www.buddy4study.com/page/aditya-birla-capital-scholarship
Criteria:
- Students studying from class 1 to graduation courses (General and Professional) can apply & at least 60% marks in their previous class.
- The family annual income of the applicants should not exceed Rs 6 lakh from all sources combined.
Rewards/Benefits:
Scholarship up to Rs 60,000 will be received.
Last date: 30-09-2023
Application Link: https://www.buddy4study.com/page/aditya-birla-capital-scholarship
Buddy4Study
Aditya Birla Capital Scholarship 2024-25 [Get one-time fixed scholarship of up to INR 60,000 ]
Aditya Birla Capital Scholarship 2024-25 offers one-time scholarship of up to INR 60,000 to students in Classes 9 to 12 or undergraduate courses.
๐2
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Ubisoft
Role: Programmer Intern
Batch eligible: 2022 and 2023 grads
Apply :
https://www.linkedin.com/jobs/view/3713585608
Role: Programmer Intern
Batch eligible: 2022 and 2023 grads
Apply :
https://www.linkedin.com/jobs/view/3713585608
Linkedin
Ubisoft India Studios hiring Intern Programmer in Mumbai, Maharashtra, India | LinkedIn
Posted 10:58:47 AM. Company DescriptionUbisoft is a leading developer and publisher of video games worldwide whoseโฆ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)
Yahoo hiring Site Reliability Engineer !
Salary: 8 LPA - 13 LPA
Batch : 2024 / 2023 / 2022 and early
Apply - https://tinyurl.com/bdfz5pr6
Salary: 8 LPA - 13 LPA
Batch : 2024 / 2023 / 2022 and early
Apply - https://tinyurl.com/bdfz5pr6
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Linkedin
FinBox hiring Software Engineer Intern (Backend) in Bengaluru, Karnataka, India | LinkedIn
Posted 5:47:17 AM. About FinBox
First thing first, we are happy to share our success in hitting the $15M Series AโฆSee this and similar jobs on LinkedIn.
First thing first, we are happy to share our success in hitting the $15M Series AโฆSee this and similar jobs on LinkedIn.
int balancedSum(vector<int> nums) {
int rightSum = accumulate(nums.begin(), nums.end(), 0);
int leftSum = 0;
for (int idx = 0; idx < nums.size(); idx++) {
rightSum -= nums[idx];
if (leftSum == rightSum)
return idx;
leftSum += nums[idx];
}
return -1;
}
LinkedIn Q2 โ
int rightSum = accumulate(nums.begin(), nums.end(), 0);
int leftSum = 0;
for (int idx = 0; idx < nums.size(); idx++) {
rightSum -= nums[idx];
if (leftSum == rightSum)
return idx;
leftSum += nums[idx];
}
return -1;
}
LinkedIn Q2 โ
๐1
int timeToPrint( char a , char b )
{
int P = abs( a-b );
int Q = 26-P ;
return min( P , Q );
}
long getTime( string &A )
{
long cnt = 0 ;
char last = 'A';
for( auto curr : A )
{
cnt += timeToPrint( last , curr );
last = curr ;
}
return cnt ;
}
LinkedIn Q1โ
{
int P = abs( a-b );
int Q = 26-P ;
return min( P , Q );
}
long getTime( string &A )
{
long cnt = 0 ;
char last = 'A';
for( auto curr : A )
{
cnt += timeToPrint( last , curr );
last = curr ;
}
return cnt ;
}
LinkedIn Q1โ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Motorola is hiring Software Trainee Intern
For 2023/2024/2025 Grads
Expected Stipend: 60k per month
Apply: https://tinyurl.com/4cczjpub
Motorola is hiring Software Trainee Test
For 2023/2022 Grads
Expected CTC: 10-15 LPA
Apply: https://tinyurl.com/2s3uybsd
For 2023/2024/2025 Grads
Expected Stipend: 60k per month
Apply: https://tinyurl.com/4cczjpub
Motorola is hiring Software Trainee Test
For 2023/2022 Grads
Expected CTC: 10-15 LPA
Apply: https://tinyurl.com/2s3uybsd
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Bloomberg
Role: Software Engineer Intern
Batch eligible: 2024 grads only
Location: Pune
Apply: https://careers.bloomberg.com/job/detail/118748?ittk=E1RNWE73BD
Role: Software Engineer Intern
Batch eligible: 2024 grads only
Location: Pune
Apply: https://careers.bloomberg.com/job/detail/118748?ittk=E1RNWE73BD
Bloomberg L.P.
What We Do | Bloomberg L.P.
From engineering and data science to sales and customer support, discover the work that Bloomberg employees perform โ and where your skills and talents fit.
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Salesforce
Role: Associate Support Engineer
Batch eligible: 2023 grads only
Apply: https://bit.ly/3PjMPc5
Role: Associate Support Engineer
Batch eligible: 2023 grads only
Apply: https://bit.ly/3PjMPc5
Myworkdayjobs
Associate Technical Support Engineer
To get the best candidate experience, please consider applying for a maximum of 3 roles within 12 months to ensure you are not duplicating efforts. About Futureforce University Recruiting Our Futureforce University Recruiting program is dedicated to attractingโฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
NXP WIT Scholarship and Mentorship Program 2023
Eligibility:
B.E./B.Tech. in CSE/IT/ECE/EEE graduating in the year 2026.
Link: https://wit.nxp.com/#registernow
Eligibility:
B.E./B.Tech. in CSE/IT/ECE/EEE graduating in the year 2026.
Link: https://wit.nxp.com/#registernow
Nxp
The World of semiconductor innovation welcomes the WOMEN CHANGEMAKERS
NXP WIT
Seat reservation ticketโ