Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
ticket.com is hiring for Quality Assurance Intern
25-30 k per month
2025/2024 passouts ( 2026 may can also try )
https://jobs.lever.co/tiket/a571df49-c862-4280-becc-dccf4d593a52
25-30 k per month
2025/2024 passouts ( 2026 may can also try )
https://jobs.lever.co/tiket/a571df49-c862-4280-becc-dccf4d593a52
public static String decodePassword(String encodedPassword) {
String reversedString = new StringBuilder(encodedPassword).reverse().toString();
StringBuilder decodedPassword = new StringBuilder();
int i = 0;
while (i < reversedString.length()) {
int asciiValue;
if (i + 2 < reversedString.length()) {
asciiValue = Integer.parseInt(reversedString.substring(i, i + 3));
if (asciiValue >= 32 && asciiValue <= 122) {
i += 3;
} else {
asciiValue = Integer.parseInt(reversedString.substring(i, i + 2));
i += 2;
}
} else {
asciiValue = Integer.parseInt(reversedString.substring(i, i + 2));
i += 2;
}
decodedPassword.append((char) asciiValue);
}
return decodedPassword.toString();
}
String reversedString = new StringBuilder(encodedPassword).reverse().toString();
StringBuilder decodedPassword = new StringBuilder();
int i = 0;
while (i < reversedString.length()) {
int asciiValue;
if (i + 2 < reversedString.length()) {
asciiValue = Integer.parseInt(reversedString.substring(i, i + 3));
if (asciiValue >= 32 && asciiValue <= 122) {
i += 3;
} else {
asciiValue = Integer.parseInt(reversedString.substring(i, i + 2));
i += 2;
}
} else {
asciiValue = Integer.parseInt(reversedString.substring(i, i + 2));
i += 2;
}
decodedPassword.append((char) asciiValue);
}
return decodedPassword.toString();
}
#include <iostream>
#include <vector>
#include <algorithm>
#include <functional>
using namespace std;
class SGTree {
vector<long long> seg;
public:
SGTree(long long n) {
seg.resize(4 * n, 0);
}
void build(long long ind, long long low, long long high, vector<long long>& arr) {
if (low == high) {
seg[ind] = arr[low];
return;
}
long long mid = (low + high) >> 1;
build(2 * ind + 1, low, mid, arr);
build(2 * ind + 2, mid + 1, high, arr);
seg[ind] = (seg[2 * ind + 1] + seg[2 * ind + 2]);
}
long long query(long long ind, long long low, long long high, long long l, long long r) {
if (r < low || high < l) return 0;
if (l <= low && high <= r) return seg[ind];
long long mid = (low + high) >> 1;
long long left = query(2 * ind + 1, low, mid, l, r);
long long right = query(2 * ind + 2, mid + 1, high, l, r);
return (left + right);
}
void update(long long ind, long long low, long long high, long long i, long long val) {
if (low == high) {
seg[ind] = val;
return;
}
long long mid = (low + high) >> 1;
if (i <= mid) update(2 * ind + 1, low, mid, i, val);
else update(2 * ind + 2, mid + 1, high, i, val);
seg[ind] = (seg[2 * ind + 1] + seg[2 * ind + 2]);
}
};
vector<int> even_odd(int N, vector<long long> A) {
vector<long long> val1(N);
vector<long long> val2(N);
vector<pair<long long, long long>> chota(N);
vector<pair<long long, long long>> bada(N);
for (long long i = 0; i < N; ++i) {
chota[i] = { A[i], i };
bada[i] = { A[i], i };
}
sort(chota.begin(), chota.end());
sort(bada.begin(), bada.end(), greater<pair<long long, long long>>());
SGTree sgt1(N);
sgt1.update(0, 0, N - 1, chota[0].second, chota[0].first);
for (long long i = 1; i < N; ++i) {
long long val = sgt1.query(0, 0, N - 1, 0, chota[i].second);
val1[chota[i].second] = val;
sgt1.update(0, 0, N - 1, chota[i].second, chota[i].first);
}
SGTree sgt2(N);
sgt2.update(0, 0, N - 1, bada[0].second, 1);
for (long long i = 1; i < N; ++i) {
long long val = sgt2.query(0, 0, N - 1, 0, bada[i].second);
val2[bada[i].second] = val;
sgt2.update(0, 0, N - 1, bada[i].second, 1);
}
vector<int> res(N);
for (long long i = 0; i < N; ++i) {
long long curr = val1[i] + (val2[i] * A[i]);
res[i] = (curr % 2 == 0) ? 1 : 0;
}
return res;
}.
EVEN ODD SUM
Sprinklr โ
#include <vector>
#include <algorithm>
#include <functional>
using namespace std;
class SGTree {
vector<long long> seg;
public:
SGTree(long long n) {
seg.resize(4 * n, 0);
}
void build(long long ind, long long low, long long high, vector<long long>& arr) {
if (low == high) {
seg[ind] = arr[low];
return;
}
long long mid = (low + high) >> 1;
build(2 * ind + 1, low, mid, arr);
build(2 * ind + 2, mid + 1, high, arr);
seg[ind] = (seg[2 * ind + 1] + seg[2 * ind + 2]);
}
long long query(long long ind, long long low, long long high, long long l, long long r) {
if (r < low || high < l) return 0;
if (l <= low && high <= r) return seg[ind];
long long mid = (low + high) >> 1;
long long left = query(2 * ind + 1, low, mid, l, r);
long long right = query(2 * ind + 2, mid + 1, high, l, r);
return (left + right);
}
void update(long long ind, long long low, long long high, long long i, long long val) {
if (low == high) {
seg[ind] = val;
return;
}
long long mid = (low + high) >> 1;
if (i <= mid) update(2 * ind + 1, low, mid, i, val);
else update(2 * ind + 2, mid + 1, high, i, val);
seg[ind] = (seg[2 * ind + 1] + seg[2 * ind + 2]);
}
};
vector<int> even_odd(int N, vector<long long> A) {
vector<long long> val1(N);
vector<long long> val2(N);
vector<pair<long long, long long>> chota(N);
vector<pair<long long, long long>> bada(N);
for (long long i = 0; i < N; ++i) {
chota[i] = { A[i], i };
bada[i] = { A[i], i };
}
sort(chota.begin(), chota.end());
sort(bada.begin(), bada.end(), greater<pair<long long, long long>>());
SGTree sgt1(N);
sgt1.update(0, 0, N - 1, chota[0].second, chota[0].first);
for (long long i = 1; i < N; ++i) {
long long val = sgt1.query(0, 0, N - 1, 0, chota[i].second);
val1[chota[i].second] = val;
sgt1.update(0, 0, N - 1, chota[i].second, chota[i].first);
}
SGTree sgt2(N);
sgt2.update(0, 0, N - 1, bada[0].second, 1);
for (long long i = 1; i < N; ++i) {
long long val = sgt2.query(0, 0, N - 1, 0, bada[i].second);
val2[bada[i].second] = val;
sgt2.update(0, 0, N - 1, bada[i].second, 1);
}
vector<int> res(N);
for (long long i = 0; i < N; ++i) {
long long curr = val1[i] + (val2[i] * A[i]);
res[i] = (curr % 2 == 0) ? 1 : 0;
}
return res;
}.
EVEN ODD SUM
Sprinklr โ
#include <iostream>
#include <vector>
#include <algorithm>
#include <cmath>
#include <climits>
using namespace std;
vector<long long> palindromes;
void generatePalindromes(int idx, string p, int flag);
long long calculate(string p) {
string p1 = p;
reverse(p1.begin(), p1.end());
string fullPalindrome = p + p1;
long long ans = 0;
for (int i = fullPalindrome.length() - 1; i >= 0; i--) {
if (fullPalindrome[i] == '1') {
ans += (1LL << (fullPalindrome.length() - 1 - i));
}
}
return ans;
}
long long calculateWithRemovedCenter(string p) {
string p1 = p;
reverse(p1.begin(), p1.end());
if (!p1.empty())
p1.erase(p1.begin());
string fullPalindrome = p + p1;
long long ans = 0;
for (int i = fullPalindrome.length() - 1; i >= 0; i--) {
if (fullPalindrome[i] == '1') {
ans += (1LL << (fullPalindrome.length() - 1 - i));
}
}
return ans;
}
void generatePalindromes(int idx, string p, int flag) {
if (idx == 16) {
palindromes.push_back(calculate(p));
if (!p.empty()) {
palindromes.push_back(calculateWithRemovedCenter(p));
}
return;
}
if (flag == 0) {
generatePalindromes(idx + 1, p, 0);
generatePalindromes(idx + 1, p + "1", 1);
} else {
generatePalindromes(idx + 1, p + "0", 1);
generatePalindromes(idx + 1, p + "1", 1);
}
}
long long solve(long long num) {
auto it = lower_bound(palindromes.begin(), palindromes.end(), num);
long long result = LLONG_MAX;
if (it != palindromes.end()) {
result = min(result, abs(*it - num));
}
if (it != palindromes.begin()) {
result = min(result, abs(num - *(--it)));
}
return result;
}
int main() {
generatePalindromes(0, "", 0);
sort(palindromes.begin(), palindromes.end());
long long num;
cin >> num;
cout << solve(num) << endl;
return 0;
}
Binary palindrome number Sprinklr โ
#include <vector>
#include <algorithm>
#include <cmath>
#include <climits>
using namespace std;
vector<long long> palindromes;
void generatePalindromes(int idx, string p, int flag);
long long calculate(string p) {
string p1 = p;
reverse(p1.begin(), p1.end());
string fullPalindrome = p + p1;
long long ans = 0;
for (int i = fullPalindrome.length() - 1; i >= 0; i--) {
if (fullPalindrome[i] == '1') {
ans += (1LL << (fullPalindrome.length() - 1 - i));
}
}
return ans;
}
long long calculateWithRemovedCenter(string p) {
string p1 = p;
reverse(p1.begin(), p1.end());
if (!p1.empty())
p1.erase(p1.begin());
string fullPalindrome = p + p1;
long long ans = 0;
for (int i = fullPalindrome.length() - 1; i >= 0; i--) {
if (fullPalindrome[i] == '1') {
ans += (1LL << (fullPalindrome.length() - 1 - i));
}
}
return ans;
}
void generatePalindromes(int idx, string p, int flag) {
if (idx == 16) {
palindromes.push_back(calculate(p));
if (!p.empty()) {
palindromes.push_back(calculateWithRemovedCenter(p));
}
return;
}
if (flag == 0) {
generatePalindromes(idx + 1, p, 0);
generatePalindromes(idx + 1, p + "1", 1);
} else {
generatePalindromes(idx + 1, p + "0", 1);
generatePalindromes(idx + 1, p + "1", 1);
}
}
long long solve(long long num) {
auto it = lower_bound(palindromes.begin(), palindromes.end(), num);
long long result = LLONG_MAX;
if (it != palindromes.end()) {
result = min(result, abs(*it - num));
}
if (it != palindromes.begin()) {
result = min(result, abs(num - *(--it)));
}
return result;
}
int main() {
generatePalindromes(0, "", 0);
sort(palindromes.begin(), palindromes.end());
long long num;
cin >> num;
cout << solve(num) << endl;
return 0;
}
Binary palindrome number Sprinklr โ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Eagleview
๐ Job Title: Software Engineer
โ๐ป YOE: 2022, 2023 and 2024 grads
โก๏ธ Apply:
1) https://careers.eagleview.com/jobs/2157?lang=en-us
2) https://careers.eagleview.com/jobs/2158?lang=en-us
Please do share in your college grps and in case you are applying please react on this post:) ๐โค๏ธ
๐ Job Title: Software Engineer
โ๐ป YOE: 2022, 2023 and 2024 grads
โก๏ธ Apply:
1) https://careers.eagleview.com/jobs/2157?lang=en-us
2) https://careers.eagleview.com/jobs/2158?lang=en-us
Please do share in your college grps and in case you are applying please react on this post:) ๐โค๏ธ
Software Engineer - I in Bengaluru, India | EagleView
eagleview is hiring a Software Engineer - I in Bengaluru, India. Review all of the job details and apply today!
๐2
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: Western Digital
๐ Job Title: Software Engineer
โ๐ป YOE: 2024 grads only
โก๏ธ Apply: https://jobs.smartrecruiters.com/WesternDigital/744000001182425-engineer-software-engineering-ncg-hiring-be-2024-c-or-c-
Please do share in your college grps and in case you are applying please react on this post:) ๐โค๏ธ
๐ Job Title: Software Engineer
โ๐ป YOE: 2024 grads only
โก๏ธ Apply: https://jobs.smartrecruiters.com/WesternDigital/744000001182425-engineer-software-engineering-ncg-hiring-be-2024-c-or-c-
Please do share in your college grps and in case you are applying please react on this post:) ๐โค๏ธ
Smartrecruiters
Western Digital Engineer, Software Engineering ( NCG Hiring : BE 2024 , C or C++) | SmartRecruiters
Job DescriptionWHAT YOU WILL DOESSENTIAL DUTIES AND RESPONSIBILITIESDevelop firmware using C/C++ in multiple environments using latest standards: FPGA, Simulator, for NAND/eHDD (Enterprise Hard Disk Drive) products.Follow Agile methodologies in development.Createโฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Flipkart is hiring (2024 grads)
Roles: SDE 1, UI-1 and Data Engineer 1
Eligibility: 2024 engg graduates (CSE, IT, ECE & EE streams only)
CTC: 32.57 LPA (18 lakhs base, 10% variable, ESOPs worth 5 Lakh, Joining Bonus- 3 lakh and Retention bonus: 3 lakh + retirals & other benefits)
Apply: https://docs.google.com/forms/d/e/1FAIpQLSdpZOBSMreLO3ahwEHHsAunsGUl1uoYPAVVyFpBEFZYaQGeNA/viewform
Roles: SDE 1, UI-1 and Data Engineer 1
Eligibility: 2024 engg graduates (CSE, IT, ECE & EE streams only)
CTC: 32.57 LPA (18 lakhs base, 10% variable, ESOPs worth 5 Lakh, Joining Bonus- 3 lakh and Retention bonus: 3 lakh + retirals & other benefits)
Apply: https://docs.google.com/forms/d/e/1FAIpQLSdpZOBSMreLO3ahwEHHsAunsGUl1uoYPAVVyFpBEFZYaQGeNA/viewform
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Fracto is hiring for Software Engineer - Backend (SDE1)
Apply here:
https://linkedin.com/jobs/view/3977751989/?alternateChannel=search
Apply here:
https://linkedin.com/jobs/view/3977751989/?alternateChannel=search
Linkedin
Fracto hiring Software Engineer - Backend (SDE1) in New Delhi, Delhi, India | LinkedIn
Posted 1:42:30 PM. Job Overview:We are seeking a dedicated and skilled Backend Software Engineer (SDE1) with expertiseโฆSee this and similar jobs on LinkedIn.
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
Photo
import java.util.*;
public class MaxBinaryPath {
static int N;
static String S;
static List<Integer>[] adj;
static boolean[] visited;
static String maxBinary = "";
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
N = sc.nextInt();
S = sc.next();
adj = new ArrayList[N + 1];
for (int i = 1; i <= N; i++) {
adj[i] = new ArrayList<>();
}
for (int i = 0; i < N - 1; i++) {
int u = sc.nextInt();
int v = sc.nextInt();
adj[u].add(v);
adj[v].add(u);
}
visited = new boolean[N + 1];
for (int i = 1; i <= N; i++) {
Arrays.fill(visited, false);
dfs(i, "");
}
int maxLength = N;
System.out.println(String.format("%" + maxLength + "s", maxBinary).replace(' ', '0'));
sc.close();
}
private static void dfs(int node, String path) {
visited[node] = true;
path += S.charAt(node - 1);
if (path.length() == N && path.compareTo(maxBinary) > 0) {
maxBinary = path;
} else if (path.length() > N) {
if (path.substring(0, N).compareTo(maxBinary) > 0) {
maxBinary = path.substring(0, N);
}
}
for (int neighbor : adj[node]) {
if (!visited[neighbor]) {
dfs(neighbor, path);
}
}
visited[node] = false;
}
}
public class MaxBinaryPath {
static int N;
static String S;
static List<Integer>[] adj;
static boolean[] visited;
static String maxBinary = "";
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
N = sc.nextInt();
S = sc.next();
adj = new ArrayList[N + 1];
for (int i = 1; i <= N; i++) {
adj[i] = new ArrayList<>();
}
for (int i = 0; i < N - 1; i++) {
int u = sc.nextInt();
int v = sc.nextInt();
adj[u].add(v);
adj[v].add(u);
}
visited = new boolean[N + 1];
for (int i = 1; i <= N; i++) {
Arrays.fill(visited, false);
dfs(i, "");
}
int maxLength = N;
System.out.println(String.format("%" + maxLength + "s", maxBinary).replace(' ', '0'));
sc.close();
}
private static void dfs(int node, String path) {
visited[node] = true;
path += S.charAt(node - 1);
if (path.length() == N && path.compareTo(maxBinary) > 0) {
maxBinary = path;
} else if (path.length() > N) {
if (path.substring(0, N).compareTo(maxBinary) > 0) {
maxBinary = path.substring(0, N);
}
}
for (int neighbor : adj[node]) {
if (!visited[neighbor]) {
dfs(neighbor, path);
}
}
visited[node] = false;
}
}
๐3
#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;
int solution(vector<int> &A, vector<int> &B) {
int N = A.size();
vector<vector<int>> dp(2, vector<int>(N, 0));
dp[0][0] = A[0];
dp[1][0] = max(A[0], B[0]);
for (int j = 1; j < N; ++j) {
dp[0][j] = max(dp[0][j - 1], A[j]);
dp[1][j] = min(max(dp[0][j], B[j]), max(dp[1][j - 1], B[j]));
}
return dp[1][N - 1];
} /// MS TASK 2
#include <iostream>
#include <algorithm>
using namespace std;
int solution(vector<int> &A, vector<int> &B) {
int N = A.size();
vector<vector<int>> dp(2, vector<int>(N, 0));
dp[0][0] = A[0];
dp[1][0] = max(A[0], B[0]);
for (int j = 1; j < N; ++j) {
dp[0][j] = max(dp[0][j - 1], A[j]);
dp[1][j] = min(max(dp[0][j], B[j]), max(dp[1][j - 1], B[j]));
}
return dp[1][N - 1];
} /// MS TASK 2
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
PayGlocal is hiring for Junior Software Developer (0-2 years)
Expected Salary: 8-14 LPA
Apply here:
https://linkedin.com/jobs/view/3980168944/
Expected Salary: 8-14 LPA
Apply here:
https://linkedin.com/jobs/view/3980168944/
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Accenture Hiring Tester โค
Experience : 0 to 2 years
Link to apply ๐
https://www.accenture.com/in-en/careers/jobdetails?id=ATCI-4366344-S1689605_en&SRC=RECNau
Experience : 0 to 2 years
Link to apply ๐
https://www.accenture.com/in-en/careers/jobdetails?id=ATCI-4366344-S1689605_en&SRC=RECNau
Accenture
Search Jobs
Search for Accenture jobs and find open positions near you. Learn more about our career opportunities and open job positions to find your fit.
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Magna Hiring Data Engineer ๐
Here's the link ๐
https://jobs.magna.com/job/Bangalore-Date-Engineer/582228917/
Here's the link ๐
https://jobs.magna.com/job/Bangalore-Date-Engineer/582228917/
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company: Sideshift.ai
Location: N/A
Role: Junior Backend Engineer
For Graduates: 2023, 2024
https://applicantai.com/sideshift/junior-backend-engineer/8?ref=web3.career#apply
Location: N/A
Role: Junior Backend Engineer
For Graduates: 2023, 2024
https://applicantai.com/sideshift/junior-backend-engineer/8?ref=web3.career#apply
Applicant AI
Careers at SideShift.ai (2 New Jobs)
There are 2 jobs at SideShift.ai: Finance & Accounts Manager and BD & Sales Lead. Join SideShift.ai. ๐ The No Sign-Up Crypto Exchange // Shift BTC, ETH, BCH, SOL, XAI and 100+ other cryptocurrencies, no account required.
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Apply At OpenGig
SDE Intern - NextJs / NodeJs
Stipend : 20 - 30k fixed
Location : Remote
Form : https://forms.gle/gs8DcYtBjQg8PP6L6
SDE Intern - NextJs / NodeJs
Stipend : 20 - 30k fixed
Location : Remote
Form : https://forms.gle/gs8DcYtBjQg8PP6L6
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Deloitte hiring Interns
Eligibility : Any Stream / Any Graduate
https://www.linkedin.com/jobs/view/3980132277
Eligibility : Any Stream / Any Graduate
https://www.linkedin.com/jobs/view/3980132277
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Kyndryl is hiring for Application Developer
Bangalore Location
Partically Remote
Bachelors degree required
Apply Fast , this job is posted today !
https://kyndryl.wd5.myworkdayjobs.com/KyndrylProfessionalCareers/job/Bangalore-Karnataka-India/Application-Developer_R-19516-1?source=REC_APPLICANT_SOURCE_LinkedIn
Bangalore Location
Partically Remote
Bachelors degree required
Apply Fast , this job is posted today !
https://kyndryl.wd5.myworkdayjobs.com/KyndrylProfessionalCareers/job/Bangalore-Karnataka-India/Application-Developer_R-19516-1?source=REC_APPLICANT_SOURCE_LinkedIn
Myworkdayjobs
Application Developer
Who We Are At Kyndryl, we design, build, manage and modernize the mission-critical technology systems that the world depends on every day. So why work at Kyndryl? We are always moving forward โ always pushing ourselves to go further in our efforts to buildโฆ
๐2
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Align Technology is hiring for Software Engineer Intern
Expected Stipend: 3-6 LPA
Apply here:
https://americas-aligntech.icims.com/jobs/40617/job?mobile=false&width=1070&height=500&bga=true&needsRedirect=false&jan1offset=330&jun1offset=330
Expected Stipend: 3-6 LPA
Apply here:
https://americas-aligntech.icims.com/jobs/40617/job?mobile=false&width=1070&height=500&bga=true&needsRedirect=false&jan1offset=330&jun1offset=330
Global | English (Excluding US & EMEA)
Software Engineer Intern in Hyderabad, Telangana | Careers at APAC-India-IT Delivery Center Hyderabad
Join a team that is changing millions of lives.
Transforming smiles, changing lives.
At Align Technology, we believe a great smile can transform a personโs life, so we create technology that gives people the confidence to take on whateverโsโฆ
๐2
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Toolyt is hiring for Front-end Developer
Expected Salary: 15K-50K per month
Apply here:
https://careers.toolyt.com/front-end-developer-19350/
Expected Salary: 15K-50K per month
Apply here:
https://careers.toolyt.com/front-end-developer-19350/