COGNIZANT EXAM HELP GROUP
3.55K subscribers
5.3K photos
21 videos
10 files
3.22K links
🚀 Placement Preparation Hub

🎓 From Preparation to Placement

⚡ OA Support â€ĸ Coding â€ĸ Aptitude â€ĸ Technical â€ĸ HR

🌟 Trusted by Hundreds of Students

🏆 372+ Placement Successes ✅

📩 DM: @Mrtrueliving_ix

💙 Turning Aspirations into Offer Letters.
Download Telegram
UBS QA adavance Help ✅.....


@Mrtrueliving_ix for test clearance 🎉

#Ubs #Offcampus #QA

Test accomplished â¤ī¸

#All placement help available 🔸
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
Meesho Help available âœ”ī¸đŸ’¯


Mac - Remote access
âœ”ī¸

Windows - only pics sharing
âœ”ī¸


@Mrtrueliving_ix for test clearance đŸ’¯â­ī¸
Previous helping

https://t.me/code_alphix/5901

Plagfree coding
âœ”ī¸ high success rate ✅
Please open Telegram to view this post
VIEW IN TELEGRAM
All placement help available....â­ī¸


đŸĒĢ Meesho scriptedby Her
đŸĒĢ Visa
đŸĒĢ Capital one
đŸĒĢ UBS adavance - Lead QA
đŸĒĢ Hackwithinfy
đŸĒĢ IBM
đŸĒĢ Amazon
đŸĒĢ Capgemini
đŸĒĢ MAQ


Any On // off campus placement....


Test Clearance
đŸ’¯đŸŽ‰âœ…

DM
@Mrtrueliving_ix

đŸ’¯ Success rate with solid Helping proofs đŸ“â­ī¸
Please open Telegram to view this post
VIEW IN TELEGRAM
Hackwithinfy Help available...


@Mrtrueliving_ix for test clearance đŸ’¯
UBS QA adavance Help ✅.....


@Mrtrueliving_ix for test clearance 🎉

#Ubs #Offcampus #QA

Test accomplished â¤ī¸

#All placement help available 🔸
Please open Telegram to view this post
VIEW IN TELEGRAM
Capital one help done âœ”ī¸đŸŽ‰


Test accomplished â¤ī¸  || 1200
âœ”ī¸

All 4/ 4 codes done with plagfree
âœ”ī¸


@Mrtrueliving_ix for test clearance đŸ’¯

#CapitalOne #Offcampus #Ase


Apply now ✅

https://t.me/code_alphix/7078
Please open Telegram to view this post
VIEW IN TELEGRAM
import sys
try:
n = int(sys.stdin.readline().strip() or exit())
m = int(sys.stdin.readline().strip() or exit())
sys.stdin.readline()
adj = [[] for _ in range(n + 1)]
for _ in range(m):
u, v = map(int, sys.stdin.readline().strip().split())
adj[u].append(v)
adj[v].append(u)
res = 0
for i in range(1, n + 1):
d = len(adj[i])
if d == 1: res += 1
elif d > 1: res += sum(i % j == 0 or j % i == 0 for j in adj[i])
print(res)
except (IOError, ValueError, IndexError): pass
❤1
✅ Capital One Free Exam Codes!
🎉 Get your free codes now!
📲 Join here: https://t.me/code_alphix

💡 Share with friends = Get more codes!

def solution(word, skeletons):
ms = []
for skl in skeletons:
cf = True
sksc = set(c for c in skl if c != '-')
for i in range(len(word)):
wc = word[i]
skc = skl[i]
if skc == '-':
if wc not in sksc:
cf = False
break
elif wc != skc:
cf = False
break
if cf:
ms.append(skl)
return ms
❤2👌1
UBS sending next step mails âœ”ī¸

UBS culture match

Test accomplished â¤ī¸

All placement help available


DM ✅@Mrtrueliving_ix

@Mrtrueliving_ix

Preview proofs:
https://t.me/code_alphix/7110?single
Please open Telegram to view this post
VIEW IN TELEGRAM
Meesho Help available âœ”ī¸đŸ’¯


Mac - Remote access
âœ”ī¸

Windows - only pics sharing
âœ”ī¸


@Mrtrueliving_ix for test clearance đŸ’¯â­ī¸
Previous helping

https://t.me/code_alphix/5901

Plagfree coding
âœ”ī¸ high success rate ✅
Please open Telegram to view this post
VIEW IN TELEGRAM
Jpmc Help available.....


DM @Mrtrueliving_ix for test clearance âœ”ī¸
Please open Telegram to view this post
VIEW IN TELEGRAM
Capital one help done âœ”ī¸đŸŽ‰


Test accomplished â¤ī¸  || 1200
âœ”ī¸

All 4/ 4 codes done with plagfree
âœ”ī¸

@Mrtrueliving_ix for test clearance đŸ’¯

#CapitalOne #Offcampus #Ase
Please open Telegram to view this post
VIEW IN TELEGRAM
Meesho test pattern....



15 Objectives
2 Programming Questions

Duration: 1 hr 30 minsâœ”ī¸

MEESHO SCRIPTEDBYHER

@Mrtrueliving_ix for test clearance đŸ’¯âœ”ī¸
Please open Telegram to view this post
VIEW IN TELEGRAM
Tree climber âœ”ī¸
Please open Telegram to view this post
VIEW IN TELEGRAM
#include <iostream>
#include <vector>
#include <queue>
#include <cmath>
using namespace std;

bool is_perfect_square(long long n) {
long long sqrt_n = static_cast<long long>(std::sqrt(static_cast<double>(n)));
return sqrt_n * sqrt_n == n;
}

int solve(int n, vector<int>& val, vector<vector<int>>& edge) {
vector<vector<int>> adj_list(n);
for (const auto& e : edge) {
adj_list[e[0]].push_back(e[1]);
adj_list[e[1]].push_back(e[0]);
}

vector<int> parent(n, -1);
queue<int> q;
q.push(0);
vector<bool> visited(n, false);
visited[0] = true;
while (!q.empty()) {
int node = q.front();
q.pop();
for (int neighbor : adj_list[node]) {
if (!visited[neighbor]) {
parent[neighbor] = node;
q.push(neighbor);
visited[neighbor] = true;
}
}
}

int total_sum = 0;
for (int v = 0; v < n; v++) {
int t_v = 0;
if (is_perfect_square(2LL * val[v])) {
t_v++;
}
int current = v;
while (parent[current] != -1) {
int ancestor = parent[current];
long long sum = static_cast<long long>(val[v]) + val[ancestor];
if (is_perfect_square(sum)) {
t_v++;
}
current = ancestor;
}
total_sum += t_v;
}
return total_sum;
}


Write accordingly required complier âœ”ī¸
Please open Telegram to view this post
VIEW IN TELEGRAM