⭕ ACCENTURE Interview Experience ⭕
1) Self Introduction
2) Any one of the project which you have
done in your college
3) Who motivated you to do this project
4) Challenges faced while doing this
project
5) What potential problem has made u to
be a better person
6) How will you divide a work and assign
it to your teammates
7) Have you done any certification or
trained in any domain.
8) Hobbies
9) Do you have any questions for me?
✅ Note: Only 15Min
1) Self Introduction
2) Any one of the project which you have
done in your college
3) Who motivated you to do this project
4) Challenges faced while doing this
project
5) What potential problem has made u to
be a better person
6) How will you divide a work and assign
it to your teammates
7) Have you done any certification or
trained in any domain.
8) Hobbies
9) Do you have any questions for me?
✅ Note: Only 15Min
❤1👍1
CODE WITH VIRUS pinned «⭕ ACCENTURE Interview Experience ⭕ 1) Self Introduction 2) Any one of the project which you have done in your college 3) Who motivated you to do this project 4) Challenges faced while doing this project 5) What potential problem has made u to…»
Accolite Digital Recruitment 2023 2022
https://app.turbohire.co/job/publicjobs/JBA%2F4k4wcRwPG13z7786busB_9UUdCumzO9VQZby9MUhFeKH%2FQ1cz1AmlpNECiUl
https://app.turbohire.co/job/publicjobs/JBA%2F4k4wcRwPG13z7786busB_9UUdCumzO9VQZby9MUhFeKH%2FQ1cz1AmlpNECiUl
TurboHire
[Hiring For]: IT Support Intern
IT Support InternSelected intern's day-to-day responsibilities include:1. Diagnose and resolve basic technical issues2. Be the first point of contact for customers seeking technical assistance over the phone, email, or chat3. Perform remote troubleshooting…
👍1
Accenture interview
Interview Date: 28th July 10 AM ( 20 min )
Introduced himself
Asked me to introduce myself
Questions Asked:
Asked about one of my significant technical projects
Inquired about the features of the application in that project
Asked about the challenges I faced during the project
Inquired whether I had led a team in the project and requested an explanation of how I managed the team
Asked how I handled situations when someone didn't listen to me
Inquired about how I managed to study mechanical engineering along with computer science in my B.Tech (as I mentioned that I did a dual degree in my introduction)
Asked if I had any questions for him
Said bye
All the best guys
Other people share ur experience here👇
Share with your friends https://t.me/code_with_virus
Interview Date: 28th July 10 AM ( 20 min )
Introduced himself
Asked me to introduce myself
Questions Asked:
Asked about one of my significant technical projects
Inquired about the features of the application in that project
Asked about the challenges I faced during the project
Inquired whether I had led a team in the project and requested an explanation of how I managed the team
Asked how I handled situations when someone didn't listen to me
Inquired about how I managed to study mechanical engineering along with computer science in my B.Tech (as I mentioned that I did a dual degree in my introduction)
Asked if I had any questions for him
Said bye
All the best guys
Other people share ur experience here👇
Share with your friends https://t.me/code_with_virus
Telegram
ACCENTURE EXAM ANSWERS
#tcsnqt
#tcspaidnqt
#tcs
#tcspaidnqt
#tcs
👍7
Zoho Hiring QA Engineers
YOP: 2016 to 2023
Apply Link:
https://www.zoho.com/careers/jobdetails/?job_id=2803000614913581
YOP: 2016 to 2023
Apply Link:
https://www.zoho.com/careers/jobdetails/?job_id=2803000614913581
Zoho
Zoho Corporation | Careers
Explore exciting career opportunities with us. Register on our candidate portal and receive notifications when we hire for new roles matching your skills.
Greetings from Teamware solutions...!!
We are Hiring freshers for the role of *Azure DevOps Engineer*
Experience : 0-6 Months
Location : Bangalore
Mode of interview- F2F
Notice period: Immediate Joiners
Skills Required :
The ideal candidate should have knowledge of Windows Operating System Fundamentals and Networking Fundamentals and who is fine to learn and work on azure devops.
Excellent Communications is must.
Send resume to Lakshmi.n@twsol.com
We are Hiring freshers for the role of *Azure DevOps Engineer*
Experience : 0-6 Months
Location : Bangalore
Mode of interview- F2F
Notice period: Immediate Joiners
Skills Required :
The ideal candidate should have knowledge of Windows Operating System Fundamentals and Networking Fundamentals and who is fine to learn and work on azure devops.
Excellent Communications is must.
Send resume to Lakshmi.n@twsol.com
👍1
class Solution {
public:
void bfs(vector<vector<int>>&vis,vector<vector<char>>&grid,int i,int j,int n,int m)
{
vis[i][j]=1;
queue<pair<int,int>>q;
q.push({i,j});
while(!q.empty())
{
int row=q.front().first;
int col=q.front().second;
q.pop();
int delrow[4]={1,0,-1,0};
int delcol[4]={0,1,0,-1};
for(int k=0;k<=3;k++){
int nrow=row+delrow[k];
int ncol=col+delcol[k];
if(nrow>=0 and nrow<n and ncol>=0 and ncol<m and grid[nrow][ncol]=='1' and !vis[nrow][ncol])
{
vis[nrow][ncol]=1;
q.push({nrow,ncol});
}
}
}
}
int numIslands(vector<vector<char>>& grid) {
int n=grid.size();
int m=grid[0].size();
vector<vector<int>>vis(n,vector<int>(m,0));
int cnt=0;
for(int i=0;i<n;i++)
{
for(int j=0;j<m;j++)
{
if(!vis[i][j] and grid[i][j]=='1')
{
cnt++;
bfs(vis,grid,i,j,n,m);
}
}
}
return cnt;
}
};
Zeta ✅
public:
void bfs(vector<vector<int>>&vis,vector<vector<char>>&grid,int i,int j,int n,int m)
{
vis[i][j]=1;
queue<pair<int,int>>q;
q.push({i,j});
while(!q.empty())
{
int row=q.front().first;
int col=q.front().second;
q.pop();
int delrow[4]={1,0,-1,0};
int delcol[4]={0,1,0,-1};
for(int k=0;k<=3;k++){
int nrow=row+delrow[k];
int ncol=col+delcol[k];
if(nrow>=0 and nrow<n and ncol>=0 and ncol<m and grid[nrow][ncol]=='1' and !vis[nrow][ncol])
{
vis[nrow][ncol]=1;
q.push({nrow,ncol});
}
}
}
}
int numIslands(vector<vector<char>>& grid) {
int n=grid.size();
int m=grid[0].size();
vector<vector<int>>vis(n,vector<int>(m,0));
int cnt=0;
for(int i=0;i<n;i++)
{
for(int j=0;j<m;j++)
{
if(!vis[i][j] and grid[i][j]=='1')
{
cnt++;
bfs(vis,grid,i,j,n,m);
}
}
}
return cnt;
}
};
Zeta ✅
👍2
AAPNA HIRING FOR LOW CODE / NO CODE DEVELOPER ROLE 2 - 3 YEARS EXPERIENCE ✅✅
https://www.instagram.com/royalvistatechsolutions?igsh=MWhtdXJodGEzcmVjaw==
https://www.instagram.com/royalvistatechsolutions?igsh=MWhtdXJodGEzcmVjaw==
Company Name: IBM
Post Name; SAP Consultant
Salary; up to ₹8 LPA*
Experience; Entry Level
Job Location: Gurgaon
Apply Now:
https://careers.ibm.com/job/19272887/sap-consultant-sap-hana-finance-gurgaon-in/?codes=WEB_SEARCH_NA
Share this opportunity with your friends.🤗
Post Name; SAP Consultant
Salary; up to ₹8 LPA*
Experience; Entry Level
Job Location: Gurgaon
Apply Now:
https://careers.ibm.com/job/19272887/sap-consultant-sap-hana-finance-gurgaon-in/?codes=WEB_SEARCH_NA
Share this opportunity with your friends.🤗
CODE WITH VIRUS pinned «Company Name: IBM Post Name; SAP Consultant Salary; up to ₹8 LPA* Experience; Entry Level Job Location: Gurgaon Apply Now: https://careers.ibm.com/job/19272887/sap-consultant-sap-hana-finance-gurgaon-in/?codes=WEB_SEARCH_NA Share this opportunity…»
#include <bits/stdc++.h>
using namespace std;
int main() {
int n;
cin >> n;
vector<vector<int>> freq(n, vector<int> (26, 0));
string s;
for(int i = 0; i < n; i++) {
string s;
cin >> s;
for(auto &ch : s)
freq[i][ch - 'a']++;
}
long long ans = 0;
for(int i = 0; i < 26; i++) {
int minValue = INT_MAX;
for(int j = 0; j < n; j++)
minValue = min(minValue, freq[j][i]);
ans += minValue;
}
cout << ans << endl;
}
Service Now ✅
using namespace std;
int main() {
int n;
cin >> n;
vector<vector<int>> freq(n, vector<int> (26, 0));
string s;
for(int i = 0; i < n; i++) {
string s;
cin >> s;
for(auto &ch : s)
freq[i][ch - 'a']++;
}
long long ans = 0;
for(int i = 0; i < 26; i++) {
int minValue = INT_MAX;
for(int j = 0; j < n; j++)
minValue = min(minValue, freq[j][i]);
ans += minValue;
}
cout << ans << endl;
}
Service Now ✅
Hello Everyone,
We CelebAI Technologies are hiring for Associate Software Engineer Position(Trainee+ FTE).
We are conducting walk in drive in the office for 2023, 2022 batch pass outs. Those who are in Delhi NCR or can come to Delhi for the process, please share your cv at 👉 careers@celeb-ai.com
Note: Only Delhi NCR students and 2022, 2023 batch should apply.
We CelebAI Technologies are hiring for Associate Software Engineer Position(Trainee+ FTE).
We are conducting walk in drive in the office for 2023, 2022 batch pass outs. Those who are in Delhi NCR or can come to Delhi for the process, please share your cv at 👉 careers@celeb-ai.com
Note: Only Delhi NCR students and 2022, 2023 batch should apply.
👍1