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
NetApp ONCAMPUS Help done βœ”οΈ

Test accomplished πŸͺ„

DM
@Mrtrueliving_ix for Help....

#NetApp #ONCAMPUS
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ”₯1
Cognizant communication


1. Reading Section (23 questions) – You need to read the given sentences.

2. Speaking Section (4 questions) – You'll be given a topic and need to speak about it for 1 minute.


3. Fill in the Blanks (34 questions) – Standard fill-in-the-blank questions.


4. Listening Section (16 questions) – You'll listen to a 4-minute audio and answer the remaining questions based on it.

Total: 77 questions in 58 minutes
πŸ‘2πŸŽ‰1
Cognizant Help available....

DM
@Mrtrueliving_ix For Help ..πŸ”Έ

https://t.me/code_alphix/5869?single

🚫 Only for aptitude & technical help 🚫


Test clearance
πŸ’―
Please open Telegram to view this post
VIEW IN TELEGRAM
All placement help available

- Cognizant
- syniti
- Autodesk
- IBM CIC - 6 pm
- IBM - All roles
- Amazon SDE
- infosys sp
- Goldman Sachs - 12th
.........more

On & off campus placement Help


Those who need πŸ’― test Clearance

DM
@Mrtrueliving_ix for test clearance
Cognizant Slots booking are open....


DM
@Mrtrueliving_ix

Test clearance guarantee
πŸ’―
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ‘1
NCAT Help done βœ”οΈ

TEST ACCOMPLISHED ❀️

DM
@Mrtrueliving_ix βœ…
Please open Telegram to view this post
VIEW IN TELEGRAM
Autodesk all codes available

DM @Mrtrueliving_ix βœ…
Please open Telegram to view this post
VIEW IN TELEGRAM
Namma Yatri - R2 Help available

DM @Mrtrueliving_ix βœ…


https://t.me/code_alphix/5940?single
Please open Telegram to view this post
VIEW IN TELEGRAM
Medplus sending hall ticket 🎟️....


Best of luck 🀞❀️
Cognizant Aptitude Help done βœ…

4 pm ||  Slot
πŸ’»

DM for help
@Mrtrueliving_ix πŸ’―

#Cts #Aptitude #R2 #Offcampus

Test accomplished ❀️
Please open Telegram to view this post
VIEW IN TELEGRAM
Cognizant - 6pm || ibm cic Help available

DM
@Mrtrueliving_ix for help

Test clearance
πŸ’―
Please open Telegram to view this post
VIEW IN TELEGRAM
PayU Help available

DM.... @Mrtrueliving_ix βœ…
Please open Telegram to view this post
VIEW IN TELEGRAM
Dtcc code-A-Thon Help available

DM @Mrtrueliving_ix πŸŽ‰
Please open Telegram to view this post
VIEW IN TELEGRAM
IBM all codes available

DM @Mrtrueliving_ix βœ”οΈβœ…
Please open Telegram to view this post
VIEW IN TELEGRAM
IBM CIC Help Done βœ…

Slot -2 βœ”οΈ
Please open Telegram to view this post
VIEW IN TELEGRAM
PayU Help done βœ…

DM
@Mrtrueliving_ix for Help πŸŽ‰πŸ’―

#PayU #Offcampus
Please open Telegram to view this post
VIEW IN TELEGRAM
import sys
sys.setrecursionlimit(1_000_000)

class DirNode:
def __init__(self, name):
self.name = name
self.children = {}
self.parent = None

class DirectoryTree:
def __init__(self):
self.root = DirNode("root")
self.total_nodes = 1
self.MAX_NODES = 10**6
self.path_map = {"root": self.root}

def get_node(self, path):
return self.path_map.get(path, None)

def build_path(self, parent_path, child_name):
return parent_path + "/" + child_name

def add_node(self, parent_path, *child_names):
parent = self.get_node(parent_path)
if not parent:
return
for name in child_names:
if name not in parent.children:
new_node = DirNode(name)
new_node.parent = parent
parent.children[name] = new_node
full_path = self.build_path(parent_path, name)
self.path_map[full_path] = new_node
self.total_nodes += 1

def count_descendants(self, path):
node = self.get_node(path)
if not node:
print("Invalid command")
return

def dfs(n):
count = 0
for cname, ch in n.children.items():
count += 1 + dfs(ch)
return count

print(dfs(node))

def cut_paste(self, src_path, dst_path):
src = self.get_node(src_path)
dst = self.get_node(dst_path)

if not src or not dst or src is self.root or src.name in dst.children:
print("Invalid command")
return

# Remove old paths
def remove_paths(n, current_path):
self.path_map.pop(current_path, None)
for cname, ch in n.children.items():
remove_paths(ch, self.build_path(current_path, cname))

remove_paths(src, src_path)

# Detach from old parent
del src.parent.children[src.name]

# Attach to new parent
src.parent = dst
dst.children[src.name] = src

# Add new paths
def add_paths(n, current_path):
self.path_map[current_path] = n
for cname, ch in n.children.items():
add_paths(ch, self.build_path(current_path, cname))

new_path = self.build_path(dst_path, src.name)
add_paths(src, new_path)

print("OK")

def copy_paste(self, src_path, dst_path):
src = self.get_node(src_path)
dst = self.get_node(dst_path)

if not src or not dst or src.name in dst.children:
print("Invalid command")
return

# Count number of nodes to be added
def count_nodes(n):
cnt = 1
for ch in n.children.values():
cnt += count_nodes(ch)
return cnt

needed = count_nodes(src)
if self.total_nodes + needed > self.MAX_NODES:
print("Invalid command")
return

# Clone subtree
def clone(n):
copy = DirNode(n.name)
for cname, ch in n.children.items():
child_copy = clone(ch)
child_copy.parent = copy
copy.children[cname] = child_copy
return copy

new_subtree = clone(src)
new_subtree.parent = dst
dst.children[new_subtree.name] = new_subtree

# Add new paths to map
def add_paths(n, current_path):
self.path_map[current_path] = n
for cname, ch in n.children.items():
add_paths(ch, self.build_path(current_path, cname))

new_path = self.build_path(dst_path, src.name)
add_paths(new_subtree, new_path)

self.total_nodes += needed
print("OK")

Part -1
πŸ‘3
# Input handling
def main():
n, q = map(int, input().split())
tree = DirectoryTree()

for _ in range(n):
parts = input().split()
parent = parts[0]
children = parts[1:]
tree.add_node(parent, *children)

for _ in range(q):
parts = input().split()
cmd = parts[0]
if cmd == "countDescendants":
tree.count_descendants(parts[1])
elif cmd == "cutPaste":
tree.cut_paste(parts[1], parts[2])
elif cmd == "copyPaste":
tree.copy_paste(parts[1], parts[2])

if __name__ == "__main__":
main()

Part - 2


Namma yatri - 2 βœ”οΈ
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ‘1
Successfully cleared NetApp βœ”οΈ

Test accomplished

Prev Help:

https://t.me/code_alphix/6137?single

DM for help
@Mrtrueliving_ix Β° @Mrtrueliving_ix

πŸ’― Success Rate & Test clearance πŸ‘Œ
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ‘1
All placement help available

- Cognizant
- Dtcc
- payU
- namma yatri
- wells forgo
- IBM - communication
- Deshaw
- innofied
- IBM - offline
- Flipkart


On // off campus placement

DM For help
@Mrtrueliving_ix
@Mrtrueliving_ix

Test clearance guarantee
πŸ’―

High success rate
πŸŽ‰
Please open Telegram to view this post
VIEW IN TELEGRAM