Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Kirana Club is hiring Product Analyst
For 2023/2022/2021 Grads
Apply: https://docs.google.com/forms/d/e/1FAIpQLSfDHhEgphm6bqQI7U6dYUSYQXgGhn_Uiu0K0408ZjQbNftAUA/viewform
For 2023/2022/2021 Grads
Apply: https://docs.google.com/forms/d/e/1FAIpQLSfDHhEgphm6bqQI7U6dYUSYQXgGhn_Uiu0K0408ZjQbNftAUA/viewform
int bits(int a)
{
int z=0;
while(a)
{
z=z+(a%2);
a=a/2;
}
return z;
}
long count(vector<int>a,int k)
{
int i=0;
long z=0;
vector<int>u;
for(int i=0;i<a.size();i++)
{
u.push_back(bits(a[i]));
}
int j=u.size()-1;
while(j>i)
{
if(k>u[i]+u[j])
{
i++;
}
else
{
z=z+((long long)j-i);
j--;
}
}
return z;
}
Bits in Archie โ
Zscaler
{
int z=0;
while(a)
{
z=z+(a%2);
a=a/2;
}
return z;
}
long count(vector<int>a,int k)
{
int i=0;
long z=0;
vector<int>u;
for(int i=0;i<a.size();i++)
{
u.push_back(bits(a[i]));
}
int j=u.size()-1;
while(j>i)
{
if(k>u[i]+u[j])
{
i++;
}
else
{
z=z+((long long)j-i);
j--;
}
}
return z;
}
Bits in Archie โ
Zscaler
๐1
vector<int> par, sz;
int find(int u){
if(u==par[u])
return u;
return par[u] = find(par[u]);
}
void dsu(int a, int b){
a = find(a);
b = find(b);
if(a!=b){
if(sz[a]<sz[b])
swap(a, b);
sz[a] += sz[b];
par[b] = a;
}
}
vector<int> getVisibleProfilesCount(int connection_nodes, vector<int> conncection_from, vector<int> connection_to, vector<int> queries){
par = vector<int>(connection_nodes+1);
sz = vector<int>(connection_nodes+1, 1);
for(int i=1;i<=connection_nodes;i++){
par[i]=i;
}
for(int i=0;i<conncection_from.size();i++){
find(i);
}
vector<int> ans(queries.size());
for(int i=0;i<queries.size();i++){
ans[i]=sz[par[queries[i]]];
}
return ans;
}
Social Connection โ
Zscaler
int find(int u){
if(u==par[u])
return u;
return par[u] = find(par[u]);
}
void dsu(int a, int b){
a = find(a);
b = find(b);
if(a!=b){
if(sz[a]<sz[b])
swap(a, b);
sz[a] += sz[b];
par[b] = a;
}
}
vector<int> getVisibleProfilesCount(int connection_nodes, vector<int> conncection_from, vector<int> connection_to, vector<int> queries){
par = vector<int>(connection_nodes+1);
sz = vector<int>(connection_nodes+1, 1);
for(int i=1;i<=connection_nodes;i++){
par[i]=i;
}
for(int i=0;i<conncection_from.size();i++){
find(i);
}
vector<int> ans(queries.size());
for(int i=0;i<queries.size();i++){
ans[i]=sz[par[queries[i]]];
}
return ans;
}
Social Connection โ
Zscaler
Anyone give Linkedin OA exam
๐1
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Wenger & Watson is hiring MBA freshers
Education : MBA(HR)
Role : Management Trainee
Passing year : 2021, 2022 and 2023 batch
Location : Bangalore
โข Excellent Communication
โข Immediate joiner
Interested candidates can send their resumes to hannan.sameed@wengerwatson.com
Education : MBA(HR)
Role : Management Trainee
Passing year : 2021, 2022 and 2023 batch
Location : Bangalore
โข Excellent Communication
โข Immediate joiner
Interested candidates can send their resumes to hannan.sameed@wengerwatson.com
๐๐ฆ ๐๐น๐ด๐ผ ๐ป ๐ ใ๐๐ผ๐บ๐ฝ๐ฒ๐๐ถ๐๐ถ๐๐ฒ ๐ฃ๐ฟ๐ผ๐ด๐ฟ๐ฎ๐บ๐บ๐ถ๐ป๐ดใ
Photo
import java.util.Scanner;
public class Solution {
public static int countSundays(int startYear, int endYear) {
int answer = 0;
int day = 1;
for (int year = 1900; year < startYear; year++) {
for (int month = 1; month <= 12; month++) {
day = (day + daysInMonth(month, year)) % 7;
}
}
for (int year = startYear; year <= endYear; year++) {
for (int month = 1; month <= 12; month++) {
if (day == 0) {
answer++;
}
day = (day + daysInMonth(month, year)) % 7;
}
}
return answer;
}
private static int daysInMonth(int month, int year) {
switch (month) {
case 4:
case 6:
case 9:
case 11:
return 30;
case 2:
if (isLeapYear(year)) {
return 29;
} else {
return 28;
}
default:
return 31;
}
}
private static boolean isLeapYear(int year) {
if (year % 4 != 0) {
return false;
} else if (year % 100 != 0) {
return true;
} else if (year % 400 != 0) {
return false;
} else {
return true;
}
}
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
int startYear = in.nextInt();
int endYear = in.nextInt();
int result = countSundays(startYear, endYear);
System.out.print(result);
}
}
Well fargo |javaโ
public class Solution {
public static int countSundays(int startYear, int endYear) {
int answer = 0;
int day = 1;
for (int year = 1900; year < startYear; year++) {
for (int month = 1; month <= 12; month++) {
day = (day + daysInMonth(month, year)) % 7;
}
}
for (int year = startYear; year <= endYear; year++) {
for (int month = 1; month <= 12; month++) {
if (day == 0) {
answer++;
}
day = (day + daysInMonth(month, year)) % 7;
}
}
return answer;
}
private static int daysInMonth(int month, int year) {
switch (month) {
case 4:
case 6:
case 9:
case 11:
return 30;
case 2:
if (isLeapYear(year)) {
return 29;
} else {
return 28;
}
default:
return 31;
}
}
private static boolean isLeapYear(int year) {
if (year % 4 != 0) {
return false;
} else if (year % 100 != 0) {
return true;
} else if (year % 400 != 0) {
return false;
} else {
return true;
}
}
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
int startYear = in.nextInt();
int endYear = in.nextInt();
int result = countSundays(startYear, endYear);
System.out.print(result);
}
}
Well fargo |javaโ
Scanner scanner = new Scanner(System.in);
int numOfProducts = scanner.nextInt();
int[] orders = new int[numOfProducts];
for (int i = 0; i < numOfProducts; i++) {
orders[i] = Math.abs(scanner.nextInt());
}
int disAmount = scanner.nextInt();
int count = 0;
for (int order : orders) {
if (disAmount % order == 0) {
count++;
}
}
System.out.println(count);
Wells Fargo Javaโ
int numOfProducts = scanner.nextInt();
int[] orders = new int[numOfProducts];
for (int i = 0; i < numOfProducts; i++) {
orders[i] = Math.abs(scanner.nextInt());
}
int disAmount = scanner.nextInt();
int count = 0;
for (int order : orders) {
if (disAmount % order == 0) {
count++;
}
}
System.out.println(count);
Wells Fargo Javaโ
๐1
IBMโ
Python 3
Python 3
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Baker Hughes is Hiring !!
Role: Specialist - Software Engineering- Fresher
Batch: 2023, 2022
Expected CTC: 8-15 Lpa
Location: Mumbai
Apply Now: https://unstop.com/jobs/specialist-software-engineering-baker-hughes-759124
Role: Specialist - Software Engineering- Fresher
Batch: 2023, 2022
Expected CTC: 8-15 Lpa
Location: Mumbai
Apply Now: https://unstop.com/jobs/specialist-software-engineering-baker-hughes-759124
Unstop
Specialist - Software Engineering by Baker Hughes! | 2023 // Unstop
Specialist - Software Engineering a jobs by Baker Hughes open to Engineering Students Apply online before 2023-09-27 23:59:00! | 2023
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Pagoda is Hiring !!
Role: Full-Stack Software Engineer
Batch: 2024, 2023, 2022
CTC: $148,750 - $195,000
Location: Remote - North America, South America
Apply here- https://boards.greenhouse.io/pagoda/jobs/6888659002?gh_jid=6888659002&gh_src=2c6c34b02us
Role: Full-Stack Software Engineer
Batch: 2024, 2023, 2022
CTC: $148,750 - $195,000
Location: Remote - North America, South America
Apply here- https://boards.greenhouse.io/pagoda/jobs/6888659002?gh_jid=6888659002&gh_src=2c6c34b02us
boards.greenhouse.io
Senior Search Engineer, Data Platform
Remote - North America, South America
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
โ๏ธNorlox Solutions Off Campus Freshers Recruitment As Candidate Counsellor | 40K/Mโ๏ธ
๐จโ๐ปJob Role : US Candidate Counsellor
๐Qualification : Any Graduate
๐Experience : Fresher
๐ฐSalary : Up To 40K/M
โญ๏ธ Apply Fast :
https://www.norloxsolutions.com/career/
๐จโ๐ปJob Role : US Candidate Counsellor
๐Qualification : Any Graduate
๐Experience : Fresher
๐ฐSalary : Up To 40K/M
โญ๏ธ Apply Fast :
https://www.norloxsolutions.com/career/
Norlox Solutions
Career - Norlox Solutions
Drop Us Your Details Current Openings US Candidate Counsellor Designation โ US Candidate Counsellor Educational Qualification โ Minimum Bachelorโs Degree in any discipline (Preferred) Experience โ Fresher, 1 to 2 years in Sales & Marketing (Preferred) Shiftโฆ
Anyone Give Samsung exam OA