Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐LeadSquared is Hiring for the role of Software Engineer
Batch: 2023, 2022
๐Apply now: https://www.linkedin.com/jobs/view/3918335432
Batch: 2023, 2022
๐Apply now: https://www.linkedin.com/jobs/view/3918335432
Linkedin
LeadSquared hiring Software Engineer in Pune, Maharashtra, India | LinkedIn
Posted 8:06:17 AM. About LeadSquared: One of the fastest growing SaaS companies in the CRM space, LeadSquared empowersโฆSee this and similar jobs on LinkedIn.
long Count_sol (int N, vector<int> A, vector<int> B) {
// Write your code here
vector<long>dp(MAXN,0);
unordered_map<int, int>f;
unordered_map<int, int>g;
for(int i=0;i<N;i++)
{
f[A[i]]++;
g[B[i]]++;
}
long ans=0;
for(int i=100000;i>=2;--i)
{
int c=0;
int d=0;
int s=0;
for(int j=i;j<=100000;j+=i)
{
c+=f[j];
d+=g[j];
s+=dp[j];
}
long pw=(long)c*d;
pw=pw-s;
ans+=pw;
dp[i]=pw;
}
return ans;
}
Count the Pairs โ
// Write your code here
vector<long>dp(MAXN,0);
unordered_map<int, int>f;
unordered_map<int, int>g;
for(int i=0;i<N;i++)
{
f[A[i]]++;
g[B[i]]++;
}
long ans=0;
for(int i=100000;i>=2;--i)
{
int c=0;
int d=0;
int s=0;
for(int j=i;j<=100000;j+=i)
{
c+=f[j];
d+=g[j];
s+=dp[j];
}
long pw=(long)c*d;
pw=pw-s;
ans+=pw;
dp[i]=pw;
}
return ans;
}
Count the Pairs โ
๐1
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
Photo
#include <iostream>
#include <vector>
#include <unordered_map>
#include <algorithm>
using namespace std;
int numIdleDrives(vector<int>& x, vector<int>& y) {
int n = x.size();
unordered_map<int, vector<int>> xMap, yMap;
for (int i = 0; i < n; ++i) {
xMap[y[i]].push_back(x[i]);
yMap[x[i]].push_back(y[i]);
}
for (auto& pair : xMap) {
sort(pair.second.begin(), pair.second.end());
}
for (auto& pair : yMap) {
sort(pair.second.begin(), pair.second.end());
}
int count = 0;
for (int i = 0; i < n; ++i) {
int currX = x[i], currY = y[i];
auto& yVec = xMap[currY];
auto it1 = upper_bound(yVec.begin(), yVec.end(), currX);
auto it2 = lower_bound(yVec.begin(), yVec.end(), currX);
bool above = (it1 != yVec.end());
bool below = (it2 != yVec.begin());
auto& xVec = yMap[currX];
it1 = upper_bound(xVec.begin(), xVec.end(), currY);
it2 = lower_bound(xVec.begin(), xVec.end(), currY);
bool left = (it1 != xVec.end());
bool right = (it2 != xVec.begin());
if (above && below && left && right) {
count++;
}
}
return count;
}
Amazon โ
#include <vector>
#include <unordered_map>
#include <algorithm>
using namespace std;
int numIdleDrives(vector<int>& x, vector<int>& y) {
int n = x.size();
unordered_map<int, vector<int>> xMap, yMap;
for (int i = 0; i < n; ++i) {
xMap[y[i]].push_back(x[i]);
yMap[x[i]].push_back(y[i]);
}
for (auto& pair : xMap) {
sort(pair.second.begin(), pair.second.end());
}
for (auto& pair : yMap) {
sort(pair.second.begin(), pair.second.end());
}
int count = 0;
for (int i = 0; i < n; ++i) {
int currX = x[i], currY = y[i];
auto& yVec = xMap[currY];
auto it1 = upper_bound(yVec.begin(), yVec.end(), currX);
auto it2 = lower_bound(yVec.begin(), yVec.end(), currX);
bool above = (it1 != yVec.end());
bool below = (it2 != yVec.begin());
auto& xVec = yMap[currX];
it1 = upper_bound(xVec.begin(), xVec.end(), currY);
it2 = lower_bound(xVec.begin(), xVec.end(), currY);
bool left = (it1 != xVec.end());
bool right = (it2 != xVec.begin());
if (above && below && left && right) {
count++;
}
}
return count;
}
Amazon โ
from collections import defaultdict
def Parenting(N, U, Val, V):
characters = Val
n = len(characters)
edges = [(U[i], V[i]) for i in range(len(U))]
answer = [1 for _ in range(n)]
adj = defaultdict(list)
def recurse(node, parent):
curr_char = characters[node]
comp = [0 for _ in range(26)]
comp[ord(curr_char) - ord('a')] += 1
for node_ in adj[node]:
if node_ != parent:
comp = merge(comp, recurse(node_, node))
answer[node] = comp[ord(curr_char) - ord('a')]
return comp
def merge(arr1, arr2):
for i, el in enumerate(arr2):
arr1[i] += el
return arr1
for x, y in edges:
adj[x-1].append(y-1)
adj[y-1].append(x-1)
recurse(0, -1)
return answer
Parent Node โ
def Parenting(N, U, Val, V):
characters = Val
n = len(characters)
edges = [(U[i], V[i]) for i in range(len(U))]
answer = [1 for _ in range(n)]
adj = defaultdict(list)
def recurse(node, parent):
curr_char = characters[node]
comp = [0 for _ in range(26)]
comp[ord(curr_char) - ord('a')] += 1
for node_ in adj[node]:
if node_ != parent:
comp = merge(comp, recurse(node_, node))
answer[node] = comp[ord(curr_char) - ord('a')]
return comp
def merge(arr1, arr2):
for i, el in enumerate(arr2):
arr1[i] += el
return arr1
for x, y in edges:
adj[x-1].append(y-1)
adj[y-1].append(x-1)
recurse(0, -1)
return answer
Parent Node โ
int Arr_Diff (vector<int> arr) {
// Write your code here
int n=arr.size();
int maxi=INT_MIN;
int mini=INT_MAX;
for(int i=0;i<n;i++)
{
if(arr[i]%2!=0)
arr[i]=2*arr[i];
maxi=max(maxi,arr[i]);
mini=min(mini,arr[i]);
}
priority_queue<int>pq;
for(int i=0;i<n;i++)
{
pq.push(arr[i]);
}
int min_dev=maxi-mini;
int top=0;
while(pq.top()%2==0)
{
top=pq.top();
pq.pop();
min_dev=min(min_dev,top-mini);
mini=min(mini,top/2);
pq.push(top/2);
}
top=pq.top();
min_dev=min(min_dev,top-mini);
return min_dev;
}
Array Difference โ
// Write your code here
int n=arr.size();
int maxi=INT_MIN;
int mini=INT_MAX;
for(int i=0;i<n;i++)
{
if(arr[i]%2!=0)
arr[i]=2*arr[i];
maxi=max(maxi,arr[i]);
mini=min(mini,arr[i]);
}
priority_queue<int>pq;
for(int i=0;i<n;i++)
{
pq.push(arr[i]);
}
int min_dev=maxi-mini;
int top=0;
while(pq.top()%2==0)
{
top=pq.top();
pq.pop();
min_dev=min(min_dev,top-mini);
mini=min(mini,top/2);
pq.push(top/2);
}
top=pq.top();
min_dev=min(min_dev,top-mini);
return min_dev;
}
Array Difference โ
int solution (vector<int> chocolates, int M, int N) {
// Find the maximum number of chocolates that can be selected.
const int u=100005;
long long int l[u];
long long int ans=0;
memset(l,-1,sizeof(l));
l[0]=0;
long long int s=0;
for(int i=0;i<N;i++)
{
s+=chocolates[i];
int tm=s%M;
if(-1==l[tm])
l[tm]=s;
else
ans=max(ans,s-l[tm]);
}
return static_cast<int>(ans/M);
}
Chocolate Distribution โ
// Find the maximum number of chocolates that can be selected.
const int u=100005;
long long int l[u];
long long int ans=0;
memset(l,-1,sizeof(l));
l[0]=0;
long long int s=0;
for(int i=0;i<N;i++)
{
s+=chocolates[i];
int tm=s%M;
if(-1==l[tm])
l[tm]=s;
else
ans=max(ans,s-l[tm]);
}
return static_cast<int>(ans/M);
}
Chocolate Distribution โ
๐1
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
Photo
#include <vector>
#include <tuple>
#include <algorithm>
using namespace std;
int64_t findMax(vector<vector<int>>& items, int k) {
int n = items.size() - 1;
vector<vector<int64_t>> dp(n + 1, vector<int64_t>(k + 1, 0));
vector<int> ult(n + 5, -1);
// Sort the items based on their type (tp) in ascending order
sort(items.begin() + 1, items.end());
for (int i = 1; i <= n; i++) {
int tp = items[i][0];
int wt = items[i][1];
int val = items[i][2];
int lsttp = ult[tp];
if (-1 == lsttp) lsttp = i - 1;
for (int ow = 0; ow <= k; ow++) {
dp[i][ow] = max(dp[i][ow], dp[i - 1][ow]);
if (wt + ow <= k) {
dp[i][wt + ow] = max({ dp[i][wt + ow], dp[lsttp][ow] + val, dp[i - 1][wt + ow] });
}
}
if (-1 == ult[tp]) ult[tp] = i - 1;
}
int64_t res = 0;
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= k; j++) {
res = max(res, dp[i][j]);
}
}
return res;
}
int main() {
int n;
cin >> n;
vector<vector<int>> items(n + 1, vector<int>(3));
for (int i = 1; i <= n; i++) {
cin >> items[i][0] >> items[i][1] >> items[i][2];
}
int k;
cin >> k;
int64_t result = findMax(items, k);
cout << result << endl;
return 0;
}
Modified knapsack โ
#include <tuple>
#include <algorithm>
using namespace std;
int64_t findMax(vector<vector<int>>& items, int k) {
int n = items.size() - 1;
vector<vector<int64_t>> dp(n + 1, vector<int64_t>(k + 1, 0));
vector<int> ult(n + 5, -1);
// Sort the items based on their type (tp) in ascending order
sort(items.begin() + 1, items.end());
for (int i = 1; i <= n; i++) {
int tp = items[i][0];
int wt = items[i][1];
int val = items[i][2];
int lsttp = ult[tp];
if (-1 == lsttp) lsttp = i - 1;
for (int ow = 0; ow <= k; ow++) {
dp[i][ow] = max(dp[i][ow], dp[i - 1][ow]);
if (wt + ow <= k) {
dp[i][wt + ow] = max({ dp[i][wt + ow], dp[lsttp][ow] + val, dp[i - 1][wt + ow] });
}
}
if (-1 == ult[tp]) ult[tp] = i - 1;
}
int64_t res = 0;
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= k; j++) {
res = max(res, dp[i][j]);
}
}
return res;
}
int main() {
int n;
cin >> n;
vector<vector<int>> items(n + 1, vector<int>(3));
for (int i = 1; i <= n; i++) {
cin >> items[i][0] >> items[i][1] >> items[i][2];
}
int k;
cin >> k;
int64_t result = findMax(items, k);
cout << result << endl;
return 0;
}
Modified knapsack โ
๐4
#include <vector>
#include <queue>
using namespace std;
int solve(vector<int> ropes) {
priority_queue<int> pq(ropes.begin(), ropes.end());
int ans = 0;
while (pq.size() > 1) {
int rope1 = pq.top();
pq.pop();
int rope2 = pq.top();
pq.pop();
if (rope1 < 2 || rope2 < 2) {
break;
}
ans += (rope1 - 1) * (rope2 - 1);
}
return ans;
}
Ropes Pair Length โ
#include <queue>
using namespace std;
int solve(vector<int> ropes) {
priority_queue<int> pq(ropes.begin(), ropes.end());
int ans = 0;
while (pq.size() > 1) {
int rope1 = pq.top();
pq.pop();
int rope2 = pq.top();
pq.pop();
if (rope1 < 2 || rope2 < 2) {
break;
}
ans += (rope1 - 1) * (rope2 - 1);
}
return ans;
}
Ropes Pair Length โ
Simple Cipher โ
Python 3
Python 3
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
#include <bits/stdc++.h> #define ll long long using namespace std; vector<ll> count(ll k,vector<ll>& a) { vector<ll> prime; for (ll i=2;i<=sqrt(k);i++) { if (k%i==0) { prime.push_back(i); while (k%i==0)โฆ
#include <bits/stdc++.h>
#define ll long long
using namespace std;
ll count(ll k,vector<ll>& a)
{
unordered_map<ll,ll>mpp,count;
ll n=a.size();
for (ll i=2;i*i<=(k);i++)
{
if (k%i==0)
while(k%i==0) mpp[i]++,k/=i;
}
if (k>1) mpp[k]++;
for (auto num:a)
{
for(auto it:mpp)
{
ll fac=it.first;
while (num%fac==0)
{
count[fac]++;
num/=fac;
}
}
}
ll mini=LONG_MAX;
for(auto&it:count)
{
it.second/=mpp[it.first];
mini=min(mini,it.second);
}
return (mini==LONG_MAX)?0:min(n,mini);
}
signed main() {
ll n, k; cin>>n>>k;
vector<ll>a(n);
for(ll i=0;i<n;i++) cin>>a[i];
cout<<min(n,count(k,a));
return 0;
}
K Divisible number โ
#define ll long long
using namespace std;
ll count(ll k,vector<ll>& a)
{
unordered_map<ll,ll>mpp,count;
ll n=a.size();
for (ll i=2;i*i<=(k);i++)
{
if (k%i==0)
while(k%i==0) mpp[i]++,k/=i;
}
if (k>1) mpp[k]++;
for (auto num:a)
{
for(auto it:mpp)
{
ll fac=it.first;
while (num%fac==0)
{
count[fac]++;
num/=fac;
}
}
}
ll mini=LONG_MAX;
for(auto&it:count)
{
it.second/=mpp[it.first];
mini=min(mini,it.second);
}
return (mini==LONG_MAX)?0:min(n,mini);
}
signed main() {
ll n, k; cin>>n>>k;
vector<ll>a(n);
for(ll i=0;i<n;i++) cin>>a[i];
cout<<min(n,count(k,a));
return 0;
}
K Divisible number โ
๐1
#include<bits/stdc++.h>
using namespace std;
int N,M;
int findMinimum (vector<vector<vector<int>>>&arr,int rr,int cc) {
// Write your code here
vector<vector<bool>>seen(arr.size(),vector<bool>(arr[0].size(),false));
seen[0][0]=true;
queue<pair<int,int>>q;
int le=0;
q.push({0,0});
while(!q.empty())
{
int si=q.size();
while(si-->0)
{
pair<int,int>cu=q.front();
q.pop();
int r=cu.first;
int c=cu.second;
if(r==rr and c==cc)
return le;
int x=arr[r][c][0];
int y=arr[r][c][1];
int rc=arr.size();
int cd=arr[0].size();
int dir[8][2]={{x,y},{x,-y},{-x,y},{-x,-y},{y,x},{y,-x},{-y,x},{-y,-x}};
for(int i=0;i<8;i++)
{
int nr=r+dir[i][0];
int nc=c+dir[i][1];
if(nr>=0 and nr<rc and nc>=0 and nc<cd and !seen[nr][nc])
{
q.push({nr,nc});
seen[nr][nc]=true;
}
}
}
le++;
}
return -1;
}
int main() {
ios::sync_with_stdio(0);
cin.tie(0);
int T;
cin >> T;
for(int t_i=0; t_i<T; t_i++)
{
//int N;
cin >> N;
//int M;
cin >> M;
vector<vector<vector<int>>>arr(N,vector<vector<int>>(M,vector<int>(2)));
for(int i=0;i<N;i++)
{
for(int j=0;j<M;j++)
{
cin>>arr[i][j][0]>>arr[i][j][1];
}
}
int out_;
out_ = findMinimum(arr,N-1,M-1);
cout << out_;
cout << "\n";
}
}
Minimum moves โ
Hackerearth
using namespace std;
int N,M;
int findMinimum (vector<vector<vector<int>>>&arr,int rr,int cc) {
// Write your code here
vector<vector<bool>>seen(arr.size(),vector<bool>(arr[0].size(),false));
seen[0][0]=true;
queue<pair<int,int>>q;
int le=0;
q.push({0,0});
while(!q.empty())
{
int si=q.size();
while(si-->0)
{
pair<int,int>cu=q.front();
q.pop();
int r=cu.first;
int c=cu.second;
if(r==rr and c==cc)
return le;
int x=arr[r][c][0];
int y=arr[r][c][1];
int rc=arr.size();
int cd=arr[0].size();
int dir[8][2]={{x,y},{x,-y},{-x,y},{-x,-y},{y,x},{y,-x},{-y,x},{-y,-x}};
for(int i=0;i<8;i++)
{
int nr=r+dir[i][0];
int nc=c+dir[i][1];
if(nr>=0 and nr<rc and nc>=0 and nc<cd and !seen[nr][nc])
{
q.push({nr,nc});
seen[nr][nc]=true;
}
}
}
le++;
}
return -1;
}
int main() {
ios::sync_with_stdio(0);
cin.tie(0);
int T;
cin >> T;
for(int t_i=0; t_i<T; t_i++)
{
//int N;
cin >> N;
//int M;
cin >> M;
vector<vector<vector<int>>>arr(N,vector<vector<int>>(M,vector<int>(2)));
for(int i=0;i<N;i++)
{
for(int j=0;j<M;j++)
{
cin>>arr[i][j][0]>>arr[i][j][1];
}
}
int out_;
out_ = findMinimum(arr,N-1,M-1);
cout << out_;
cout << "\n";
}
}
Minimum moves โ
Hackerearth
๐2
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Quizizz is hiring Backend Engineer
For 2023, 2022 grads
https://www.instahyre.com/job-314304-software-engineer-backend-at-quizizz-bangalore/
For 2023, 2022 grads
https://www.instahyre.com/job-314304-software-engineer-backend-at-quizizz-bangalore/
Instahyre
Software Engineer - Backend job at Quizizz - Instahyre
Quizizz is looking for a Software Engineer - Backend in Bangalore with 1-4 years of experience in Backend Development, C, C++, Golang, Java, Node.js, Python, Ruby, etc. Apply today and get your dream job at Quizizz!
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
#include <bits/stdc++.h> #define ll long long using namespace std; vector<ll> count(ll k,vector<ll>& a) { vector<ll> prime; for (ll i=2;i<=sqrt(k);i++) { if (k%i==0) { prime.push_back(i); while (k%i==0)โฆ
#include <bits/stdc++.h>
#define ll long long
using namespace std;
ll count(ll k,vector<ll>& a)
{
unordered_map<ll,ll>mpp,count;
ll n=a.size();
for (ll i=2;i*i<=(k);i++)
{
if (k%i==0)
while(k%i==0) mpp[i]++,k/=i;
}
if (k>1) mpp[k]++;
for (auto num:a)
{
for(auto it:mpp)
{
ll fac=it.first;
while (num%fac==0)
{
count[fac]++;
num/=fac;
}
}
}
ll mini=LONG_MAX;
for(auto&it:count)
{
it.second/=mpp[it.first];
mini=min(mini,it.second);
}
return (mini==LONG_MAX)?0:min(n,mini);
}
signed main() {
ll n, k; cin>>n>>k;
vector<ll>a(n);
for(ll i=0;i<n;i++) cin>>a[i];
cout<<min(n,count(k,a));
return 0;
}
K divisible number โ
#include <bits/stdc++.h>
using namespace std;
const int MOD = 1000000007;
long long countMaxXOR(int N, int K) {
vector<vector<long long>> dp(N + 1, vector<long long>((1 << K), 0));
dp[1][0] = 1;
for (int i = 2; i <= N; i++) {
for (int j = 0; j < (1 << K); j++) {
for (int k = 0; k < (1 << K); k++) {
if ((j ^ k) > j) {
dp[i][j ^ k] = (dp[i][j ^ k] + dp[i - 1][j]) % MOD;
}
}
}
}
long long total_count = 0;
for (int j = 0; j < (1 << K); j++) {
total_count = (total_count + dp[N][j]) % MOD;
}
return total_count;
}
Array Construction โ
using namespace std;
const int MOD = 1000000007;
long long countMaxXOR(int N, int K) {
vector<vector<long long>> dp(N + 1, vector<long long>((1 << K), 0));
dp[1][0] = 1;
for (int i = 2; i <= N; i++) {
for (int j = 0; j < (1 << K); j++) {
for (int k = 0; k < (1 << K); k++) {
if ((j ^ k) > j) {
dp[i][j ^ k] = (dp[i][j ^ k] + dp[i - 1][j]) % MOD;
}
}
}
}
long long total_count = 0;
for (int j = 0; j < (1 << K); j++) {
total_count = (total_count + dp[N][j]) % MOD;
}
return total_count;
}
Array Construction โ
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Greetings from Tata Strive- Nagavara Centre- Bengaluru
๐ Empowering Students for Brighter Futures ๐
๐ Join our targeted upskilling initiatives! ๐
Are you ready to take your future to new heights? We're offering exclusive courses in AWS Restart, Cyber Security & GIS and Drone Data Processing, Food and Beverages Steward, Housekeeping attendant to uplift underprivileged students like you. Here's your chance to unlock a world of opportunities!
๐ Course Details:
1. AWS Restart
๐ Eligibility Criteria:
โข Education- BE/Btech(CS,IT,IS)/MCA
โข Year of passing -2021,22,23
โข Score- min 60% score in 10th, 12th and graduation
2. Cyber Security
๐ Eligibility Criteria:
โข Education- BE/Btech(CS,IT,IS)/MCA
โข Year of passing -2021,22,23
โข Score- min 60% score in 10th, 12th and graduation
3. Geographic Information Systems (GIS) and Drone Data Processing
๐ Eligibility Criteria:
โข Education- 10th Pass. Diploma and ITI Pass are highly preferred.
โข Proficiency in reading and writing English/Hindi
4. Food & Beverages Steward
๐ Eligibility Criteria:
โข Education- 10th Pass & Above
โข Interested in Food Industry
5. Housekeeping Attendant
๐ Eligibility Criteria:
โข Education- 8th & Above
โข Interested in Hospitality
๐ Why Choose Us?:
Hands-on training from industry experts
Learn cutting-edge skills in high-demand fields
Assistance for placements and internships
Empower yourself for a brighter tomorrow!
๐ Enrollment Period: Limited seats available! Act fast to secure your spot.
๐ How to Apply:
๏ถ Register now for Cyber Security, AWS & GIS Drone Courses: https://docs.google.com/forms/d/e/1FAIpQLScJNaCZVbTWr3FT6MpPjT9XjLu637pCXDMbcrY04cQzS1gRUQ/viewform?usp=sf_link
๏ถ Register now for F&B and Housekeeping attendant Courses
https://forms.gle/Z58jZLqQ2Uzw29j76
Don't let this opportunity pass you by. Take the first step towards a brighter future today! ๐ซ
๐ฒ Contact Us:
Mahesha KC: 9449941568
Let's journey towards success together!
๐ Empowering Students for Brighter Futures ๐
๐ Join our targeted upskilling initiatives! ๐
Are you ready to take your future to new heights? We're offering exclusive courses in AWS Restart, Cyber Security & GIS and Drone Data Processing, Food and Beverages Steward, Housekeeping attendant to uplift underprivileged students like you. Here's your chance to unlock a world of opportunities!
๐ Course Details:
1. AWS Restart
๐ Eligibility Criteria:
โข Education- BE/Btech(CS,IT,IS)/MCA
โข Year of passing -2021,22,23
โข Score- min 60% score in 10th, 12th and graduation
2. Cyber Security
๐ Eligibility Criteria:
โข Education- BE/Btech(CS,IT,IS)/MCA
โข Year of passing -2021,22,23
โข Score- min 60% score in 10th, 12th and graduation
3. Geographic Information Systems (GIS) and Drone Data Processing
๐ Eligibility Criteria:
โข Education- 10th Pass. Diploma and ITI Pass are highly preferred.
โข Proficiency in reading and writing English/Hindi
4. Food & Beverages Steward
๐ Eligibility Criteria:
โข Education- 10th Pass & Above
โข Interested in Food Industry
5. Housekeeping Attendant
๐ Eligibility Criteria:
โข Education- 8th & Above
โข Interested in Hospitality
๐ Why Choose Us?:
Hands-on training from industry experts
Learn cutting-edge skills in high-demand fields
Assistance for placements and internships
Empower yourself for a brighter tomorrow!
๐ Enrollment Period: Limited seats available! Act fast to secure your spot.
๐ How to Apply:
๏ถ Register now for Cyber Security, AWS & GIS Drone Courses: https://docs.google.com/forms/d/e/1FAIpQLScJNaCZVbTWr3FT6MpPjT9XjLu637pCXDMbcrY04cQzS1gRUQ/viewform?usp=sf_link
๏ถ Register now for F&B and Housekeeping attendant Courses
https://forms.gle/Z58jZLqQ2Uzw29j76
Don't let this opportunity pass you by. Take the first step towards a brighter future today! ๐ซ
๐ฒ Contact Us:
Mahesha KC: 9449941568
Let's journey towards success together!
Google Docs
Tata Strive-TSEC Nagavara Registration form-AWS Cloud/Cyber Security & GIS Drone
1. AWS re/Start Course
Preparing individuals for cloud careers with free to-the-learner cohort-based training
Helping people launch careers in the cloud.
AWS re/Start is a cohort-based workforce development training program that prepares individuals for careersโฆ
Preparing individuals for cloud careers with free to-the-learner cohort-based training
Helping people launch careers in the cloud.
AWS re/Start is a cohort-based workforce development training program that prepares individuals for careersโฆ
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Amazon hiring SDE-1 | 2022, 2023 Grads | Full Time
https://www.amazon.jobs/jobs/2634686/software-development-engineeri
https://www.amazon.jobs/jobs/2634686/software-development-engineeri