Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Hiringalert !
Job openings for Administration Executive profile,
MBA Fresher with specialisation in Finance and Marketing
Location -Greater Noida (WFO)
Skills- Tally, Advance Excel etc.
Interested candidates can share cv on career@pharmazz.com
Job openings for Administration Executive profile,
MBA Fresher with specialisation in Finance and Marketing
Location -Greater Noida (WFO)
Skills- Tally, Advance Excel etc.
Interested candidates can share cv on career@pharmazz.com
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Rupeek
๐ Job Title: Intern
โ๐ป YOE: 2023 and 2024 grads
โก๏ธ Apply: https://docs.google.com/forms/d/e/1FAIpQLSceMkw-xt08jB5wGYPXhgJ1lGhBwn57E9NfYN6aOVy-bDKKpg/viewform
Please do share in your college grps and in case you are applying please react on this post:) ๐โค๏ธ
๐ Job Title: Intern
โ๐ป YOE: 2023 and 2024 grads
โก๏ธ Apply: https://docs.google.com/forms/d/e/1FAIpQLSceMkw-xt08jB5wGYPXhgJ1lGhBwn57E9NfYN6aOVy-bDKKpg/viewform
Please do share in your college grps and in case you are applying please react on this post:) ๐โค๏ธ
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: ServiceNow
๐ Job Title: Software Engineer (UI)
โ๐ป YOE: 2022 and 2023 grads
โก๏ธ Apply: https://careers.servicenow.com/jobs/743999986041623/software-engineer-ui-developer/
Please do share in your college grps and in case you are applying please react on this post:) ๐โค๏ธ
๐ Job Title: Software Engineer (UI)
โ๐ป YOE: 2022 and 2023 grads
โก๏ธ Apply: https://careers.servicenow.com/jobs/743999986041623/software-engineer-ui-developer/
Please do share in your college grps and in case you are applying please react on this post:) ๐โค๏ธ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Genpact is seeking MBA freshers for the role of Recruitment Consultant in Noida.
This is a wonderful opportunity for those who want to start their career in the field of recruitment.
The role requires working from the office for 5 days a week.
If you're interested, kindly send your updated resume to faaiza.fatima@genpact.com or drop a comment/message.
We look forward to hearing from you!
This is a wonderful opportunity for those who want to start their career in the field of recruitment.
The role requires working from the office for 5 days a week.
If you're interested, kindly send your updated resume to faaiza.fatima@genpact.com or drop a comment/message.
We look forward to hearing from you!
๐1
List<Character> duplicates = new ArrayList<>();
for (int i = 0; i < inputchar.size(); i++) {
for (int j = i + 1; j < inputchar.size(); j++) {
if (inputchar.get(i).equals(inputchar.get(j)) && !duplicates.contains(inputchar.get(i))) {
duplicates.add(inputchar.get(i));
break;
}
}
}
return duplicates;
}
Program to find duplicate in element Array โ
IBM
for (int i = 0; i < inputchar.size(); i++) {
for (int j = i + 1; j < inputchar.size(); j++) {
if (inputchar.get(i).equals(inputchar.get(j)) && !duplicates.contains(inputchar.get(i))) {
duplicates.add(inputchar.get(i));
break;
}
}
}
return duplicates;
}
Program to find duplicate in element Array โ
IBM
int sumA = 0;
int sumB = 0;
for (int i = 0; i < a.length; i++) {
sumA += a[i];
sumB += b[i];
}
int count = 0;
int tempA = a[0];
int tempB = b[0];
for (int i = 1; i < a.length; i++) {
if (i != 1 && tempA == tempB && 2 * tempA == sumA && 2 * tempB == sumB) {
count++;
}
tempA += a[i];
tempB += b[i];
}
return count;
Bentley โ
int sumB = 0;
for (int i = 0; i < a.length; i++) {
sumA += a[i];
sumB += b[i];
}
int count = 0;
int tempA = a[0];
int tempB = b[0];
for (int i = 1; i < a.length; i++) {
if (i != 1 && tempA == tempB && 2 * tempA == sumA && 2 * tempB == sumB) {
count++;
}
tempA += a[i];
tempB += b[i];
}
return count;
Bentley โ
#include <iostream>
#include <vector>
using namespace std;
void dfs(vector<vector<char>>& plan, int row, int col) {
int R = plan.size();
int C = plan[0].size();
if (row < 0row >= R col < 0 col >= C plan[row][col] != '*') {
return;
}
plan[row][col] = '.';
dfs(plan, row + 1, col);
dfs(plan, row - 1, col);
dfs(plan, row, col + 1);
dfs(plan, row, col - 1);
}
int solution(vector<vector<char>>& plan) {
int R = plan.size();
int C = plan[0].size();
int runs = 0;
for (int i = 0; i < R; ++i) {
for (int j = 0; j < C; ++j) {
if (plan[i][j] == '*') {
dfs(plan, i, j);
++runs;
}
}
}
return runs;
}
Bentley โ
#include <vector>
using namespace std;
void dfs(vector<vector<char>>& plan, int row, int col) {
int R = plan.size();
int C = plan[0].size();
if (row < 0
return;
}
plan[row][col] = '.';
dfs(plan, row + 1, col);
dfs(plan, row - 1, col);
dfs(plan, row, col + 1);
dfs(plan, row, col - 1);
}
int solution(vector<vector<char>>& plan) {
int R = plan.size();
int C = plan[0].size();
int runs = 0;
for (int i = 0; i < R; ++i) {
for (int j = 0; j < C; ++j) {
if (plan[i][j] == '*') {
dfs(plan, i, j);
++runs;
}
}
}
return runs;
}
Bentley โ
#include <iostream>
#include <vector>
#include <string>
#include <sstream>
using namespace std;
vector<int> convertArraytoVector(size_t sz, int *arr) {
int N = sz;
vector<int> v;
for (int i = 0; i < N; i++)
v.push_back(arr[i]);
return v;
}
int maxProfit(vector<int>& prices) {
long long int res = 0;
prices.insert(prices.begin(), 0);
for(int i = 1; i < prices.size(); i++) {
res += max(prices[i] - prices[i - 1], 0);
}
res = res % 1000000000;
return res;
}
Bentley โ
#include <vector>
#include <string>
#include <sstream>
using namespace std;
vector<int> convertArraytoVector(size_t sz, int *arr) {
int N = sz;
vector<int> v;
for (int i = 0; i < N; i++)
v.push_back(arr[i]);
return v;
}
int maxProfit(vector<int>& prices) {
long long int res = 0;
prices.insert(prices.begin(), 0);
for(int i = 1; i < prices.size(); i++) {
res += max(prices[i] - prices[i - 1], 0);
}
res = res % 1000000000;
return res;
}
Bentley โ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Fresher's Hiring at Unijob Solution for Reputed Client at Pune
Exp. Level: 0 to 2 year
Qualification: BE - IT/Comp, B.tech, MCA, MSC, BSC, BCA - 2020 to 2023 passout.
Location: Hadapsar, Pune
Package: 3.5 to 4.5 LPA
Skills:
1. html, css, javascript,react
2. Node
3. Java
Excellent communication skills required.
Interested candidates can share cv at saurabh@unijobsolution.com
Exp. Level: 0 to 2 year
Qualification: BE - IT/Comp, B.tech, MCA, MSC, BSC, BCA - 2020 to 2023 passout.
Location: Hadapsar, Pune
Package: 3.5 to 4.5 LPA
Skills:
1. html, css, javascript,react
2. Node
3. Java
Excellent communication skills required.
Interested candidates can share cv at saurabh@unijobsolution.com
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Graduate Engineer Trainee to join the Liugong India for PAN India. He must be a Graduate from Mechanical- Passout. Freshers can apply.
A previous internship or project related to
Mechanical will be preferred. Must be willing to relocate anywhere in India
Interested candidate can share their CV at malvika.jain@liugong.com
A previous internship or project related to
Mechanical will be preferred. Must be willing to relocate anywhere in India
Interested candidate can share their CV at malvika.jain@liugong.com
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐ Exciting Internship Opportunity at EY! ๐
Are you a motivated student looking to gain valuable experience in recruitment? Join EY as a pro-bono Intern and be part of our dynamic recruitment team!
Criteria:
- Must be from a reputed college
- Achieved 75% and above in 10th, 12th, and UG/PG (aggregate excluding last semester)
- No backlogs
- Willing to work from EY Noida office
- Available to start immediately
Please note that this is a pro-bono internship and does not guarantee any work opportunity. It's a chance to gain hands-on experience in recruitment at one of the world's leading firms.
If you meet the criteria and are ready to kickstart your career journey with EY, share your resume at payal.nagpal@in.ey.com. Don't miss out on this fantastic opportunity to learn and grow with us!
Are you a motivated student looking to gain valuable experience in recruitment? Join EY as a pro-bono Intern and be part of our dynamic recruitment team!
Criteria:
- Must be from a reputed college
- Achieved 75% and above in 10th, 12th, and UG/PG (aggregate excluding last semester)
- No backlogs
- Willing to work from EY Noida office
- Available to start immediately
Please note that this is a pro-bono internship and does not guarantee any work opportunity. It's a chance to gain hands-on experience in recruitment at one of the world's leading firms.
If you meet the criteria and are ready to kickstart your career journey with EY, share your resume at payal.nagpal@in.ey.com. Don't miss out on this fantastic opportunity to learn and grow with us!
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐ Exciting Opportunity at Xceedance! ๐
Are you a fresh postgraduate looking to kickstart your career in underwriting? Xceedance is hiring Underwriting Analysts in Gurgaon/Noida!
Required Skill Sets:
- Fresh postgraduates are welcome to apply
- Postgraduates in Economics, Mathematics, and Statistics domain are preferred
If you're ready to embark on a rewarding journey in underwriting and have the required skills, don't miss out on this opportunity!
Feel free to connect or WhatsApp your resume to 7289907457 / 7678424115.
Join us at Xceedance and take the first step towards a successful career in underwriting
Are you a fresh postgraduate looking to kickstart your career in underwriting? Xceedance is hiring Underwriting Analysts in Gurgaon/Noida!
Required Skill Sets:
- Fresh postgraduates are welcome to apply
- Postgraduates in Economics, Mathematics, and Statistics domain are preferred
If you're ready to embark on a rewarding journey in underwriting and have the required skills, don't miss out on this opportunity!
Feel free to connect or WhatsApp your resume to 7289907457 / 7678424115.
Join us at Xceedance and take the first step towards a successful career in underwriting
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Anakin is hiring SDE [Full Time]
For 2024, 2023, 2022 grads
Startup opportunity
https://www.ycombinator.com/companies/anakin/jobs/Xd7qkhq-software-development-engineer
For 2024, 2023, 2022 grads
Startup opportunity
https://www.ycombinator.com/companies/anakin/jobs/Xd7qkhq-software-development-engineer
Y Combinator
Software Development Engineer at Anakin
**About us:**
At Anakin, weโre revolutionizing Pricing intelligence by enabling large global e-commerce companies to optimize their pricing strategies and stay one step ahead of their Competitors.
Our technology engine can automatically find, analyzeโฆ
At Anakin, weโre revolutionizing Pricing intelligence by enabling large global e-commerce companies to optimize their pricing strategies and stay one step ahead of their Competitors.
Our technology engine can automatically find, analyzeโฆ