Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Weekday is hiring for SDE 1 (Frontend)
Salary: 14-20 LPA
Apply here:
https://linkedin.com/jobs/view/3908439353/
Salary: 14-20 LPA
Apply here:
https://linkedin.com/jobs/view/3908439353/
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Bahwan Cybertek | Mobile Developer | 2024, 2025 Grads | Expected Salary: 12-15 LPA
https://apply.workable.com/bahwan-cybertek-group/j/A83F554937/
https://apply.workable.com/bahwan-cybertek-group/j/A83F554937/
Workable
Fresher - Mobile development - Bahwan Cybertek Group
Dedication to innovative, sophisticated designs and collaborative problem-solvingExperience in planning and developing websites across multiple products and organizationsExtensive knowledge of web applications, programming languages, and web services โ...
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Nielsen | SDE | 0-3 YOE | 2024, 2023, 2022 Grads | Expected Salary: 15-18 LPA
https://jobs.lever.co/nielsen/404e47c7-d90d-4442-a526-ddb35eac556f/
https://jobs.lever.co/nielsen/404e47c7-d90d-4442-a526-ddb35eac556f/
jobs.lever.co
Nielsen - Backend Engineer (.Net/Java/Python)
About the role Your primary objective is to ensure project goals are achieved and are aligned with business objectives. You will also work closely with your Scrum team and program team to test, develop, refine and implement quality software in productionโฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Rapyuta Robotics | SDE | 2024, 2023 Grads | Expected Salary: 12-15LPA
https://apply.workable.com/rapyuta-robotics/j/F875F6F186/
https://apply.workable.com/rapyuta-robotics/j/F875F6F186/
Workable
Rapyuta Robotics
Rapyuta Robotics is a global technology company and ETH Zurich spin-off that is pioneering the domain of Cloud Robotics with the core purpose, "empowering lives with connected machines"
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐Keysight is hiring for Intern Tech I
Expected Stipend: 20k - 35k per month
๐Apply here:
https://jobs.keysight.com/careers-home/jobs/26980/job
Expected Stipend: 20k - 35k per month
๐Apply here:
https://jobs.keysight.com/careers-home/jobs/26980/job
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐HARMAN is hiring for INTERN, DEVOPS
Stipend: 15K-30K per month
๐Apply here:
https://jobs.harman.com/en_US/careers/JobDetail/Intern-DevOps/20078
Stipend: 15K-30K per month
๐Apply here:
https://jobs.harman.com/en_US/careers/JobDetail/Intern-DevOps/20078
Harman
Intern, DevOps
def is_prime(n):
if n <= 1:
return False
if n <= 3:
return True
if n % 2 == 0 or n % 3 == 0:
return False
i = 5
while i * i <= n:
if n % i == 0 or n % (i + 2) == 0:
return False
i += 6
return True
def is_googly(n):
digit_sum = sum(int(digit) for digit in str(n))
if is_prime(digit_sum):
return "GOOGLY"
else:
return "NOT GOOGLY"
N = int(input())
print(is_googly(N))
Googly Number โ
if n <= 1:
return False
if n <= 3:
return True
if n % 2 == 0 or n % 3 == 0:
return False
i = 5
while i * i <= n:
if n % i == 0 or n % (i + 2) == 0:
return False
i += 6
return True
def is_googly(n):
digit_sum = sum(int(digit) for digit in str(n))
if is_prime(digit_sum):
return "GOOGLY"
else:
return "NOT GOOGLY"
N = int(input())
print(is_googly(N))
Googly Number โ
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
from itertools import combinations n=int(input()) a=list(map(int,input().split())) res=0 if n>1: for i in combinations(a,2): if sum(i)%60==0: res+=1 if res! =0: print(res%((10**9)+7)) if res==0 or n<2: print("NO HOURS") Hoursโฆ
#include<stdio.h>
#include<stdlib.h>
#define MOD 1000000007
int compare(const void *a, const void *b) {
return (*(int*)a - *(int*)b);
}
int main() {
int N;
scanf("%d", &N);
if (N <= 1) {
printf("NO HOURS\n");
return 0;
}
int *A = (int*)malloc(N * sizeof(int));
for (int i = 0; i < N; i++) {
scanf("%d", &A[i]);
}
qsort(A, N, sizeof(int), compare);
int count = 0;
for (int i = 0; i < N - 1; i++) {
for (int j = i + 1; j < N; j++) {
if ((A[i] + A[j]) % 60 == 0) {
count = (count + 1) % MOD;
}
}
}
if (count > 0) {
printf("%d\n", count);
} else {
printf("NO HOURS\n");
}
free(A);
return 0;
}
Hours Count โ
#include<stdlib.h>
#define MOD 1000000007
int compare(const void *a, const void *b) {
return (*(int*)a - *(int*)b);
}
int main() {
int N;
scanf("%d", &N);
if (N <= 1) {
printf("NO HOURS\n");
return 0;
}
int *A = (int*)malloc(N * sizeof(int));
for (int i = 0; i < N; i++) {
scanf("%d", &A[i]);
}
qsort(A, N, sizeof(int), compare);
int count = 0;
for (int i = 0; i < N - 1; i++) {
for (int j = i + 1; j < N; j++) {
if ((A[i] + A[j]) % 60 == 0) {
count = (count + 1) % MOD;
}
}
}
if (count > 0) {
printf("%d\n", count);
} else {
printf("NO HOURS\n");
}
free(A);
return 0;
}
Hours Count โ
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
from itertools import combinations n=int(input()) a=list(map(int,input().split())) res=0 if n>1: for i in combinations(a,2): if sum(i)%60==0: res+=1 if res! =0: print(res%((10**9)+7)) if res==0 or n<2: print("NO HOURS") Hoursโฆ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
NetApp is hiring SDE for 2024, 2023, 2022 grads
https://careers.netapp.com/job/bengaluru/software-engineer/27600/64077230112
https://careers.netapp.com/job/bengaluru/software-engineer/27600/64077230112
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
โ๏ธRigel Off Campus Drive 2024 Hiring As Trainee/Associate Software Engineer | โน 3-5 LPAโ๏ธ
๐จโ๐ปJob Role : Trainee/Associate Software Engineer
๐Qualification : B.E/B.Tech
๐Job Location : Vadodara
๐ฐPackage : 4 LPA*
โญ๏ธ Apply Fast : https://careers.rigelnetworks.com/jobs/Careers/619031000011468148/Trainee-Associate-Software-Engineer---Quant-Applications?source=CareerSite
๐จโ๐ปJob Role : Trainee/Associate Software Engineer
๐Qualification : B.E/B.Tech
๐Job Location : Vadodara
๐ฐPackage : 4 LPA*
โญ๏ธ Apply Fast : https://careers.rigelnetworks.com/jobs/Careers/619031000011468148/Trainee-Associate-Software-Engineer---Quant-Applications?source=CareerSite
Surprise Debate โ
SELECT train_name
FROM train_details_tbl
WHERE train_type IN (SELECT train_type
FROM train_type_tbl
WHERE type_description = 'LUXURY');
Epam โ
Birthday in charge
Birthday in charge