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
NetcoreπŸ‘

Both codes are done
πŸ“±

πŸ’― Plag free
πŸ“±

Mission accomplished
πŸ‘‘

OA HELP

@MRTRUELIVING_IX

@MRTRUELIVING_IX

πŸ’― TEST CLEARANCE
πŸ’™

#NetCore #SD #Coding #round 1
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
Successfully cleared ❀️▢️ πŸ“±

Prev

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

#Amazon #SDET #Done

πŸ’― Test Clearance
πŸ“±
Please open Telegram to view this post
VIEW IN TELEGRAM
Asian paints {igniTe}

Help available

OA HELP

@mrtrueliving_ix πŸ‘
Please open Telegram to view this post
VIEW IN TELEGRAM
Proofβ–ΆοΈβ˜ΊοΈβ€οΈ
Please open Telegram to view this post
VIEW IN TELEGRAM
https://t.me/code_alphix

Share this message help them achieve 100% test clearance!

I hope you will do πŸ‘πŸ””
Please open Telegram to view this post
VIEW IN TELEGRAM
Asian paints πŸ‘

Codes are available

@MRTRUELIVING_IX

@MRTRUELIVING_IX
Please open Telegram to view this post
VIEW IN TELEGRAM
Last call for


throughtworks


Swiggy FE & BE


Zomato FT


Netcore


Asian paints


DM FOR πŸ’― TEST CLEARANCE πŸ‘Œ
@MRTRUELIVING_IX

@MRTRUELIVING_IX
Accenture 🦈


Accenture ON // Off campus placement help available

Prev:
https://t.me/code_alphix/3524?single

DM -@mrtrueliving_ix πŸ‘

πŸ’― Test Clearance

https://t.me/code_alphix/3798?single
Please open Telegram to view this post
VIEW IN TELEGRAM
NetcoreπŸ‘

Both codes are done
πŸ“±

Test accomplished
πŸ‘‘

OA HELP

@MRTRUELIVING_IX

@MRTRUELIVING_IX

πŸ’― TEST CLEARANCE
πŸ’™

#NetCore #SD #Coding #round 1
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
Mitsogo sending interview mail's


https://t.me/code_alphix/792
❀1
NetcoreπŸ‘// Both codes are done πŸ“±

Test accomplished
πŸ‘‘

OA HELP AVAILABLE
:

@MRTRUELIVING_IX

@MRTRUELIVING_IX

πŸ’― TEST CLEARANCE
πŸ’™

#NetCore #SD #Coding #round 1
Please open Telegram to view this post
VIEW IN TELEGRAM
IBM ON campus help available

DM -
@mrtrueliving_ixπŸ‘

https://t.me/code_alphix/3118
Please open Telegram to view this post
VIEW IN TELEGRAM
Accenture on // off campus help available

Preview

https://t.me/code_alphix/3798?single
def solve(s):
def is_palindrome(t):
return t == t[::-1]

n, evens, odds = len(s), 0, 0

for i in range(n):
for j in range(i + 1, n + 1):
sub, k, merged = s[i:j], 0, ''
while k < len(sub):
if k + 1 < len(sub) and sub[k] == sub[k + 1]:
merged += sub[k]
k += 2
else:
merged += sub[k]
k += 1
if is_palindrome(merged):
if (j - i) % 2 == 0:
evens += 1
else:
odds += 1
return [evens, odds]

Steve substring // Airtel πŸ‘
Please open Telegram to view this post
VIEW IN TELEGRAM
❀2
#include <stdio.h>
#include <regex.h>
int isPowerOfTwo(const char *binaryString) {
regex_t regex;
int result;
result = regcomp(&regex, "^0*10*$", REG_EXTENDED);
if (result) {
printf("Could not compile regex\n");
return 0;
}
result = regexec(&regex, binaryString, 0, NULL, 0);
regfree(&regex);
if (!result) {
return 1;
} else {
return 0;
}
}

int main() {
int t;
char binaryString[1000];
scanf("%d", &t);
while (t--) {
scanf("%s", binaryString);
if (isPowerOfTwo(binaryString)) {
printf("True\n");
} else {
printf("False\n");
}
}

return 0;
}

Nvidia regexπŸ‘
Please open Telegram to view this post
VIEW IN TELEGRAM