โ
Today's TCS 9am Questions Solutions โ
1.1
2. 0.16
4. 450
5. 19
6.6
7.500,20
8.15%
9.2:1
10.28.24% loss
11.650
12.24
13.7/8
14.10
15.8.1
16.13/3
17.181.5
18.3%
1.1
2. 0.16
4. 450
5. 19
6.6
7.500,20
8.15%
9.2:1
10.28.24% loss
11.650
12.24
13.7/8
14.10
15.8.1
16.13/3
17.181.5
18.3%
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Coding Blocks is hiring for Full time instructor.
Role:
1) DSA Mentor
2) Mern Mentor
Batch eligible: 2022 or previous batches
Link: https://docs.google.com/forms/d/e/1FAIpQLSchQAalZCs7bIgTwIBeSGpH-5DvMhkvB7E7qWRkzC5UAoYdTg/viewform
Role:
1) DSA Mentor
2) Mern Mentor
Batch eligible: 2022 or previous batches
Link: https://docs.google.com/forms/d/e/1FAIpQLSchQAalZCs7bIgTwIBeSGpH-5DvMhkvB7E7qWRkzC5UAoYdTg/viewform
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Scaler Offline meet-up for coders.
๐Lots of learning
๐Free Lunch
๐Goodies ๐
https://bit.ly/3pGndcP
๐Lots of learning
๐Free Lunch
๐Goodies ๐
https://bit.ly/3pGndcP
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Capgemini 2022 2021 2020
Fill this form guys as soon as possible
Who are not placed still now
https://app.joinsuperset.com/join/#/signup/student/jobprofiles/cd01cfd7-4e53-46d0-9916-45f966d249f3
Fill this form guys as soon as possible
Who are not placed still now
https://app.joinsuperset.com/join/#/signup/student/jobprofiles/cd01cfd7-4e53-46d0-9916-45f966d249f3
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Rubrik, Inc.
Role: Software Engineering Winter Intern
Batch eligible: 2023 passouts (5 month intern)
Link:
https://bit.ly/3TgRGM8
Role: Software Engineering Winter Intern
Batch eligible: 2023 passouts (5 month intern)
Link:
https://bit.ly/3TgRGM8
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Tejas Network
Role: Software Engineer
Batch eligible: 2021 and 2022 passouts
Link:
https://www.linkedin.com/jobs/view/3216071864
Role: Software Engineer
Batch eligible: 2021 and 2022 passouts
Link:
https://www.linkedin.com/jobs/view/3216071864
Linkedin
Tejas Networks hiring Software Engineers - 2021/22 Graduates only in Bengaluru, Karnataka, India | LinkedIn
Posted 5:32:04 PM. Designation : Engineer, R&DQualification : B Tech or M Tech CSE, IT OR BE ECECGPA : Minimum 8โฆ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)
Gitlab is hiring for Engineering interns
Batch eligible: 2022(prefer) and 2023(can try)
Link: https://boards.greenhouse.io/gitlabcrm/jobs/6060351002?gh_src=ce6f00202us
Batch eligible: 2022(prefer) and 2023(can try)
Link: https://boards.greenhouse.io/gitlabcrm/jobs/6060351002?gh_src=ce6f00202us
boards.greenhouse.io
GitLab Prospects
๐1
โ๏ธCapgemini Off Campus Driveโ๏ธ
๐ Batch - 2022 [BCA or BSc]
๐ฐ CTC - 2.75LPA
app.joinsuperset.com/join/#/signup/student/jobprofiles/cfd4c799-bad3-4bf6-9334-347931c9fe81
๐ Batch - 2022 [BCA or BSc]
๐ฐ CTC - 2.75LPA
app.joinsuperset.com/join/#/signup/student/jobprofiles/cfd4c799-bad3-4bf6-9334-347931c9fe81
๐1
Redhat is hiring
Position: Associate Technical Engineer
๐ Apply: https://global-redhat.icims.com/jobs/96478/trainee---associate-technical-support-engineer/job
๐ All the best.
Position: Associate Technical Engineer
๐ Apply: https://global-redhat.icims.com/jobs/96478/trainee---associate-technical-support-engineer/job
๐ All the best.
Zuno is offering paid internships and full-time positions at big brands
๐ Apply: https://bit.ly/3RfmWJD
๐ All the best
๐ Apply: https://bit.ly/3RfmWJD
๐ All the best
โ๏ธINFOSYS Off Campusโ๏ธ
๐ Degree - BE or BSc
career.infosys.com/jobdesc?jobReferenceCode=PROGEN-External-129044
๐ Degree - BE or BSc
career.infosys.com/jobdesc?jobReferenceCode=PROGEN-External-129044
#include <bits/stdc++.h>
using namespace std;
string decimalToBinary(int n)
{
string s = bitset<64> (n).to_string();
const auto loc1 = s.find('1');
if(loc1 != string::npos)
return s.substr(loc1);
return "0";
}
int main()
{
int n;
cin>>n;
int ans=1;
string s =decimalToBinary(n);
for(int i=s.size()-1;i>=0;i--)
{
if(s[i]=='1')
break;
else
ans++;
}
cout<<ans;
return 0;
}
IBMโ
using namespace std;
string decimalToBinary(int n)
{
string s = bitset<64> (n).to_string();
const auto loc1 = s.find('1');
if(loc1 != string::npos)
return s.substr(loc1);
return "0";
}
int main()
{
int n;
cin>>n;
int ans=1;
string s =decimalToBinary(n);
for(int i=s.size()-1;i>=0;i--)
{
if(s[i]=='1')
break;
else
ans++;
}
cout<<ans;
return 0;
}
IBMโ
๐3
TOM CODE
TCSโ
TCSโ
๐1