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
Successfully cleared Accenture ONCAMPUS βœ“


R1-r3:
https://t.me/Code_alphix/8576?single

#Accenture #ONCAMPUS #drive
Accolite || Software Engineer test βœ“


Test accomplished ❀️.
@Mrtrueliving_ix

For all Placement help

@Mrtrueliving_ix @Mrtrueliving_ix
Accenture ONCAMPUS drive Help Available

πŸ’₯ One-Time Opportunity! πŸ’₯
Share with your friends who need Test Clearance βœ…

>> Own laptop βœ“

>> Lab system βœ“

@Mrtrueliving_ix @Mrtrueliving_ix βœ“
Uber is hiring
Position: Software Engineer, Data
Qualification: Bachelor's Degree
Experiencο»Ώe: Freshers/ Experienced
Location: Hyderabad, India

πŸ“ŒApply Now: https://www.uber.com/global/en/careers/list/147689/?uclick_id=c4b8c412-d7bf-4990-805b-c1ed8619397f
πŸ† Accenture ONCAMPUS | Slot-1 | 12 PM βœ“

πŸ’« Round 1 β€” Cleared πŸ’―
⚑ Round 2 β€” Cleared πŸ’―
πŸš€ Round 3 β€” Cleared πŸŽ‰

🌟 Mission Accomplished | ONCAMPUS Drive Success πŸ™Œ

> Hard work opens doors. Consistency keeps them open. ✨


πŸ’Ό Grateful for the journey and guidance throughout!
πŸ“© DM for Placement Insights & Strategy Support πŸ’‘

@Mrtrueliving_ix @Mrtrueliving_ix

@Mrtrueliving_09 @Mrtrueliving_09

#Accenture #OnCampus #Success #PlacementDrive #HardWorkPaysOff #CareerGoals #R1 #R2 #R3 #DreamAchieved
🌟 Accenture ONCAMPUS –12 PMβœ“


Slot - 2 || Cleared βœ“


πŸ”₯ Round 1 – Cleared πŸ’―
⚑ Round 2 – Cleared πŸ’―
πŸš€ Round 3 – Cleared πŸŽ‰

πŸ’« Test Accomplished | ONCAMPUS πŸ™Œ


@Mrtrueliving_ix @Mrtrueliving_ix

>Discipline, patience, and perseverance turn dreams into reality.


πŸ“© DM for Placement Tips & Strategy SupportπŸ˜‡


@Mrtrueliving_ix @Mrtrueliving_ix

#Accenture #OnCampus #PlacementSuccess #CareerJourney #HardWorkPaysOff #R1 #R2 #R3 #Victory
Ukg || customer experience intern βœ“


DM for any placement Help

@Mrtrueliving_ix @Mrtrueliving_ix

#Ukg #ONCAMPUS #R1
TCS codevita βœ“
Successfully cleared Accenture ONCAMPUS βœ“>


Now they are eligible for communication βœ“

DM for any placement Help available

On // Offcampus βœ“

Computer Lab or own laptop βœ“


@Mrtrueliving_ix @Mrtrueliving_ix

S1:https://t.me/Code_alphix/8587?single

S2:https://t.me/Code_alphix/8585?single
IBM CIC Help Available

@Mrtrueliving_ix @Mrtrueliving_ix

πŸ’― Test Clearance ❀️

https://t.me/Code_alphix/8555?single
TCS codevita βœ“
TCS codevita βœ“
IBM both codes are available

@Mrtrueliving_ix βœ“
TCS Coding Questions Available Now! πŸš€

πŸ”₯ Problems Covered:
βœ… Rishikbox
βœ… Shapecount
βœ… Smallest Region

πŸ’― Plag-Free Solutions β€” Tested & Verified!

πŸ“’ Check our page β€” we’ll be posting the full codes soon!
πŸ‘‰ https://t.me/Code_alphix


Add your friends

Helpthemtosucceed ❀️
import java.util.*;

public class RasikhBox {
    static void gravity(char[][] g) {
        int r = g.length, c = g[0].length;
        for (int col = 0; col < c; col++) {
            int cnt = 0;
            for (int row = 0; row < r; row++)
                if (g[row][col] == '*') cnt++;
            for (int row = 0; row < r - cnt; row++) g[row][col] = '.';
            for (int row = r - cnt; row < r; row++) g[row][col] = '*';
        }
    }

    static char[][] rightR(char[][] g) {
        int r = g.length, c = g[0].length;
        char[][] res = new char[c][r];
        for (int i = 0; i < c; i++)
            for (int j = 0; j < r; j++)
                res[i][j] = g[r - 1 - j][i];
        return res;
    }

    static char[][] leftR(char[][] g) {
        int r = g.length, c = g[0].length;
        char[][] res = new char[c][r];
        for (int i = 0; i < c; i++)
            for (int j = 0; j < r; j++)
                res[i][j] = g[j][c - 1 - i];
        return res;
    }

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int m = sc.nextInt(), n = sc.nextInt();
        char[][] box = new char[m][n];
        for (int i = 0; i < m; i++)
            for (int j = 0; j < n; j++)
                box[i][j] = sc.next().charAt(0);
        int k = sc.nextInt();
        String[] ops = new String[k];
        for (int i = 0; i < k; i++) ops[i] = sc.next();
        gravity(box);
        for (String op : ops) {
            if (op.equals("right")) box = rightR(box);
            else box = leftR(box);
            gravity(box);
        }
        int R = box.length, C = box[0].length;
        for (int i = 0; i < R; i++) {
            for (int j = 0; j < C; j++) {
                System.out.print(box[i][j]);
                if (j + 1 < C) System.out.print(" ");
            }
            if (i + 1 < R) System.out.println();
        }
        sc.close();
    }
}

Rishikbox βœ“ TCS codevita βœ“

@Mrtrueliving_ix @Mrtrueliving_ix
πŸ’― Plagfree βœ“

Stay tuned for more more codes

https://t.me/Code_alphix

Review β„’ : https://t.me/Code_alphix/8595
❀2