Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
European Summer of Code
Stipend: Upto 4800 Euros
Apply in the open projects if relevant else wait for upcoming project releases.
https://www.esoc.dev/
Stipend: Upto 4800 Euros
Apply in the open projects if relevant else wait for upcoming project releases.
https://www.esoc.dev/
www.esoc.dev
European Summer of Code
European Summer of Code (ESoC) funds stipends for contributors new to open source, and matches open source projects and applied AI projects throughout Europe.
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Upgrad
Role : Software Engineer - React/ Java Spring Boot
Batch : 2024/2023 passouts
Link : https://www.linkedin.com/jobs/collections/recommended/?currentJobId=4235093685
Role : Software Engineer - React/ Java Spring Boot
Batch : 2024/2023 passouts
Link : https://www.linkedin.com/jobs/collections/recommended/?currentJobId=4235093685
LinkedIn
LinkedIn Login, Sign in | LinkedIn
Login to LinkedIn to keep in touch with people you know, share ideas, and build your career.
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Docusign
Role : Software Engineer
Batch: 2024/2023 passouts
Link : https://careers.docusign.com/jobs/26950
Role : Software Engineer
Batch: 2024/2023 passouts
Link : https://careers.docusign.com/jobs/26950
Software Engineer in Bengaluru, India | Docusign
Docusign is hiring a Software Engineer in Bengaluru, India. Review all of the job details and apply today!
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Techolution hiring python intern
Location : Hyderabad
Interested send ur resume
fatima.shaikh@techolution.com
Location : Hyderabad
Interested send ur resume
fatima.shaikh@techolution.com
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: dentsu
Role: Associate Software Engineer
For 2024, 2025 gards
Location: Mumbai
Link : https://dentsuaegis.wd3.myworkdayjobs.com/en-US/DAN_GLOBAL/job/Associate-Software-Engineer_R1089429
Role: Associate Software Engineer
For 2024, 2025 gards
Location: Mumbai
Link : https://dentsuaegis.wd3.myworkdayjobs.com/en-US/DAN_GLOBAL/job/Associate-Software-Engineer_R1089429
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Rippling is hiring Frontend Developer
For 2023, 2024 gards
Location: Bangalore
https://ats.rippling.com/en-GB/rippling/jobs/c49bc085-e1e0-4527-9512-edd552ba18ed?jobSite=LinkedIn
For 2023, 2024 gards
Location: Bangalore
https://ats.rippling.com/en-GB/rippling/jobs/c49bc085-e1e0-4527-9512-edd552ba18ed?jobSite=LinkedIn
Rippling
Frontend Engineer I | Current Openings
About the role Rippling is seeking a talented Software Engineers to join our Tax Payments Team. Be a member of a high-impact engineering te...
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Talentrecruit
Trainee - Data Science
Position/Title: Trainee - Data
Science
Location: Hyderabad
Department: Dev/Engineering
Employment type: Trainee
Experience: Fresher-2 years
Qualification: Graduate in Data Science, Compute...
Science
Location: Hyderabad
Department: Dev/Engineering
Employment type: Trainee
Experience: Fresher-2 years
Qualification: Graduate in Data Science, Compute...
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
F22Labs Global is hiring Software Development Intern job in Chennai | Cutshort
Apply to Software Development Intern internship at F22Labs Global in Chennai from 0 - 1 years of experience.
public int[] mergeArray(int input1, int[] a, int[] b) {
int[] result = new int[input1];
for (int i = 0; i < input1; i++) {
if (a[i] == b[i]) {
result[i] = a[i];
} else {
result[i] = Math.max(a[i], b[i]);
}
}
return result;
}
Cognizant โ
12pm Slot
int[] result = new int[input1];
for (int i = 0; i < input1; i++) {
if (a[i] == b[i]) {
result[i] = a[i];
} else {
result[i] = Math.max(a[i], b[i]);
}
}
return result;
}
Cognizant โ
12pm Slot
public int findascii(int input1, int[] A, String S) {
int count = 0;
for (int i = 0; i < S.length(); i++) {
int asciiValue = (int) S.charAt(i);
String asciiString = Integer.toString(asciiValue);
for (char digit : asciiString.toCharArray()) {
if (containsDigit(A, digit - '0')) {
count++;
break;
}
}
}
return count;
}
private boolean containsDigit(int[] A, int digit) {
for (int num : A) {
if (num == digit) {
return true;
}
}
return false;
}
Cognizant Code 2 โ
12Pm Slot
int count = 0;
for (int i = 0; i < S.length(); i++) {
int asciiValue = (int) S.charAt(i);
String asciiString = Integer.toString(asciiValue);
for (char digit : asciiString.toCharArray()) {
if (containsDigit(A, digit - '0')) {
count++;
break;
}
}
}
return count;
}
private boolean containsDigit(int[] A, int digit) {
for (int num : A) {
if (num == digit) {
return true;
}
}
return false;
}
Cognizant Code 2 โ
12Pm Slot
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
public int findascii(int input1, int[] A, String S) { int count = 0; for (int i = 0; i < S.length(); i++) { int asciiValue = (int) S.charAt(i); String asciiString = Integer.toString(asciiValue); โฆ
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
public int[] mergeArray(int input1, int[] a, int[] b) { int[] result = new int[input1]; for (int i = 0; i < input1; i++) { if (a[i] == b[i]) { result[i] = a[i]; } else { result[i]โฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Amantya Technologies is looking for C Developer with Linux for Gurgaon location.
*Preferring Early joiners for this role. Send profiles with mentioned details directly at pooja.jassy@amantyatech.com
Exp:
Notice:
Current location:
CTC:
*Preferring Early joiners for this role. Send profiles with mentioned details directly at pooja.jassy@amantyatech.com
Exp:
Notice:
Current location:
CTC:
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company : WNS Consulting
Role: Intern Trainee
Batch: 2025/2024
https://www.linkedin.com/jobs/view/4238507193
Role: Intern Trainee
Batch: 2025/2024
https://www.linkedin.com/jobs/view/4238507193
Linkedin
WNS hiring Intern Trainee in Bengaluru, Karnataka, India | LinkedIn
Posted 1:30:50 PM. Company DescriptionWNS (Holdings) Limited (NYSE: WNS), is a leading Business Process Managementโฆ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)
https://www.linkedin.com/posts/sivakumarbabujiofficial_hiring-jobs-career-activity-7333158158082744322-lHN6?utm_source=share&utm_medium=member_android&rcm=ACoAAEH7X9EBzXKJwaT_RRXDC-vTggt13Gr9Ba0
https://hiremee.co.in/company/lg-soft-india-private-limited/jobs-list/c-c-developer-role-71499
https://hiremee.co.in/company/lg-soft-india-private-limited/jobs-list/c-c-developer-role-71499
Linkedin
LG Soft India Hiring Freshers | Sivakumar Babuji
LG Soft India Hiring Freshers
LG Soft India Private Limited
Position Details:
โข Job Role: C/C++ Developer
โข Designation: Software Developer
Eligibility Criteria:
โข Education: BE/BTech
โข Pass out Year: 2023/2024 / 2025
โข Passing Score: 65% and aboveโฆ
LG Soft India Private Limited
Position Details:
โข Job Role: C/C++ Developer
โข Designation: Software Developer
Eligibility Criteria:
โข Education: BE/BTech
โข Pass out Year: 2023/2024 / 2025
โข Passing Score: 65% and aboveโฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Linkedin
#hiring #softwareengineer #2024graduates #fresherjobs #bangalorejobsโฆ | Vivek Kanagaraj
๐ Weโre Hiring โ Software Engineer | 2024 Graduates ๐
๐ Location: Bangalore | Hybrid (3 days/week in office)
Weโre looking for passionate 2024 B.E/B.Tech graduates (CSE or IT) to join our team as Software Engineers.
What youโll do:
โข Write clean, efficientโฆ
๐ Location: Bangalore | Hybrid (3 days/week in office)
Weโre looking for passionate 2024 B.E/B.Tech graduates (CSE or IT) to join our team as Software Engineers.
What youโll do:
โข Write clean, efficientโฆ