en
Feedback
ACCENTURE | COGNIZANT | IBM | CAPGEMINI

ACCENTURE | COGNIZANT | IBM | CAPGEMINI

Open in Telegram
7 349
Subscribers
-324 hours
-207 days
-10530 days
Posts Archive
IBMβœ…βœ…βœ…βœ…
+1
IBMβœ…βœ…βœ…βœ…

IBMβœ…βœ…βœ…
+1
IBMβœ…βœ…βœ…

Internship Opportunity Alert Company Name - Fractal Job Role : Summer Intern B.tech (all branches) End Date: December 17, 2024 (9 hours left to apply) πŸ”— Apply Link - https://internshipss.com/Fractal-Summer-Intern-2025.html --------------------

IBM βœ…βœ…βœ…
+1
IBM βœ…βœ…βœ…

Capgemini solutions group: https://t.me/cod_solutions

Here we upload COMPANY OA coding questions only like CTS, ACCENTURE, CAPGEMINI...EtcπŸ‘‡πŸ‘‡πŸ‘‡ https://t.me/OA_CODING

GOT SELECTED FOR COGNIZANT & RECEIVED LOI πŸ₯³πŸ₯³πŸ₯³πŸ₯³πŸ₯³ 100% clearance for any exam and interview βœ… Contact: @mlcoder2
GOT SELECTED FOR COGNIZANT & RECEIVED LOI πŸ₯³πŸ₯³πŸ₯³πŸ₯³πŸ₯³ 100% clearance for any exam and interview βœ… Contact: @mlcoder2

Infoedge is hiring for the role of Software Engineer (Java) Experience: 1 - 3 year's Expected CTC: 15 LPA - 25 LPA Apply Link: https://forms.office.com/pages/responsepage.aspx?id=-bXpDrNSUUOBmMSATNZraOFYjL3xL9tIhDqT8JbyeMtUQzhOT1FBOVFZTjJMTjJDV0dYNzkzN0RWQS4u&route=shorturl

Bottom line ON-CAMPUS exam βœ…βœ…βœ… 44mcqs + 1 codingβœ… Contact:@mlcoder2
+2
Bottom line ON-CAMPUS exam βœ…βœ…βœ… 44mcqs + 1 codingβœ… Contact:@mlcoder2

HCL exam done successfullyβœ…βœ…βœ…βœ… 90 mcqs βœ… Contact:@mlcoder2
HCL exam done successfullyβœ…βœ…βœ…βœ… 90 mcqs βœ… Contact:@mlcoder2

Capgemini VLSI βœ…βœ…βœ… Contact:@mlcoder2
Capgemini VLSI βœ…βœ…βœ… Contact:@mlcoder2

CGI ON-CAMPUS EXAM βœ…βœ…βœ… Contact:@mlcoder2
+1
CGI ON-CAMPUS EXAM βœ…βœ…βœ… Contact:@mlcoder2

ACEMEGRADE ON-CAMPUS EXAMβœ…βœ…βœ… Contact : @mlcoder2
ACEMEGRADE ON-CAMPUS EXAMβœ…βœ…βœ… Contact : @mlcoder2

Here we upload COMPANY OA coding questions only like CTS, ACCENTURE, CAPGEMINI...EtcπŸ‘‡πŸ‘‡πŸ‘‡ https://t.me/OA_CODING

AMAZON βœ…βœ…βœ…βœ… Contact : @mlcoder2
+1
AMAZON βœ…βœ…βœ…βœ… Contact : @mlcoder2

Here we upload COMPANY OA coding questions only like CTS, ACCENTURE, CAPGEMINI...EtcπŸ‘‡πŸ‘‡πŸ‘‡ https://t.me/OA_CODING

import java.io.*; import java.util.Scanner; class Main{ public static void main(String[] args){ Scanner sc=new Scanner(System.in); String s=sc.nextLine(); int ans=0; for(int i=0;i<s.length();i++){ ans+=(i+1)*(123-(s.charAt(i))); } System.out.println(ans); } } #capgemini //print reverse ascii string

import java.io.*; import java.util.*; class Main{ public static void main(String[] args){ Scanner sc=new Scanner(System.in); int N=sc.nextInt(); int M=sc.nextInt(); int K=sc.nextInt(); int [] price=new int[N]; int[] protein=new int[N]; for(int i=0;i<N;i++){ price[i]=sc.nextInt(); } for(int i=0;i<N;i++){ protein[i]=sc.nextInt(); } int maxProtein = 0; for (int mask = 0; mask < (1 << N); mask++) { int[][] best= new int[N][2]; for (int i = 0; i < N; i++) { best[i][0] = price[i]; best[i][1] = price[i] / 2; } PriorityQueue<int[]> pq = new PriorityQueue<>( (a, b) -> (b[0] - b[1]) - (a[0] - a[1]) ); int currentPrice = 0; int currentProtein = 0; for (int i = 0; i < N; i++) { if ((mask & (1 << i)) != 0) { currentPrice +=best[i][0]; currentProtein += protein[i]; pq.add(new int[] {best[i][0], best[i][1]}); } } int coupons = 0; while (coupons < K && !pq.isEmpty()) { int[] option = pq.poll(); if (option[0] > option[1]) { currentPrice -= (option[0] - option[1]); coupons++; } } if (currentPrice <= M) { maxProtein = Math.max(maxProtein, currentProtein); } } System.out.println(maxProtein); } } //maximum protein value