π―Tech Mahindra off Campus Hiring As Associate Software Engineer | Rs.3.25 LPA & 5.5LPA
Designation : Associate Software Engineer
Eligibility : Engineering / MCA
Salary CTC : Rs.3.25 LPA & 5.5LPA (for super coders)
Apply Now:-
https://registration.techmahindra.com/Candidate/RegDefault.aspx
Telegram:- @allcoding1_official
Designation : Associate Software Engineer
Eligibility : Engineering / MCA
Salary CTC : Rs.3.25 LPA & 5.5LPA (for super coders)
Apply Now:-
https://registration.techmahindra.com/Candidate/RegDefault.aspx
Telegram:- @allcoding1_official
π5π1
π―HSBC Recruitment 2024 For Data Analyst
Location: Bangalore
Qualification: Bachelorβs / Masterβs Degree
Work Experience: Freshers / Experience
Apply now:-
https://mycareer.hsbc.com/en_GB/external/PipelineDetail/Analyst-Data-Governance-GSC-S/216031?source=jobscoupe.com
Telegram:- @allcoding1_official
Location: Bangalore
Qualification: Bachelorβs / Masterβs Degree
Work Experience: Freshers / Experience
Apply now:-
https://mycareer.hsbc.com/en_GB/external/PipelineDetail/Analyst-Data-Governance-GSC-S/216031?source=jobscoupe.com
Telegram:- @allcoding1_official
π2
π―ICICI Bank Recruitment 2024 For Phone Banking Officer
Location: Chennai / Hyderabad / Thane / Guwahati / Indore
Qualification: Any Graduate
Work Experience : 0 β 6 Years
Apply Now:-
https://www.icicicareers.com/website/Jobs/Hot-Jobs/2031018.html?utm_source=jobscoupe.com
Telegram:- @allcoding1_official
Location: Chennai / Hyderabad / Thane / Guwahati / Indore
Qualification: Any Graduate
Work Experience : 0 β 6 Years
Apply Now:-
https://www.icicicareers.com/website/Jobs/Hot-Jobs/2031018.html?utm_source=jobscoupe.com
Telegram:- @allcoding1_official
π3
π―Philips is Hiring
Role: Intern
Batch: 2024, 2025
Apply Now:-
https://philips.wd3.myworkdayjobs.com/jobs-and-careers/job/Bangalore/Intern_504512/
Telegram:- @allcoding1_official
Role: Intern
Batch: 2024, 2025
Apply Now:-
https://philips.wd3.myworkdayjobs.com/jobs-and-careers/job/Bangalore/Intern_504512/
Telegram:- @allcoding1_official
π3
π―L&T Technology Mega off Campus Hiring For Multiple Roles | Rs 4-6 LPA
Job Title : Multiple Roles
Qualification : B.E/B.Tech
Salary : 4-6 LPA*
Apply Now:-
https://forms.office.com/pages/responsepage.aspx?id=eDMbMYqOXkujP-gKPYumCl54ACWF32ZNsqKK3NlTPy1UM1lOUTA5NUE0UzRGWEdUMVhIUE80QVc0Vi4u
Telegram:- @allcoding1
Job Title : Multiple Roles
Qualification : B.E/B.Tech
Salary : 4-6 LPA*
Apply Now:-
https://forms.office.com/pages/responsepage.aspx?id=eDMbMYqOXkujP-gKPYumCl54ACWF32ZNsqKK3NlTPy1UM1lOUTA5NUE0UzRGWEdUMVhIUE80QVc0Vi4u
Telegram:- @allcoding1
π4
Guysβ€
π I am doing promotions (real Or fake) I don't know
πI'm not forcing you. Your decision
πI am not a responsible to you
π I need money that why I'm doing promotions try understand
π I am doing promotions (real Or fake) I don't know
πI'm not forcing you. Your decision
πI am not a responsible to you
π I need money that why I'm doing promotions try understand
π12π4β€1
π―Thryve Digital Off Campus Drive Hiring Any Graduate Freshers
Job Role Trainee β Process Analyst
Qualification Any degree
Experience Freshers
Job Location Chennai
CTC 3-5 LPA
Apply Now:- www.allcoding1.com
Telegram:- @allcoding1_official
Job Role Trainee β Process Analyst
Qualification Any degree
Experience Freshers
Job Location Chennai
CTC 3-5 LPA
Apply Now:- www.allcoding1.com
Telegram:- @allcoding1_official
π1
π―Thryve Digital Off Campus Drive Hiring Any Graduate Freshers
Job Role Trainee β Process Analyst
Qualification Any degree
Experience Freshers
Job Location Chennai
CTC 3-5 LPA
Apply Now:- www.allcoding1.com
Telegram:- @allcoding1_official
Job Role Trainee β Process Analyst
Qualification Any degree
Experience Freshers
Job Location Chennai
CTC 3-5 LPA
Apply Now:- www.allcoding1.com
Telegram:- @allcoding1_official
π5π1
class Solution {
public:
int minOperations(vector<int>& nums, int x, int y) {
int l = 0;
int r = ranges::max(nums);
while (l < r) {
const int m = (l + r) / 2;
if (isPossible(nums, x, y, m))
r = m;
else
l = m + 1;
}
return l;
}
private:
bool isPossible(const vector<int>& nums, int x, int y, int m) {
long long additionalOps = 0;
for (const int num : nums)
additionalOps += max(0LL, (num - 1LL * y * m + x - y - 1) / (x - y));
return additionalOps <= m;
}
};
Job Execution β
Telegram:- @allcoding1_official
public:
int minOperations(vector<int>& nums, int x, int y) {
int l = 0;
int r = ranges::max(nums);
while (l < r) {
const int m = (l + r) / 2;
if (isPossible(nums, x, y, m))
r = m;
else
l = m + 1;
}
return l;
}
private:
bool isPossible(const vector<int>& nums, int x, int y, int m) {
long long additionalOps = 0;
for (const int num : nums)
additionalOps += max(0LL, (num - 1LL * y * m + x - y - 1) / (x - y));
return additionalOps <= m;
}
};
Job Execution β
Telegram:- @allcoding1_official
π7β€1
#include<bits/stdc++.h>
using namespace std;
int main(){
int n,m;
cin>>n>>m;
vector<int>ans(n);
if(n<=m){
for(int i=0;i<n;i++){
ans[i]=i+1;
}
}
else{
int k=n/m;
// int r=n%m;
int j=0;
for(int i=0;i<n;i++){
ans[i]=j+1;
j++;
j%=m;
}
}
for(int i=0;i<n;i++){
cout<<ans[i]<<" ";
}
cout<<endl;
}
King Dreams β
Intuit
Telegram:- @allcoding1_official
using namespace std;
int main(){
int n,m;
cin>>n>>m;
vector<int>ans(n);
if(n<=m){
for(int i=0;i<n;i++){
ans[i]=i+1;
}
}
else{
int k=n/m;
// int r=n%m;
int j=0;
for(int i=0;i<n;i++){
ans[i]=j+1;
j++;
j%=m;
}
}
for(int i=0;i<n;i++){
cout<<ans[i]<<" ";
}
cout<<endl;
}
King Dreams β
Intuit
Telegram:- @allcoding1_official
π8β€1
allcoding1_official
Photo
#include <iostream>
#include <cmath>
struct Circle {
double x; // x-coordinate of the center
double y; // y-coordinate of the center
double r; // radius
};
double distanceBetweenCenters(Circle A, Circle B) {
return sqrt(pow((B.x - A.x), 2) + pow((B.y - A.y), 2));
}
int main() {
Circle A, B;
// Example values
A.x = 0;
A.y = 0;
A.r = 5;
B.x = 10;
B.y = 0;
B.r = 7;
double distance = distanceBetweenCenters(A, B);
double sumOfRadii = A.r + B.r;
double differenceOfRadii = abs(A.r - B.r);
if (distance == sumOfRadii) {
std::cout << "The circles are touching at a single point." << std::endl;
} else if (distance < sumOfRadii) {
std::cout << "The circles are intersecting." << std::endl;
} else if (distance == differenceOfRadii) {
std::cout << "The circles are touching from within or without." << std::endl;
} else {
std::cout << "The circles are not intersecting." << std::endl;
}
if ((A.x == B.x) && (A.y == B.y) && (A.r == B.r)) {
std::cout << "The circles are concentric." << std::endl;
}
return 0;
}
C++
Telegram:- @allcoding1_official
#include <cmath>
struct Circle {
double x; // x-coordinate of the center
double y; // y-coordinate of the center
double r; // radius
};
double distanceBetweenCenters(Circle A, Circle B) {
return sqrt(pow((B.x - A.x), 2) + pow((B.y - A.y), 2));
}
int main() {
Circle A, B;
// Example values
A.x = 0;
A.y = 0;
A.r = 5;
B.x = 10;
B.y = 0;
B.r = 7;
double distance = distanceBetweenCenters(A, B);
double sumOfRadii = A.r + B.r;
double differenceOfRadii = abs(A.r - B.r);
if (distance == sumOfRadii) {
std::cout << "The circles are touching at a single point." << std::endl;
} else if (distance < sumOfRadii) {
std::cout << "The circles are intersecting." << std::endl;
} else if (distance == differenceOfRadii) {
std::cout << "The circles are touching from within or without." << std::endl;
} else {
std::cout << "The circles are not intersecting." << std::endl;
}
if ((A.x == B.x) && (A.y == B.y) && (A.r == B.r)) {
std::cout << "The circles are concentric." << std::endl;
}
return 0;
}
C++
Telegram:- @allcoding1_official
π2
int min(string str){
unordered_map<char,int>mp;
for(char :str){
mp[ch]++;
}
unodered_set<int>d;
for(auto it:mp){
d.insert(it.second);
}
return d.size();
}
Music Teacher
Only 4 test cases pass
Telegram:- @allcoding1_official
unordered_map<char,int>mp;
for(char :str){
mp[ch]++;
}
unodered_set<int>d;
for(auto it:mp){
d.insert(it.second);
}
return d.size();
}
Music Teacher
Only 4 test cases pass
Telegram:- @allcoding1_official
π2