Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
For mechanical and related branch๐
Which of the following does not compile?
Anonymous Quiz
4%
int num = 999;
16%
int num = 9_9_9;
54%
int num = _9_99;
26%
None of the above they all compile
Which of this interface must contain a unique element?
Anonymous Quiz
11%
List
18%
Collection
12%
Array
59%
Set
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
โผ๏ธ Not for Fresher's โผ๏ธ
CRED is hiring for Backend developer
Batch eligible: 2021 or before that (1 Year of experience will require)
Link: https://docs.google.com/forms/d/e/1FAIpQLSfw6Bwg1Ny7tuzqMNpC6yAR3h_2DZSJCZaUBxVOC7RHi7b4Dg/viewform
P.S. If you guys have 1 year of experience, don't miss this opportunity.
CRED is hiring for Backend developer
Batch eligible: 2021 or before that (1 Year of experience will require)
Link: https://docs.google.com/forms/d/e/1FAIpQLSfw6Bwg1Ny7tuzqMNpC6yAR3h_2DZSJCZaUBxVOC7RHi7b4Dg/viewform
P.S. If you guys have 1 year of experience, don't miss this opportunity.
๐1
โ๏ธWipro Off Campus Driveโ๏ธ
๐ 2022 Batch |๐ฐ11LPA
๐ Wipro STAR - app.joinsuperset.com/company/wipro/star.html
๐ 2021/22 Batch |๐ฐ2.5LPA
๐ Wipro WILP - app.joinsuperset.com/join/#/signup/student/jobprofiles/68d4b659-6013-4380-8e70-91aafc4bee9b
๐ 2022 Batch |๐ฐ11LPA
๐ Wipro STAR - app.joinsuperset.com/company/wipro/star.html
๐ 2021/22 Batch |๐ฐ2.5LPA
๐ Wipro WILP - app.joinsuperset.com/join/#/signup/student/jobprofiles/68d4b659-6013-4380-8e70-91aafc4bee9b
Superset
Superset - The Official University Recruitment Platform
Superset is a platform that enables colleges to automate campus placements end-to-end, helps employers hire young talent from across colleges in the country, and empowers students to access opportunities democratically.
๐2
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ pinned ยซhttps://leetcode.com/problems/largest-local-values-in-a-matrix/description/ยป
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Google
Role: Software Engineer Intern
Batch eligible: Only 2023 passouts
Link: https://bit.ly/3dxVqst
๐.๐. ๐๐จ ๐ฐ๐ข๐ญ๐ก ๐ซ๐๐๐๐ซ๐ซ๐๐ฅ, ๐ข๐ ๐ฉ๐จ๐ฌ๐ฌ๐ข๐๐ฅ๐
Role: Software Engineer Intern
Batch eligible: Only 2023 passouts
Link: https://bit.ly/3dxVqst
๐.๐. ๐๐จ ๐ฐ๐ข๐ญ๐ก ๐ซ๐๐๐๐ซ๐ซ๐๐ฅ, ๐ข๐ ๐ฉ๐จ๐ฌ๐ฌ๐ข๐๐ฅ๐
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
If interested, have a look.
๐คฎ2
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Happy independence day guys๐ฎ๐ณ
โค4
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
โผ๏ธ I know SOTI hiring aaya hai, but link dekh kr mujhe lga ki oncampus hai...so I contacted recruiter pr unne koi reply nhi kra, that's why I not shared till now....
Phir bhi bahut koi puche toh I am sharing (Abhi bhi hm sure nhi hai oncampus hai ya offcampus)
SOTI hiring for 2023 grad.
https://soti.wd3.myworkdayjobs.com/SOTI_Campus_Recruitment_India/job/Kochi-India/Campus-Recruitment--SOTI-India-_R05620
Phir bhi bahut koi puche toh I am sharing (Abhi bhi hm sure nhi hai oncampus hai ya offcampus)
SOTI hiring for 2023 grad.
https://soti.wd3.myworkdayjobs.com/SOTI_Campus_Recruitment_India/job/Kochi-India/Campus-Recruitment--SOTI-India-_R05620
๐1
int getMaximumLength(string lotterryID, string winnerID, int k)
{
int ans = 0;
int i = 0;
while (i < min(lotterryID.size(), winnerID.size()))
{
if (lotterryID[i] == winnerID[i])
{
ans++;
i++;
}
else if (((lotterryID[i] - 96) % 26) + 1 == winnerID[i] - 96)
{
ans++;
i++;
}
else if (((lotterryID[i] - 96) % 26) - 1 == winnerID[i] - 96)
{
ans++;
i++;
}
else
{
i++;
}
}
return ans;
}
Lottery Winner โ (C++)
{
int ans = 0;
int i = 0;
while (i < min(lotterryID.size(), winnerID.size()))
{
if (lotterryID[i] == winnerID[i])
{
ans++;
i++;
}
else if (((lotterryID[i] - 96) % 26) + 1 == winnerID[i] - 96)
{
ans++;
i++;
}
else if (((lotterryID[i] - 96) % 26) - 1 == winnerID[i] - 96)
{
ans++;
i++;
}
else
{
i++;
}
}
return ans;
}
Lottery Winner โ (C++)
โค1
def longestCommonSubsequence(self, text1: str, text2: str)
#Tabulation Approach
if len(text1)==0 or len(text2)==0:
return 0
rows,columns=(len(text2)+1,len(text1)+1)
dp = [[0 for j in range(columns)] for i in range(rows)]
for col in range(1,columns):
for row in range(1,rows):
if text1[col-1]==text2[row-1]:
dp[row][col]=1+dp[row-1][col-1]
else:
dp[row][col]=max(dp[row-1][col],dp[row][col-1])
return dp[rows-1][columns-1]
Lottery Winner โ (Python 3)
#Tabulation Approach
if len(text1)==0 or len(text2)==0:
return 0
rows,columns=(len(text2)+1,len(text1)+1)
dp = [[0 for j in range(columns)] for i in range(rows)]
for col in range(1,columns):
for row in range(1,rows):
if text1[col-1]==text2[row-1]:
dp[row][col]=1+dp[row-1][col-1]
else:
dp[row][col]=max(dp[row-1][col],dp[row][col-1])
return dp[rows-1][columns-1]
Lottery Winner โ (Python 3)
โค1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Propel is hiring
Role: Trainee-QA
Batch eligible: 2023 passouts only
CTC, not sure but it will be less than 5 LPA.
Link: https://talent.propelinc.com/jobs/Careers/26698000043917373/Fresher-2023-QA?source=CareerSite
P.S. I am jst sharing coz I have to share all opportunities, but acc to me ignore this because role is QA and bond is also there
Role: Trainee-QA
Batch eligible: 2023 passouts only
CTC, not sure but it will be less than 5 LPA.
Link: https://talent.propelinc.com/jobs/Careers/26698000043917373/Fresher-2023-QA?source=CareerSite
P.S. I am jst sharing coz I have to share all opportunities, but acc to me ignore this because role is QA and bond is also there