Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Amdocs is hiring (Only female candidates)
CTC: 5LPA + 20k (relocation bonus)
Batch eligible: 2022 passouts only
https://jobs.amdocs.com/job/Bhurai-In-Off-Campus-2022_Women-Drive-MH/902362900/
CTC: 5LPA + 20k (relocation bonus)
Batch eligible: 2022 passouts only
https://jobs.amdocs.com/job/Bhurai-In-Off-Campus-2022_Women-Drive-MH/902362900/
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Eagleview hiring
Role: Software Engineer 1 backend
Batch eligible: 2022 passouts
Apply Link: https://recruit.hirebridge.com/v3/careercenter/v2/details.aspx?jid=579190&cid=7600&locvalue=1093
P.S. Apply through referral for increase your chance๐โ
Role: Software Engineer 1 backend
Batch eligible: 2022 passouts
Apply Link: https://recruit.hirebridge.com/v3/careercenter/v2/details.aspx?jid=579190&cid=7600&locvalue=1093
P.S. Apply through referral for increase your chance๐โ
๐1๐ฑ1
๐ Bhavna Crop Off Campus Drive 2022 : Hiring for Freshers as Software Engineers/Developers With 5.5 LPA
* Job Role : Software Engineers/Developers
* Qualification : B.E/B.Tech/MCA
* Experience : Freshers
* Salary : Rs 5.5 LPA
https://www.firstnaukri.com/careers/customised/landingpage/bhavna-corp/index.html
* Job Role : Software Engineers/Developers
* Qualification : B.E/B.Tech/MCA
* Experience : Freshers
* Salary : Rs 5.5 LPA
https://www.firstnaukri.com/careers/customised/landingpage/bhavna-corp/index.html
๐ PhonePe-Off-Campus-Drive-For-Freshers With 5 LPA+
* Job Role : Multiple Openings
* Qualification : B.E/B.Tech
* Batch : 2022 and below graduates
* Job Location : Bangalore
* Package : 5 LPA+
https://assessment.hackerearth.com/challenges/hiring/phonepe-hiring-challenge/
* Job Role : Multiple Openings
* Qualification : B.E/B.Tech
* Batch : 2022 and below graduates
* Job Location : Bangalore
* Package : 5 LPA+
https://assessment.hackerearth.com/challenges/hiring/phonepe-hiring-challenge/
HackerEarth
PhonePe SDET Hiring Challenge
Objective: To build a strong team of SDET(Automation).
This challenge will test individuals on Problem Solving related to Algorithms and Data Structures. One coding question will be of Easy complexity. The Medium question will include bonus weightage.โฆ
This challenge will test individuals on Problem Solving related to Algorithms and Data Structures. One coding question will be of Easy complexity. The Medium question will include bonus weightage.โฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Evalground is hiring
Batch eligible: 2022, 2023 and 2024 passouts
Stipend: 15K to 18K per month.
P.S. Highly recommend for 2023 and 2024 batch for intern ๐โ
Test Link: https://evalground.com/code4/#/publicview/test/candidate/token/anyamtwc
Apply Link: https://www.linkedin.com/jobs/view/3141037144
Batch eligible: 2022, 2023 and 2024 passouts
Stipend: 15K to 18K per month.
P.S. Highly recommend for 2023 and 2024 batch for intern ๐โ
Test Link: https://evalground.com/code4/#/publicview/test/candidate/token/anyamtwc
Apply Link: https://www.linkedin.com/jobs/view/3141037144
Linkedin
EvalGround hiring Software Engineer Intern in India | LinkedIn
Posted 7:28:02 AM. Greetings from Evalground Software Private Limited Bangalore. A brief about the role:1. We areโฆSee this and similar jobs on LinkedIn.
๐1
โ
โ
โ
The Final Element - HackerEarth - Solution - PhonePe SET
https://assessment.hackerearth.com/challenges/hiring/phonepe-hiring-challenge/
https://assessment.hackerearth.com/challenges/hiring/phonepe-hiring-challenge/
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
D Cube Analytics is hiring for 2022 grad.
https://docs.google.com/forms/d/e/1FAIpQLSdd3Z_LsxAQpDx6lhgcVPtimqiZicNXr84tWgVLkm-lKWx6uQ/viewform
https://docs.google.com/forms/d/e/1FAIpQLSdd3Z_LsxAQpDx6lhgcVPtimqiZicNXr84tWgVLkm-lKWx6uQ/viewform
long long solve(int N, vector<int> A)
{
vector<long long> vec1, vec2(N);
int max_so_far = 0, max_ending_here = 0;
vec1.push_back(0);
vec2.push_back(0);
for (int i = 0; i < A.size(); i++)
{
max_so_far += A[i];
if (max_so_far > max_ending_here)
max_ending_here = max_so_far;
if (max_so_far < 0)
max_so_far = 0;
vec1.push_back(max_ending_here);
}
max_so_far = 0;
max_ending_here = 0;
for (int i = A.size() - 1; i >= 0; i--)
{
max_so_far += A[i];
if (max_so_far > max_ending_here)
{
max_ending_here = max_so_far;
}
if (max_so_far < 0)
max_so_far = 0;
vec2[i] = max_ending_here;
}
long long ans = 0;
for (int i = 0; i <= N; i++)
{
ans = max(ans, vec1[i] + vec2[i]);
}
return ans;
}
Source - unknown
Phonepe: Two Subarray (C++)โ
{
vector<long long> vec1, vec2(N);
int max_so_far = 0, max_ending_here = 0;
vec1.push_back(0);
vec2.push_back(0);
for (int i = 0; i < A.size(); i++)
{
max_so_far += A[i];
if (max_so_far > max_ending_here)
max_ending_here = max_so_far;
if (max_so_far < 0)
max_so_far = 0;
vec1.push_back(max_ending_here);
}
max_so_far = 0;
max_ending_here = 0;
for (int i = A.size() - 1; i >= 0; i--)
{
max_so_far += A[i];
if (max_so_far > max_ending_here)
{
max_ending_here = max_so_far;
}
if (max_so_far < 0)
max_so_far = 0;
vec2[i] = max_ending_here;
}
long long ans = 0;
for (int i = 0; i <= N; i++)
{
ans = max(ans, vec1[i] + vec2[i]);
}
return ans;
}
Source - unknown
Phonepe: Two Subarray (C++)โ
๐2
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Lowe's India hackathon + chance of interview
Eligible batch: Only 2023 passouts
Selection process:
1) MCQ Challenge
2) Coding Challenge
3) Profile Verification
4) Interview round
Link: https://unstop.com/o/wF3IP1g?lb=Mgx4BsU
Eligible batch: Only 2023 passouts
Selection process:
1) MCQ Challenge
2) Coding Challenge
3) Profile Verification
4) Interview round
Link: https://unstop.com/o/wF3IP1g?lb=Mgx4BsU
Unstop
House of Code (Campus Edition) by Lowe's Companies, Inc.! | 2022 // Unstop (formerly Dare2Compete)
House of Code (Campus Edition) a hackathons by Lowe's Companies, Inc. open to Engineering Students, Undergraduate Apply online before 2022-07-16 11:00:00! | 2022
//Given Array A having N integers and divisor K
int morethanNbyK(vector<int> arr, int n, int k)
{
int x = n / k;
int ans = 0;
unordered_map<int, int> freq;
for (auto i : arr)
freq[i]++;
for (auto i : freq)
{
if (i.second > x)
{
ans += i.first;
}
}
return ans;
}
Infosys โ
int morethanNbyK(vector<int> arr, int n, int k)
{
int x = n / k;
int ans = 0;
unordered_map<int, int> freq;
for (auto i : arr)
freq[i]++;
for (auto i : freq)
{
if (i.second > x)
{
ans += i.first;
}
}
return ans;
}
Infosys โ
๐3
โ๏ธAmdocs Hiring 2022 Batchโ๏ธ
jobs.amdocs.com/job/Bhurai-In-Off-campus-2022-Associate-Engineer-MH/902362700
jobs.amdocs.com/job/Bhurai-In-Off-campus-2022-Associate-Engineer-MH/902362700
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Lexmark Summer Internship
Batch eligible: 2023 and 2024 passouts
12 Weeks Internship starting from August 2022
Apply Link: https://bit.ly/3ybrXeu
Batch eligible: 2023 and 2024 passouts
12 Weeks Internship starting from August 2022
Apply Link: https://bit.ly/3ybrXeu
Office
Microsoft Forms
Tcs Nqt Answers
Numerical ability
1 12/175
2- 37.8 kg
3-117
4-7 marks
5-8.05%
6- 198756 kg
7- 16 times
8- 786.2
9- 1100
10-22.67
11- 771.3
12-14
13-54/9 days
14-80 km
15-45โ2cm
16-40.456
17- 2016-17,12.24
18-2โ3
19-3.7
20-10
Verbals
1-Q
2- and electrical shocks
3- first bigger break
4-frightening
5- run the spaces
6. their fingertips...
7. cut corners; take matters into...
8. Create spaces, walk out through
10. CEBAD
11- PR
22- Avenue
Advanced quantitative
1-225%
2-512.8
4-56
5-8
8- 3257000
Advanced Reasoning
1-240
5- mother in law
7- 27 may Thursday cooking
9- only conclusion 2 3 and 4 follows
10-Both A and R are true and R is the correct explanation of A
Numerical ability
1 12/175
2- 37.8 kg
3-117
4-7 marks
5-8.05%
6- 198756 kg
7- 16 times
8- 786.2
9- 1100
10-22.67
11- 771.3
12-14
13-54/9 days
14-80 km
15-45โ2cm
16-40.456
17- 2016-17,12.24
18-2โ3
19-3.7
20-10
Verbals
1-Q
2- and electrical shocks
3- first bigger break
4-frightening
5- run the spaces
6. their fingertips...
7. cut corners; take matters into...
8. Create spaces, walk out through
10. CEBAD
11- PR
22- Avenue
Advanced quantitative
1-225%
2-512.8
4-56
5-8
8- 3257000
Advanced Reasoning
1-240
5- mother in law
7- 27 may Thursday cooking
9- only conclusion 2 3 and 4 follows
10-Both A and R are true and R is the correct explanation of A
๐1
Accountant code (question number 2) python 3โ