Anyone give exam Microsoft OA Send Question here I will help
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐๐จ๐ฆ๐ฉ๐๐ง๐ฒ ๐๐๐ฆ๐: Microsoft
๐๐จ๐ฅ๐: SDE Intern
๐๐๐ญ๐๐ก ๐๐ฅ๐ข๐ ๐ข๐๐ฅ๐: 2024 grads
๐๐ฉ๐ฉ๐ฅ๐ฒ: https://jobs.careers.microsoft.com/us/en/job/1577325/Software-Engineering---Internship-Opportunities?jobsource=linkedin
๐๐จ๐ฅ๐: SDE Intern
๐๐๐ญ๐๐ก ๐๐ฅ๐ข๐ ๐ข๐๐ฅ๐: 2024 grads
๐๐ฉ๐ฉ๐ฅ๐ฒ: https://jobs.careers.microsoft.com/us/en/job/1577325/Software-Engineering---Internship-Opportunities?jobsource=linkedin
๐1
int solution(vector<int> A){
int n = A.size() >> 1;
vector<int> dp(n, 1);
for(int i=1; i<n; i++)
for(int j=i-1; j>=0; j--)
if(A[i<<1] == A[j<<1|1])
dp[j] = max(dp[j], dp[i] + 1);
return n - *max_element(dp.begin(), dp.end());
}
Microsoft Domioes Solution
C++โ
int n = A.size() >> 1;
vector<int> dp(n, 1);
for(int i=1; i<n; i++)
for(int j=i-1; j>=0; j--)
if(A[i<<1] == A[j<<1|1])
dp[j] = max(dp[j], dp[i] + 1);
return n - *max_element(dp.begin(), dp.end());
}
Microsoft Domioes Solution
C++โ
#include <bits/stdc++.h>
using namespace std;
#define pb push_back
#define F first
#define S second
#define int long long
#define ll long long
#define ull unsigned long long
#define ld long double
#define pii pair<int,int>
#define vi vector<int>
#define vii vector<pii>
#define vc vector
#define L cout<<'\n';
#define E cerr<<'\n';
#define all(x) x.begin(),x.end()
#define rep(i,a,b) for (int i=a; i<b; ++i)
#define rev(i,a,b) for (int i=a-1; i>=b; --i)
#define IOS ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
#define setpr(x) cout<<setprecision(x)<<fixed
#define sz size()
#define seea(a,x,y) for(int i=x;i<y;i++){cin>>a[i];}
#define seev(v,n) for(int i=0;i<n;i++){int x; cin>>x; v.push_back(x);}
#define sees(s,n) for(int i=0;i<n;i++){int x; cin>>x; s.insert(x);}
const ll inf = INT_MAX;
const ld ep = 0.0000001;
const ld pi = acos(-1.0);
const ll mod = 1000000007;
int dp[1001][1001];
bool rem(ll a , ll b){return a%b;}
void init_code(){
#ifndef ONLINE_JUDGE
freopen("input.txt", "r", stdin);
freopen("output.txt", "w", stdout);
#endif
}
ll add(ll x, ll y){
return (x+y)%mod;
}
ll multi(ll x , ll y){
return (x*y)%mod;
}
ll power(ll x , ll y){
x %= mod;
ll res = 1;
while(y > 0){
if(y&1)res=multi(res,x);
y=y>>1;
x = multi(x,x);
}
return res;
}
ll inverse(ll n,ll p){
return power(n,p-2);
}
int helper(unordered_map<int,vector<int>>&mp, vi &v,int ind,int prev){
if(ind==v.size()) return 1;
// cout<<ans
if(dp[ind][prev]!=-1) return dp[ind][prev];
int ans=0;
for(auto it:mp[v[ind]]){
if(it>prev)ans+=helper(mp,v,ind+1,it);
ans%=mod;
}
return dp[ind][prev]=ans;
}
void solve(){
int n;
cin>>n;
vi v(n);
rep(i,0,n) cin>>v[i];
unordered_map<int,vector<int>>mp;
for(int i=1;i<=1000;i++){
string s=to_string(i);
int val=0;
for(auto it:s){
val+=it-'0';
}
mp[val].pb(i);
}
// vector<vector<int>>dp(1001,vector<int>(1001,-1));
memset(dp,-1,sizeof(dp));
cout<<helper(mp,v,0,0)<<endl;
}
signed main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
init_code();
int t;cin >> t;while(t--)
solve();
return 0;
}
Google โ
(C++)
using namespace std;
#define pb push_back
#define F first
#define S second
#define int long long
#define ll long long
#define ull unsigned long long
#define ld long double
#define pii pair<int,int>
#define vi vector<int>
#define vii vector<pii>
#define vc vector
#define L cout<<'\n';
#define E cerr<<'\n';
#define all(x) x.begin(),x.end()
#define rep(i,a,b) for (int i=a; i<b; ++i)
#define rev(i,a,b) for (int i=a-1; i>=b; --i)
#define IOS ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
#define setpr(x) cout<<setprecision(x)<<fixed
#define sz size()
#define seea(a,x,y) for(int i=x;i<y;i++){cin>>a[i];}
#define seev(v,n) for(int i=0;i<n;i++){int x; cin>>x; v.push_back(x);}
#define sees(s,n) for(int i=0;i<n;i++){int x; cin>>x; s.insert(x);}
const ll inf = INT_MAX;
const ld ep = 0.0000001;
const ld pi = acos(-1.0);
const ll mod = 1000000007;
int dp[1001][1001];
bool rem(ll a , ll b){return a%b;}
void init_code(){
#ifndef ONLINE_JUDGE
freopen("input.txt", "r", stdin);
freopen("output.txt", "w", stdout);
#endif
}
ll add(ll x, ll y){
return (x+y)%mod;
}
ll multi(ll x , ll y){
return (x*y)%mod;
}
ll power(ll x , ll y){
x %= mod;
ll res = 1;
while(y > 0){
if(y&1)res=multi(res,x);
y=y>>1;
x = multi(x,x);
}
return res;
}
ll inverse(ll n,ll p){
return power(n,p-2);
}
int helper(unordered_map<int,vector<int>>&mp, vi &v,int ind,int prev){
if(ind==v.size()) return 1;
// cout<<ans
if(dp[ind][prev]!=-1) return dp[ind][prev];
int ans=0;
for(auto it:mp[v[ind]]){
if(it>prev)ans+=helper(mp,v,ind+1,it);
ans%=mod;
}
return dp[ind][prev]=ans;
}
void solve(){
int n;
cin>>n;
vi v(n);
rep(i,0,n) cin>>v[i];
unordered_map<int,vector<int>>mp;
for(int i=1;i<=1000;i++){
string s=to_string(i);
int val=0;
for(auto it:s){
val+=it-'0';
}
mp[val].pb(i);
}
// vector<vector<int>>dp(1001,vector<int>(1001,-1));
memset(dp,-1,sizeof(dp));
cout<<helper(mp,v,0,0)<<endl;
}
signed main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
init_code();
int t;cin >> t;while(t--)
solve();
return 0;
}
Google โ
(C++)
int Find(vector<int> &v,int n){
vector<int> bit(32,0);
for(int i=0;i<n;i++)
for(int j=0;j<32;j++)
if( (v[i]>>j)&1 )
bit[j]++;
long long ans=0;
int M=1e9+7;
for(int i=0;i<n/2 ;i++){
long long val=0;
for(int j=0;j<32;j++){
if(bit[j]){
val=(val | (1<<j));
bit[j]--;
}
}
ans+=(val*val);
ans%=M;
}
return ans;
}
Sneaker shoppingโ
Sprinklr
vector<int> bit(32,0);
for(int i=0;i<n;i++)
for(int j=0;j<32;j++)
if( (v[i]>>j)&1 )
bit[j]++;
long long ans=0;
int M=1e9+7;
for(int i=0;i<n/2 ;i++){
long long val=0;
for(int j=0;j<32;j++){
if(bit[j]){
val=(val | (1<<j));
bit[j]--;
}
}
ans+=(val*val);
ans%=M;
}
return ans;
}
Sneaker shoppingโ
Sprinklr
Special subarrays
Sprinklr
Python 3โ
Sprinklr
Python 3โ
#include <bits/stdc++.h>
using namespace std;
int main()
{
int numTests;
cin >> numTests;
while(numTests--)
{
int length;
cin >> length;
string inputString;
cin >> inputString;
if (length % 3 == 1)
{
cout << "Yes\n";
continue;
}
bool flag = false;
for (char ch = 'a'; ch <= 'z'; ch++)
{
int firstIndex = length + 1, lastIndex = -1;
for (int i = 0; i < length; i++)
{
if (i % 3 == 0 && inputString[i] == ch)
{
firstIndex = i;
break;
}
}
for (int i = length - 1; i >= 0; i--)
{
int x = length - 1 - i;
if (x % 3 == 0 && inputString[i] == ch)
{
lastIndex = i;
break;
}
}
if (firstIndex < lastIndex)
{
flag = true;
break;
}
}
if (flag)
cout << "Yes\n";
else
cout << "No\n";
}
return 0;
}
Blast palindromeโ
using namespace std;
int main()
{
int numTests;
cin >> numTests;
while(numTests--)
{
int length;
cin >> length;
string inputString;
cin >> inputString;
if (length % 3 == 1)
{
cout << "Yes\n";
continue;
}
bool flag = false;
for (char ch = 'a'; ch <= 'z'; ch++)
{
int firstIndex = length + 1, lastIndex = -1;
for (int i = 0; i < length; i++)
{
if (i % 3 == 0 && inputString[i] == ch)
{
firstIndex = i;
break;
}
}
for (int i = length - 1; i >= 0; i--)
{
int x = length - 1 - i;
if (x % 3 == 0 && inputString[i] == ch)
{
lastIndex = i;
break;
}
}
if (firstIndex < lastIndex)
{
flag = true;
break;
}
}
if (flag)
cout << "Yes\n";
else
cout << "No\n";
}
return 0;
}
Blast palindromeโ
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: MRI Software
Role: Software Engineer 1
Batch eligible: 2023 grads only
Apply: https://mrisoftware.wd1.myworkdayjobs.com/External_CareerSite/job/Bangalore-India-Office/Senior-Software-Engineer---DotNet--_R-101758
Role: Software Engineer 1
Batch eligible: 2023 grads only
Apply: https://mrisoftware.wd1.myworkdayjobs.com/External_CareerSite/job/Bangalore-India-Office/Senior-Software-Engineer---DotNet--_R-101758
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐๐จ๐ฆ๐ฉ๐๐ง๐ฒ ๐๐๐ฆ๐: Tech Mahindra
๐๐จ๐ฅ๐: Software Engineer
๐๐๐ญ๐๐ก ๐๐ฅ๐ข๐ ๐ข๐๐ฅ๐: 2022 and 2023 grads
https://registration.techmahindra.com/Candidate/RegDefault.aspx
๐๐จ๐ฅ๐: Software Engineer
๐๐๐ญ๐๐ก ๐๐ฅ๐ข๐ ๐ข๐๐ฅ๐: 2022 and 2023 grads
https://registration.techmahindra.com/Candidate/RegDefault.aspx
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐๐จ๐ฆ๐ฉ๐๐ง๐ฒ ๐๐๐ฆ๐: Tata Technologies
๐๐จ๐ฅ๐: Graduate Engineer Trainee
๐๐๐ญ๐๐ก ๐๐ฅ๐ข๐ ๐ข๐๐ฅ๐: 2022 and 2023 grads
https://tatatechnologies.ripplehire.com/candidate/?token=QgyzX2q6P9i11ThUBhTZ&lang=en&ref=LI01#detail
๐๐จ๐ฅ๐: Graduate Engineer Trainee
๐๐๐ญ๐๐ก ๐๐ฅ๐ข๐ ๐ข๐๐ฅ๐: 2022 and 2023 grads
https://tatatechnologies.ripplehire.com/candidate/?token=QgyzX2q6P9i11ThUBhTZ&lang=en&ref=LI01#detail
Ripplehire
Tata Technologies Careers | Latest jobs at Tata Technologies - Ripplehire.com
Apply Now! This is a wonderful opportunity. Help your friends by sharing this role with them.
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Please find latest Opportunities from Career page and Apply before Expired before applying kindly follow jobs description and eligibility carefully
passout year: 2023, 2022, 2021, 2020, 2019, 2018
CapitalOne Hiring Associate Software Engineer
Qualification Tag : Engineering
Salary: 10lpa - 15lpa
Apply now: https://www.capitalonecareers.com/job/-/-/1732/51188481952
HPE Hiring Cloud Engineer
Qualification Tag : Engineering
Salary: 10lpa ( Expected)
Apply now: https://careers.hpe.com/us/en/job/1158683/Cloud-Engineer
Siemens Hiring Software Tester
Qualification Tag : Engineering
Salary: 7.5 lpa ( Expected)
Apply now: https://jobs.siemens.com/careers/job/563156116064691
Assa Abloy Hiring Software Engineer
Qualification Tag : Engineering
Salary: 4lpa - 6 lpa ( Expected)
Apply now: https://assaabloy.jobs2web.com/job/Associate-Software-Engineer/950550001/
Cognizant Hiring Junior Data Analyst
Qualification Tag : Engineering
Salary: 4.5 lpa
Apply now: https://careers.cognizant.com/in/en/job/COGNGLOBAL00043576146/Trainee-Junior-Data-Analyst
Zoho Hiring Software Engineer
Qualification Tag : Engineering
Apply now :
Salary: 8lpa ( Expected)
Apply now: https://www.zoho.com/careers/jobdetails/?job_id=2803000614929615
Cognizant Hiring Programmer Analyst
Qualification Tag : Engineering
Salary: 4.4 lpa ( Expected)
Apply now: https://careers.cognizant.com/global/en/job/00039714235/Programmer-Analyst-Trainee
TVS Next Hiring Software Engineer Trainee
Qualification Tag : Engineering
Apply now : https://learning.tcsionhub.in/jobs/TVS-NEXT-LIMITED/Software-Engineer--Trainee-6095/
Harris Computer Hiring Software Trainee
Qualification Tag : Engineering
Apply now: https://harriscomputer.wd3.myworkdayjobs.com/en-US/1/job/Office---Mumbai-Andheri/Software-Trainee_R0020106
Sony Hiring Junior Full Stack developer
Qualification Tag : Engineering
Apply now : https://sonyglobal.wd1.myworkdayjobs.com/en-US/SonyGlobalCareers/job/Bangalore/Jr-Fullstack-Developer_JR-113869-1
passout year: 2023, 2022, 2021, 2020, 2019, 2018
CapitalOne Hiring Associate Software Engineer
Qualification Tag : Engineering
Salary: 10lpa - 15lpa
Apply now: https://www.capitalonecareers.com/job/-/-/1732/51188481952
HPE Hiring Cloud Engineer
Qualification Tag : Engineering
Salary: 10lpa ( Expected)
Apply now: https://careers.hpe.com/us/en/job/1158683/Cloud-Engineer
Siemens Hiring Software Tester
Qualification Tag : Engineering
Salary: 7.5 lpa ( Expected)
Apply now: https://jobs.siemens.com/careers/job/563156116064691
Assa Abloy Hiring Software Engineer
Qualification Tag : Engineering
Salary: 4lpa - 6 lpa ( Expected)
Apply now: https://assaabloy.jobs2web.com/job/Associate-Software-Engineer/950550001/
Cognizant Hiring Junior Data Analyst
Qualification Tag : Engineering
Salary: 4.5 lpa
Apply now: https://careers.cognizant.com/in/en/job/COGNGLOBAL00043576146/Trainee-Junior-Data-Analyst
Zoho Hiring Software Engineer
Qualification Tag : Engineering
Apply now :
Salary: 8lpa ( Expected)
Apply now: https://www.zoho.com/careers/jobdetails/?job_id=2803000614929615
Cognizant Hiring Programmer Analyst
Qualification Tag : Engineering
Salary: 4.4 lpa ( Expected)
Apply now: https://careers.cognizant.com/global/en/job/00039714235/Programmer-Analyst-Trainee
TVS Next Hiring Software Engineer Trainee
Qualification Tag : Engineering
Apply now : https://learning.tcsionhub.in/jobs/TVS-NEXT-LIMITED/Software-Engineer--Trainee-6095/
Harris Computer Hiring Software Trainee
Qualification Tag : Engineering
Apply now: https://harriscomputer.wd3.myworkdayjobs.com/en-US/1/job/Office---Mumbai-Andheri/Software-Trainee_R0020106
Sony Hiring Junior Full Stack developer
Qualification Tag : Engineering
Apply now : https://sonyglobal.wd1.myworkdayjobs.com/en-US/SonyGlobalCareers/job/Bangalore/Jr-Fullstack-Developer_JR-113869-1
Capitalonecareers
Associate Software Engineering at Capital One
Learn more about applying for Associate Software Engineering at Capital One
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
๐๐จ๐ฆ๐ฉ๐๐ง๐ฒ ๐๐๐ฆ๐: uExcelerate
๐๐จ๐ฅ๐: Software Developer Internship
๐๐๐ญ๐๐ก ๐๐ฅ๐ข๐ ๐ข๐๐ฅ๐: 2023 grads and 2024 grads.
https://cuvette.tech/app/public/internship/64aeceb43688d28d245bf7e2?referralCode=Z21QGT
๐๐จ๐ฅ๐: Software Developer Internship
๐๐๐ญ๐๐ก ๐๐ฅ๐ข๐ ๐ข๐๐ฅ๐: 2023 grads and 2024 grads.
https://cuvette.tech/app/public/internship/64aeceb43688d28d245bf7e2?referralCode=Z21QGT
cuvette.tech
Software Developer Internship in uExcelerate at Hyderabad, Telangana, India | Cuvette
Apply For Software Developer Internship | Skills required are Angular, Javascript, NodeJs | Stipend โน10K-15K | Job Offer โน 3 LPA - 5 LPA | FULL-TIME INTERNSHIP | Location is Work from Home
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Company Name: ALLEN Digital
Role: Software Engineer 1
Batch eligible: 2022 and 2023 grads.
Apply: https://www.linkedin.com/jobs/view/3659354116
Role: Software Engineer 1
Batch eligible: 2022 and 2023 grads.
Apply: https://www.linkedin.com/jobs/view/3659354116
Linkedin
90,000+ Software Engineer jobs in India (1,327 new)
Todayโs top 90,000+ Software Engineer jobs in India. Leverage your professional network, and get hired. New Software Engineer jobs added daily.
Anyone exam DE Shaw OA on tomorrow ?
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Bosscoder is hiring for Software Engineers within our team.
Details:
- Work From Office in Noida
- Stipend of Rs. 4.8 LPA to 6 LPA
- Should have good knowledge of backend development & having project experience in the same
- Good problem-solving skills
Apply Link :
https://docs.google.com/forms/d/e/1FAIpQLScL3eHWd0zQ2KQzwW_LNaZPTNL9gYyyKDWw9V7R8hmL6O7IBg/viewform
Details:
- Work From Office in Noida
- Stipend of Rs. 4.8 LPA to 6 LPA
- Should have good knowledge of backend development & having project experience in the same
- Good problem-solving skills
Apply Link :
https://docs.google.com/forms/d/e/1FAIpQLScL3eHWd0zQ2KQzwW_LNaZPTNL9gYyyKDWw9V7R8hmL6O7IBg/viewform
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Google Hiring SDE Intern
Batch : 2025
https://www.google.com/about/careers/applications/jobs/results/131573075612181190-software-engineering-intern-summer-2024
Batch : 2025
https://www.google.com/about/careers/applications/jobs/results/131573075612181190-software-engineering-intern-summer-2024
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Konecranes hiring Fresher Trainee Software Engineer โ SAP MM/WM
Job Designation : Trainee Software Engineer โ SAP MM/WM
Qualification : Bachelorโs / Masterโs Degree
Experience : Freshers / 0 โ 1 year
Skill Set :
- Good communication and presentation skills.
- Must have at least basic SAP MM / WM knowledge.
- Should have excellent inter-personnel skills.
https://fresherdrives.com/it-jobs/konecranes-hiring-fresher-trainee-software-engineer-sap-mm-wm-2/
Job Designation : Trainee Software Engineer โ SAP MM/WM
Qualification : Bachelorโs / Masterโs Degree
Experience : Freshers / 0 โ 1 year
Skill Set :
- Good communication and presentation skills.
- Must have at least basic SAP MM / WM knowledge.
- Should have excellent inter-personnel skills.
https://fresherdrives.com/it-jobs/konecranes-hiring-fresher-trainee-software-engineer-sap-mm-wm-2/
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Companies : Genpact , LTI , Quess, Johnson & Johnson , Tech Mahindra
Event Name : Triumph Career Fair
Dates : 27-29th July 2023.
Eligibility : Females , LGBTQIA+, PwD allowed.
Link to register : https://bit.ly/TriumphCareerFair
Event Name : Triumph Career Fair
Dates : 27-29th July 2023.
Eligibility : Females , LGBTQIA+, PwD allowed.
Link to register : https://bit.ly/TriumphCareerFair
Forwarded from OffCampus Jobs | OnCampus Jobs | Daily Jobs Updates | Lastest Jobs | All Jobs | CSE Jobs | Fresher Jobs โฅ (Dushyant)
Cars 24 Hiring Data Science
YOE - 1-3+ yrs
Location - Hybrid/Gurugram
Compensation - Industry Standard
Relevant NLP and CV Experience
Apply Link :
https://docs.google.com/forms/d/e/1FAIpQLScTxj7fCyCbUG6lrIbG0Dmdvmuc0eynxOHtGILJLFoJwOCZ7A/viewform
YOE - 1-3+ yrs
Location - Hybrid/Gurugram
Compensation - Industry Standard
Relevant NLP and CV Experience
Apply Link :
https://docs.google.com/forms/d/e/1FAIpQLScTxj7fCyCbUG6lrIbG0Dmdvmuc0eynxOHtGILJLFoJwOCZ7A/viewform