TCS NQT Exam Ans
1)45kg
2) 2
3) 4
4)26
5)₹ 2007.5
TCS NQT 2PM EXAM ANS
Telegram:- @allcoding1
Discussion group:- @TCS_exam_Ans
1)45kg
2) 2
3) 4
4)26
5)₹ 2007.5
TCS NQT 2PM EXAM ANS
Telegram:- @allcoding1
Discussion group:- @TCS_exam_Ans
👍2
TCS NQT Exam Ans
1)45kg
2) 2
3) 4
4)26
5)₹ 2007.5
6) 6986
7) 36
TCS NQT 2PM EXAM ANS
Telegram:- @allcoding1
Discussion group:- @TCS_exam_Ans
1)45kg
2) 2
3) 4
4)26
5)₹ 2007.5
6) 6986
7) 36
TCS NQT 2PM EXAM ANS
Telegram:- @allcoding1
Discussion group:- @TCS_exam_Ans
👍3
TCS NQT Exam Ans
1)45kg
2) 2
3) 4
4)26
5)₹ 2007.5
6) 6986
7) 36
8)41/6 profit
9)17.89%
10)15:12:20
11)₹364
TCS NQT 2PM EXAM ANS
Telegram:- @allcoding1
Discussion group:- @TCS_exam_Ans
1)45kg
2) 2
3) 4
4)26
5)₹ 2007.5
6) 6986
7) 36
8)41/6 profit
9)17.89%
10)15:12:20
11)₹364
TCS NQT 2PM EXAM ANS
Telegram:- @allcoding1
Discussion group:- @TCS_exam_Ans
👍14
🎯TCS NQT Registration 2022| TCS Recruitment Drive For Freshers
Test : National Qualifier Test (NQT)
Qualification : B.E/B.Tech/Any Degree/Diploma
Batch : Any Batch Passouts (2018/2019/2020/2021/2022 )
Package : 3.36-19 LPA
Apply Now:- http://www.allcoding1.com
Telegram:- @allcoding1
Test : National Qualifier Test (NQT)
Qualification : B.E/B.Tech/Any Degree/Diploma
Batch : Any Batch Passouts (2018/2019/2020/2021/2022 )
Package : 3.36-19 LPA
Apply Now:- http://www.allcoding1.com
Telegram:- @allcoding1
👍4
👍12❤5🔥1
Forwarded from allcoding1_official
Forwarded from allcoding1_official
#include <bits/stdc++.h>
using namespace std;
vector<string> rows;
char alphabet;
string findPrecedingAlphabets()
{
int r = -1, c = -1;
for (int i = 0; i < rows.size(); i++)
{
int idx = rows[i].find(alphabet);
if (idx != string::npos)
{
r = i;
c = idx;
break;
}
}
if (r == -1)
return "alphabet not found";
string a = "";
if (r > 0)
a += rows[r - 1][c];
if (c > 0)
a += rows[r][c - 1];
return a;
}
int main()
{
int n;
cin >> n;
for (int i = 0; i < n; i++)
{
string row;
cin >> row;
rows.push_back(row);
}
cin >> alphabet;
cout << findPrecedingAlphabets() << endl;
return 0;
}
IBM Exam Ans
Alphabets on Excel sheets code
Python
Telegram:- @allcoding1
using namespace std;
vector<string> rows;
char alphabet;
string findPrecedingAlphabets()
{
int r = -1, c = -1;
for (int i = 0; i < rows.size(); i++)
{
int idx = rows[i].find(alphabet);
if (idx != string::npos)
{
r = i;
c = idx;
break;
}
}
if (r == -1)
return "alphabet not found";
string a = "";
if (r > 0)
a += rows[r - 1][c];
if (c > 0)
a += rows[r][c - 1];
return a;
}
int main()
{
int n;
cin >> n;
for (int i = 0; i < n; i++)
{
string row;
cin >> row;
rows.push_back(row);
}
cin >> alphabet;
cout << findPrecedingAlphabets() << endl;
return 0;
}
IBM Exam Ans
Alphabets on Excel sheets code
Python
Telegram:- @allcoding1
👍13