๐—–๐—ฆ ๐—”๐—น๐—ด๐—ผ ๐Ÿ’ป ๐ŸŒ ใ€Ž๐—–๐—ผ๐—บ๐—ฝ๐—ฒ๐˜๐—ถ๐˜๐—ถ๐˜ƒ๐—ฒ ๐—ฃ๐—ฟ๐—ผ๐—ด๐—ฟ๐—ฎ๐—บ๐—บ๐—ถ๐—ป๐—ดใ€
9.62K subscribers
5.61K photos
3 videos
95 files
10.6K links
๐ŸšฉMain Group - @SuperExams
๐Ÿ“Job Updates - @FresherEarth

๐Ÿ”ฐAuthentic Coding Solutions(with Outputs)
โš ๏ธDaily Job Updates
โš ๏ธHackathon Updates & Solutions

Buy ads: https://telega.io/c/cs_algo
Download Telegram
โ—๏ธDXC Technology Off Campus Drive 2022 Hiring Freshers Data Analystโ—๏ธ

๐Ÿ‘จโ€๐Ÿ’ป Job Role : Associate Professional โ€“ Data Analyst
๐ŸŽ“ Qualification : BE/B.Tech/BCA/MCA
๐ŸŽ– Batch : 2020/2021/2020/2019
๐Ÿ’ฐ Salary : 3.6 LPA

https://dxctechnology.wd1.myworkdayjobs.com/en-US/DXCJobs/job/IND---KA---BANGALORE/Associate-Professional-Data-Analyst_51444023
๐Ÿ‘1
Infosys 10am Slot Answers

Reasoning ability

1)q) shayms brother
D
Together is nesseccarly

2q) distribution of players
B
7700

3q)weight of 10 boxes of apple
C
The data either in statement

4q)profit earned selling the car
B
The data both 1 nd 2 statement

Q5) marks obtained by rohan
D
25

Q6) percentage of covid 19
C
7500

7)q iphone nd android
B
0.87

Techinal Ability Test

1q) complete the series osp
D
Sah

2q)third term in same way
A
Gfde

3q)find odd one out
B
Tri

4)series of sets of numbers 364
B
45

5q) cfuk
B
2
โ—๏ธAtos Syntel Off Campus Drive 2022 | BE/ B.Tech/ B.Sc/ BCS/ MCAโ—๏ธ

๐Ÿ‘จโ€๐Ÿ’ป Job Role : Trainee Engineer
๐ŸŽ“ Education : BE/BTech/BSc/BCS/MCA
๐ŸŽ– Batch : 2022/2023
๐Ÿ’ฐ CTC : 3.5 LPA+

Apply Link 2022
Apply Link 2023
๐Ÿ‘2
โ—๏ธMorningstar Off Campus Hiring | Freshers | 3.90 LPAโ—๏ธ

๐Ÿ‘จโ€๐Ÿ’ป Job Role : MDP Associate
๐ŸŽ“ Education : Bachelor's Degree
๐ŸŽ–Batch : Any Batch
๐Ÿ’ฐ CTC : 3.99 LPA

Apply Here
โ—๏ธDXC Technology Off Campus Drive 2022 Hiring Freshers Data Analystโ—๏ธ

๐Ÿ‘จโ€๐Ÿ’ป Job Role : Associate Professional โ€“ Data Analyst
๐ŸŽ“ Qualification : BE/B.Tech/BCA/MCA
๐ŸŽ– Batch : 2020/2021/2020/2019
๐Ÿ’ฐ Salary : 3.6 LPA

Apply Here
class Stack {
constructor() {
this.items = [];
}

// push
push(val) {
return this.items.push(val);
}

// pop
pop() {
if (this.items.length > 0) {
return this.items.pop();
} else {
return -1;
}
}

top() {
if (this.items.length > 0) {
return this.items[this.items.length - 1];
} else {
return -1;
}
}

size() {
return this.items.length;
}

isEmpty() {
return this.items.length == 0 ? true : false;
}
}

var isValid = function(s) {
let stk = new Stack();

let mp = {'}':'{',
']':'[',
')':'('}
for(let i=0;i<s.length;i++){
if (s[i]=='(' s[i]=='{' s[i]=='['){
stk.push(s[i]);
}
else if (s[i]==')' s[i]=='}' s[i]==']'){
if (stk.top()==mp[s[i]]){
stk.pop()
}
else{
return false;
}
}

}
if (stk.size()==0){
return true
}
return false


};
โค1