Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
https://jobs.smartrecruiters.com/Eurofins/744000011450595-associate-software-engineer-sharepoint
Eurofins Hiring ASE - Sharepoint
B.E./ B. Tech (CS, IS, EC, EEE) / MCA/ MS /BSc (CS, IT)
0-12 months of IT Industry experience
60% aggregate in highest qualification (no backlogs)
Eurofins Hiring ASE - Sharepoint
B.E./ B. Tech (CS, IS, EC, EEE) / MCA/ MS /BSc (CS, IT)
0-12 months of IT Industry experience
60% aggregate in highest qualification (no backlogs)
Eurofins
Eurofins is looking for a Associate Software Engineer-Sharepoint in Bengaluru, Karnataka, India
POSITION TITLE: Associate Software Engineer:REPORTING TO: โCollaborative Platforms and IT Toolsโ Manager WORKING LOCATION: Bangalore, IndiaOBJECTIVE: Eurofins Collaborative Platforms and IT T...
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
https://www.amazon.jobs/jobs/2776777/it-support-associate-?cmpid=SPLICX0248M&utm_source=linkedin.com&utm_campaign=cxro&utm_medium=social_media&utm_content=job_posting&ss=paid
Amazon Hiring IT Support Associate
โข Bachelorโs degree/Diploma
โข 0 months to 18 months of work experience.
โข Good communication skills
PREFERRED QUALIFICATIONS
โข Basic Understanding of ITIL-Based Ticketing Tools and Monitoring Tools
โข Basic Understanding and troubleshooting skills on Network
Amazon Hiring IT Support Associate
โข Bachelorโs degree/Diploma
โข 0 months to 18 months of work experience.
โข Good communication skills
PREFERRED QUALIFICATIONS
โข Basic Understanding of ITIL-Based Ticketing Tools and Monitoring Tools
โข Basic Understanding and troubleshooting skills on Network
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name : NXP Semiconductors
Batch : 2027 passout females
Role : Mentorship Program + Internship at NXP
Link to register : https://wit.nxp.com/
Last Date : September 20,2024
Batch : 2027 passout females
Role : Mentorship Program + Internship at NXP
Link to register : https://wit.nxp.com/
Last Date : September 20,2024
Nxp
The World of semiconductor innovation welcomes the WOMEN CHANGEMAKERS
NXP WIT
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
https://www.linkedin.com/jobs/view/4025861173
Voya India Hiring Trainee
1. Responsible to process participants/Plan level transactions
2. Will have to work closely with supervisors to ensure all transactions are processed accurately
3. Strict adherence non-disclosure of client information by preserving client confidentiality
4. Completing assigned responsibilities within the defined SLAs
Skills & Required profile
1. Should be a Graduate and not an Engineering/MCA graduate
2. Should have good communication and analytical skills
3. Should be a self-starter, proactive and target oriented
4. Good knowledge of MS Office applications
5. Should be flexible to work in night shifts and must extend when business required Employment type: Full time
Voya India Hiring Trainee
1. Responsible to process participants/Plan level transactions
2. Will have to work closely with supervisors to ensure all transactions are processed accurately
3. Strict adherence non-disclosure of client information by preserving client confidentiality
4. Completing assigned responsibilities within the defined SLAs
Skills & Required profile
1. Should be a Graduate and not an Engineering/MCA graduate
2. Should have good communication and analytical skills
3. Should be a self-starter, proactive and target oriented
4. Good knowledge of MS Office applications
5. Should be flexible to work in night shifts and must extend when business required Employment type: Full time
Linkedin
Voya India hiring Trainee in Pune, Maharashtra, India | LinkedIn
Posted 6:16:21 AM. Job Description โ Trainee Associate About Voya India Voya India, formerly known as VFI SLK, is aโฆSee this and similar jobs on LinkedIn.
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
https://wellfound.com/l/2ABQBX
Datazip Hiring Full Stack Developer Intern
Datazip Hiring Full Stack Developer Intern
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
https://antino.freshteam.com/jobs/AsddmUszHk7Q/java-developer-intern
Antino Hiring Java Developer Intern
Antino Hiring Java Developer Intern
Freshteam
Hiring for Java Developer Intern for Gurugram - Internship
Posted by : Antino Labs | JAVA 8,SPRING BOOT,HIBERNATE,SQL,NO SQL
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Technoarch Softwares is hiring for React JS Developer
Experience: 0 - 2 years
Expected Stipend: 5-10 LPA
Apply here: https://www.technoarchsoftwares.com/career/react-developer/
Experience: 0 - 2 years
Expected Stipend: 5-10 LPA
Apply here: https://www.technoarchsoftwares.com/career/react-developer/
Technoarch Softwares
Job for React Developer in Noida | Technoarch Softwares
Job Openings for React at Technoarch Softwares - primary focus will be on developing user interface components by following well-known React JS workflows.
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
Photo
vector<string> solve(vector<vector<string>> p, vector<string> a, int w) {
vector<string> r;
r.push_back(string(w + 2, '*'));
for(int i = 0; i < p.size(); i++) {
string l = "";
for(string wd : p[i]) {
if(l.size() + wd.size() + (l.empty() ? 0 : 1) > w) {
if(a[i] == "LEFT") {
l += string(w - l.size(), ' ');
} else if(a[i] == "RIGHT") {
l = string(w - l.size(), ' ') + l;
}
r.push_back("*" + l + "*");
l = "";
}
if(!l.empty()) {
l += " ";
}
l += wd;
}
if(!l.empty()) {
if(a[i] == "LEFT") {
l += string(w - l.size(), ' ');
} else if(a[i] == "RIGHT") {
l = string(w - l.size(), ' ') + l;
}
r.push_back("*" + l + "*");
}
}
r.push_back(string(w + 2, '*'));
return r;
}
Visa โ
vector<string> r;
r.push_back(string(w + 2, '*'));
for(int i = 0; i < p.size(); i++) {
string l = "";
for(string wd : p[i]) {
if(l.size() + wd.size() + (l.empty() ? 0 : 1) > w) {
if(a[i] == "LEFT") {
l += string(w - l.size(), ' ');
} else if(a[i] == "RIGHT") {
l = string(w - l.size(), ' ') + l;
}
r.push_back("*" + l + "*");
l = "";
}
if(!l.empty()) {
l += " ";
}
l += wd;
}
if(!l.empty()) {
if(a[i] == "LEFT") {
l += string(w - l.size(), ' ');
} else if(a[i] == "RIGHT") {
l = string(w - l.size(), ' ') + l;
}
r.push_back("*" + l + "*");
}
}
r.push_back(string(w + 2, '*'));
return r;
}
Visa โ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Zebra Technologies is hiring for Software Engineer, I
Experience: 0 - 2 years
Expected Stipend: 8-14 LPA
Apply here: https://zebra.eightfold.ai/careers?src=srm_linkedin_jb&domain=zebra.com&pid=343622504714
Experience: 0 - 2 years
Expected Stipend: 8-14 LPA
Apply here: https://zebra.eightfold.ai/careers?src=srm_linkedin_jb&domain=zebra.com&pid=343622504714
zebra.eightfold.ai
Careers at Zebra
Anthology is hiring for Associate Software Developer
Experience: 0 - 2 years
Expected Salary: 5-12 LPA
Apply here: https://jobs.jobvite.com/anthology/job/ovv9ufwn?jvst=Job%20Board&jvsd=LinkedIn&source=LinkedIn-JS
Experience: 0 - 2 years
Expected Salary: 5-12 LPA
Apply here: https://jobs.jobvite.com/anthology/job/ovv9ufwn?jvst=Job%20Board&jvsd=LinkedIn&source=LinkedIn-JS
SELECT DISTINCT
p.FIRST_NAME,
p.CONTACT
FROM
passenger p
JOIN
boardingpass bp ON p.PASSENGER_ID = bp.PASSENGER_ID
JOIN
flight f ON bp.FLIGHT_ID = f.FLIGHT_ID
WHERE
f.FLIGHT_FROM = 'Hong Kong'
AND bp.FLIGHT_ID = 4
AND bp.MEAL = 'Vegetarian';
Cognizant โ
import java.util.*;
public class MagicalLibrary {
public static int countMagicalRows(int[][] matrix) {
int magicalRowCount = 0;
for (int[] row : matrix) {
int oddSum = 0;
boolean hasOdd = false;
for (int value : row) {
if (value % 2 != 0) {
oddSum += value;
hasOdd = true;
}
}
if (hasOdd && oddSum % 2 == 0) {
magicalRowCount++;
}
}
return magicalRowCount;
}
magical libraryโ
Cognizant
public class HouseVisitCounter {
public static int countHouses(int N, int[] A) {
int houseCount = 1;
int i = 1;
while (i <= N) {
int jump = A[i - 1];
i = i + jump;
if (i <= N) {
houseCount++;
} else {
break;
}
}
return houseCount;
}
House visitโ
Cognizant
๐ฅ1
import java.util.Arrays;
import java.util.Collections;
public class MinimumSum {
public static int findMinimumSum(int N, int[] A, int[] B) {
Arrays.sort(A);
Integer[] B_desc = new Integer[N];
for (int i = 0; i < N; i++) {
B_desc[i] = B[i];
}
Arrays.sort(B_desc, Collections.reverseOrder());
int minSum = 0;
for (int i = 0; i < N; i++) {
minSum += A[i] * B_desc[i];
}
return minSum;
}
Minimum Sum โ