Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Linkedin
Saiful kabir on LinkedIn: #fresher #fresher #cloudspecialist #cloudoperations #freshers | 290 comments
Hi All,
NOT ACCEPTING ANY MORE PROFILES/Resumes. Already got 1000+ resumes. Stay tuned for next fresher opening shortly. Keep in touch.
Job Location: Remoteโฆ | 290 comments on LinkedIn
NOT ACCEPTING ANY MORE PROFILES/Resumes. Already got 1000+ resumes. Stay tuned for next fresher opening shortly. Keep in touch.
Job Location: Remoteโฆ | 290 comments on LinkedIn
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Amazon India Hiring
Amazon Web Services - AWS is hiring for Cloud Support Associate (CSA). As a CSA, you'll solve customer cases using advanced troubleshooting techniques, providing tailored solutions and driving customer interactions.
Permanent WFH - Work From Home. Good Work Life Balance. Good pay.
What qualifications/skills are we looking for?
- Bachelorโs Degree in Engineering or MCA - 2023 Graduates ONLY
- 0-1 years of experience in Linux/Windows Systems administration OR Database design and Optimization OR BigData Analysis OR Network administration OR Dev-ops. (no relevant experience also works but would be a plus)
Job link - https://amazon.jobs/en/jobs/2469306/cloud-support-associate
P.S. - You would be tested on your Computer Networking & Operating Systems concept (the college subjects, yes). So, if you are proficient with the same. It would be a cake walk to clear the interviews.
Amazon Web Services - AWS is hiring for Cloud Support Associate (CSA). As a CSA, you'll solve customer cases using advanced troubleshooting techniques, providing tailored solutions and driving customer interactions.
Permanent WFH - Work From Home. Good Work Life Balance. Good pay.
What qualifications/skills are we looking for?
- Bachelorโs Degree in Engineering or MCA - 2023 Graduates ONLY
- 0-1 years of experience in Linux/Windows Systems administration OR Database design and Optimization OR BigData Analysis OR Network administration OR Dev-ops. (no relevant experience also works but would be a plus)
Job link - https://amazon.jobs/en/jobs/2469306/cloud-support-associate
P.S. - You would be tested on your Computer Networking & Operating Systems concept (the college subjects, yes). So, if you are proficient with the same. It would be a cake walk to clear the interviews.
class DNSCache:
def init(self, cache_size, cache_time):
self.cache_size = cache_size
self.cache_time = cache_time
self.cache = {}
def get_from_cache(self, url):
if url in self.cache:
return self.cache_time
return -1
def add_to_cache(self, url):
if len(self.cache) == self.cache_size:
oldest = min(self.cache, key=self.cache.get)
del self.cache[oldest]
self.cache[url] = 1
def calculate_min_time(urls, dns_cache, server_time):
result_times = []
for url in urls:
cache_time = dns_cache.get_from_cache(url)
if cache_time != -1:
result_times.append(cache_time)
else:
result_times.append(server_time)
dns_cache.add_to_cache(url)
return result_times
IBM โ
def init(self, cache_size, cache_time):
self.cache_size = cache_size
self.cache_time = cache_time
self.cache = {}
def get_from_cache(self, url):
if url in self.cache:
return self.cache_time
return -1
def add_to_cache(self, url):
if len(self.cache) == self.cache_size:
oldest = min(self.cache, key=self.cache.get)
del self.cache[oldest]
self.cache[url] = 1
def calculate_min_time(urls, dns_cache, server_time):
result_times = []
for url in urls:
cache_time = dns_cache.get_from_cache(url)
if cache_time != -1:
result_times.append(cache_time)
else:
result_times.append(server_time)
dns_cache.add_to_cache(url)
return result_times
IBM โ
Deloitte-Resume-Template.pdf
127.9 KB
PDF: How to Create your Resume - Deloitte
#include <bits/stdc++.h>
using namespace std;
void solve(vector<int>& arr) {
set<int> uniqueElements(arr.begin(), arr.end());
long long sum = 0;
for (int elem : uniqueElements) {
sum += (1LL << elem);
}
cout << sum << endl;
}
int main() {
vector<int> arr = {1, 2, 3, 2, 1};
solve(arr);
return 0;
}
Walmart โ
using namespace std;
void solve(vector<int>& arr) {
set<int> uniqueElements(arr.begin(), arr.end());
long long sum = 0;
for (int elem : uniqueElements) {
sum += (1LL << elem);
}
cout << sum << endl;
}
int main() {
vector<int> arr = {1, 2, 3, 2, 1};
solve(arr);
return 0;
}
Walmart โ
#include<bits/stdc++.h>
using namespace std;
void solve(string acc, int b, int c, int a, int n) {
if(acc.size() == n) {
cout << acc << endl;
return;
}
if(b > 0) solve(acc + 'B', b - 1, c, a, n);
if(c > 0) solve(acc + 'C', b, c - 1, a, n);
if(a > 0) solve(acc + 'A', b, c, a - 1, n);
}
int main() {
int n, b, c, a;
cin >> n >> b >> c >> a;
solve("", b, c, a, n);
return 0;
}
Walmart โ
using namespace std;
void solve(string acc, int b, int c, int a, int n) {
if(acc.size() == n) {
cout << acc << endl;
return;
}
if(b > 0) solve(acc + 'B', b - 1, c, a, n);
if(c > 0) solve(acc + 'C', b, c - 1, a, n);
if(a > 0) solve(acc + 'A', b, c, a - 1, n);
}
int main() {
int n, b, c, a;
cin >> n >> b >> c >> a;
solve("", b, c, a, n);
return 0;
}
Walmart โ
#include<bits/stdc++.h>
using namespace std;
int main() {
int n;
cin >> n;
vector<int> a(n);
for(int i = 0; i < n; i++) {
cin >> a[i];
}
vector<int> ng(n, -1), mr(n);
stack<int> s;
for(int i = n - 1; i >= 0; i--) {
while(!s.empty() && s.top() <= a[i]) {
s.pop();
}
if(!s.empty()) {
ng[i] = s.top();
}
s.push(a[i]);
mr[i] = i == n - 1 ? a[i] : max(a[i], mr[i + 1]);
}
int md = 0;
for(int i = 0; i < n; i++) {
if(ng[i] != -1) {
md = max(md, abs(ng[i] - mr[i]));
}
}
cout << md << endl;
return 0;
}
Walmart โ
using namespace std;
int main() {
int n;
cin >> n;
vector<int> a(n);
for(int i = 0; i < n; i++) {
cin >> a[i];
}
vector<int> ng(n, -1), mr(n);
stack<int> s;
for(int i = n - 1; i >= 0; i--) {
while(!s.empty() && s.top() <= a[i]) {
s.pop();
}
if(!s.empty()) {
ng[i] = s.top();
}
s.push(a[i]);
mr[i] = i == n - 1 ? a[i] : max(a[i], mr[i + 1]);
}
int md = 0;
for(int i = 0; i < n; i++) {
if(ng[i] != -1) {
md = max(md, abs(ng[i] - mr[i]));
}
}
cout << md << endl;
return 0;
}
Walmart โ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Kirana club is looking for interns and full time roles, if you are interested you can apply by fill out this form
Apply: https://docs.google.com/forms/d/e/1FAIpQLSfzxtwQe2CTFfqbUt99DnbNiP1rQF_haRpC7Ppt9kftEck4Lg/viewform
Apply: https://docs.google.com/forms/d/e/1FAIpQLSfzxtwQe2CTFfqbUt99DnbNiP1rQF_haRpC7Ppt9kftEck4Lg/viewform
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Redbus
Role: Associate Software Engineer
Batch eligible: 2023 and 2024 grads
Apply: https://www.redbus.in/careers/jobsdesc?jobid=a65a77cc210756#
Role: Associate Software Engineer
Batch eligible: 2023 and 2024 grads
Apply: https://www.redbus.in/careers/jobsdesc?jobid=a65a77cc210756#
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Allen Digital is hiring for Software Engineers in multiple domains.
Frontend
Backend
Full Stack
IoS and Android
Only Experienced Candidates ( Batch of 2022/2021/2020 and before) can send their resumes to TA@allen.in
Frontend
Backend
Full Stack
IoS and Android
Only Experienced Candidates ( Batch of 2022/2021/2020 and before) can send their resumes to TA@allen.in
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐RedBus is Hiring !!
Role: Associate Software Engineer
Experience: 0-1 years
Expected CTC: 7-12 LPA
๐Apply here: https://www.redbus.in/careers/jobsdesc?jobid=a65a77cc210756
Role: Associate Software Engineer
Experience: 0-1 years
Expected CTC: 7-12 LPA
๐Apply here: https://www.redbus.in/careers/jobsdesc?jobid=a65a77cc210756
Do you enjoy reading this channel?
Perhaps you have thought about placing ads on it?
To do this, follow three simple steps:
1) Sign up: https://telega.io/c/cs_algo
2) Top up the balance in a convenient way
3) Create an advertising post
If the topic of your post fits our channel, we will publish it with pleasure.
Perhaps you have thought about placing ads on it?
To do this, follow three simple steps:
1) Sign up: https://telega.io/c/cs_algo
2) Top up the balance in a convenient way
3) Create an advertising post
If the topic of your post fits our channel, we will publish it with pleasure.
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Deloitte India is hiring PAN India for multiple roles (0-10yrs exp)
Positions open for:
Stat Audit
Internal audit
IDT
DT
FDD
Valuation/IB
Can fill multiple positions and location as well
Interested candidates can fill the google form: https://docs.google.com/forms/d/e/1FAIpQLSdh7-otexdfFPiHaytaZdiNkKVOjzxBfoUqsg_6p8JMxPK9DQ/viewform
Apply using the link you will receive on email after the referral
Positions open for:
Stat Audit
Internal audit
IDT
DT
FDD
Valuation/IB
Can fill multiple positions and location as well
Interested candidates can fill the google form: https://docs.google.com/forms/d/e/1FAIpQLSdh7-otexdfFPiHaytaZdiNkKVOjzxBfoUqsg_6p8JMxPK9DQ/viewform
Apply using the link you will receive on email after the referral
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
If interested send ur resume hena.haris@carelon.com