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
Okta Help Done 🎯

DM for any placement...

@Mrtrueliving_ix @Mrtrueliving_ix

#Okta #R1 #SDE
1
Idfc code a thon Help Available......

DM for test clearance 💯

@Missalgo @Missalgo @Missalgo

@Mrtrueliving_ix @Mrtrueliving_ix

Test Clearance Guarantee ✓
Cognizant Slots Are Available ✓

DM
@Mrtrueliving_ix for test clearance

OA to offer letter process Available 👌
❗️Okta Off Campus Drive 2025 Hiring New Grad - Software Engineer | INR 12-14 LPA

👨‍💻Designation : Software Engineer
🎓Eligibility : B.E/B.Tech
🎖Batch : New Graduates
💰CTC : ₹ 12-14 LPA

⭕️ Apply Now: https://www.okta.com/company/careers/engineering/new-grad-software-engineering-india-7120393/?gh_src=7j0um41

Helping proofs

https://t.me/code_alphix/7585
IDFC code a thon Help Available....😎


DM for test clearance 💯

@Mrtrueliving_ix @Mrtrueliving_ix

Previous Helping proofs

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

Only plagfree coding | verified code
2
Idfc all codes Available 🎯

DM @Mrtrueliving_ix
👀1
All Placement Help available.....

DM @Mrtrueliving_ix

Test Clearance 💯
Cognizant Digital Nurture!Help Available.....


DM @Mrtrueliving_ix
1
Successfully Cleared UST ✓

DM for any placement Help

@Mrtrueliving_ix @Mrtrueliving_ix

#UST #R2 #ONCAMPUS

https://t.me/code_alphix/7148?single
All Placement Help Available 🎯


- UBS - backend

- Amazon SDE

- ibm

- cognizant

- Capgemini

- JUSPAY

- Wipro Elite

- Google

- Goldman Sachs.....many more
🎉

On // off campus placement Help Available 🎯

DM those who need 💯 test Clearance ❤️

With High success rate | plagfree


@Mrtrueliving_ix @Mrtrueliving_ix

@missalgo @missalgo @missalgo
Please open Telegram to view this post
VIEW IN TELEGRAM
Oracle HELP AVAILABLE....

@Mrtrueliving_ix

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

Those who need 💯 test Clearance 🤗
HighRadius Hiring Tournament – VERY IMPORTANT DETAILS

📅 Date: Today, Aug 06 (Tuesday)
🕘 Time: 9:00 PM – 10:30 PM (90 minutes)
📩 Contest Link: Will be sent via WhatsApp DMs at 8:00 PM to your registered number.
🔗 Test Link:
👉 https://thejoboverflow.com/assessment/highradius-java-oa/

🚨 Instructions:

Sign in to the platform as soon as you receive the link!

Create your profile early to avoid last-minute issues.

Late sign-in = lost time ⏱️


🧠 Duration: 90 Minutes
💻 Platform: JobOverflow
📲 Tip: Be online by 7:50 PM to receive the link and onboard quickly.

🎯 Good luck! Give your best shot!
import java.io.*;
import java.util.*;

public class Main {
public static void main(String[] A) throws Exception {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int n = Integer.parseInt(br.readLine());
int[] a = new int[n], l = new int[n], r = new int[n];
StringTokenizer st = new StringTokenizer(br.readLine());
for (int i = 0; i < n; i++) a[i] = Integer.parseInt(st.nextToken());

Deque<Integer> d = new ArrayDeque<>();
for (int i = 0; i < n; i++) {
while (!d.isEmpty() && a[d.peek()] <= a[i]) d.pop();
l[i] = d.isEmpty() ? -1 : d.peek();
d.push(i);
}

d.clear();
for (int i = n - 1; i >= 0; i--) {
while (!d.isEmpty() && a[d.peek()] < a[i]) d.pop();
r[i] = d.isEmpty() ? n : d.peek();
d.push(i);
}

long res = 0;
for (int i = 0; i < n; i++) res += (long) a[i] * (i - l[i]) * (r[i] - i);

d.clear();
for (int i = 0; i < n; i++) {
while (!d.isEmpty() && a[d.peek()] >= a[i]) d.pop();
l[i] = d.isEmpty() ? -1 : d.peek();
d.push(i);
}

d.clear();
for (int i = n - 1; i >= 0; i--) {
while (!d.isEmpty() && a[d.peek()] > a[i]) d.pop();
r[i] = d.isEmpty() ? n : d.peek();
d.push(i);
}

for (int i = 0; i < n; i++) res -= (long) a[i] * (i - l[i]) * (r[i] - i);

System.out.print(res);
}
}

Unfair multiverse 👍 // high radius 👍
2
import java.io.*;
import java.util.*;

class Node {
String k;
long v;
Node n;

public Node(String k, long v) {
this.k = k;
this.v = v;
this.n = null;
}
}

class HashMap { // Removed 'public' modifier
private Node[] b;
private int c;
private int s;
private static final int INIT = 16;
private static final float LF = 0.75f;
private static final int P = 31;

public HashMap() {
this.c = INIT;
this.b = new Node[c];
this.s = 0;
}

private int h(String k) {
int h = 0;
for (int i = 0; i < k.length(); i++) {
h = (h * P + k.charAt(i)) & Integer.MAX_VALUE;
}
return h & (c - 1);
}

public void put(String k, long v) {
int i = h(k);
Node n = b[i];

while (n != null) {
if (n.k.equals(k)) {
n.v = v;
return;
}
n = n.n;
}

Node nn = new Node(k, v);
nn.n = b[i];
b[i] = nn;
s++;

if ((float)s / c > LF) {
resize();
}
}

private void resize() {
int nc = c * 2;
Node[] nb = new Node[nc];

for (int i = 0; i < c; i++) {
Node n = b[i];
while (n != null) {
Node next = n.n;
int ni = (h(n.k) * nc / c) & (nc - 1);
n.n = nb[ni];
nb[ni] = n;
n = next;
}
}

b = nb;
c = nc;
}

public Long get(String k) {
int i = h(k);
Node n = b[i];

while (n != null) {
if (n.k.equals(k)) {
return n.v;
}
n = n.n;
}

return null;
}

public Long remove(String k) {
int i = h(k);
Node n = b[i];
Node p = null;

while (n != null) {
if (n.k.equals(k)) {
if (p != null) {
p.n = n.n;
} else {
b[i] = n.n;
}
s--;
return n.v;
}
p = n;
n = n.n;
}

return null;
}

public static void main(String[] args) throws IOException {
HashMap m = new HashMap();
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int Q = Integer.parseInt(br.readLine());

for (int i = 0; i < Q; i++) {
String[] p = br.readLine().split(" ");
String op = p[0];

switch (op) {
case "PUT":
String k = p[1];
long v = Long.parseLong(p[2]);
m.put(k, v);
break;
case "GET":
k = p[1];
Long r = m.get(k);
System.out.println(r != null ? r : "null");
break;
case "REMOVE":
k = p[1];
Long rm = m.remove(k);
System.out.println(rm != null ? rm : "null");
break;
}
}
}
}
HighRadius Help done

Test accomplished ❤️ || Offcampus

DM for any placement Help 🙂

@Mrtrueliving_ix @Mrtrueliving_ix
1
Amex Slots are available ❤️

@Mrtrueliving_ix
Infosys interview help Available 🎯...

DM for test clearance 💯

Prev proof

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

No doubt for selection 😎


https://t.me/code_alphix/7408

https://t.me/code_alphix/7530