en
Feedback
INFOSYS EXAM SOLUTIONS

INFOSYS EXAM SOLUTIONS

Open in Telegram

πŸ”₯Guys plz Stop fearing for daily exams πŸ“ πŸ‘¨β€πŸ’» @srksvk is here to help you all at lowest cost possible.πŸ’ͺ πŸŒ€ ” Our Only Aim Is To Let Get Placed To You In A Reputed Company πŸ”₯Effort from our side = πŸ’― πŸ“±Main Channel: @coding_are πŸ“±Tel I'd : @srksvk

Show more

πŸ“ˆ Analytical overview of Telegram channel INFOSYS EXAM SOLUTIONS

Channel INFOSYS EXAM SOLUTIONS (@coding_are) in the English language segment is an active participant. Currently, the community unites 13 544 subscribers, ranking 14 897 in the Education category and 30 554 in the India region.

πŸ“Š Audience metrics and dynamics

Since its creation on Π½Π΅Π²Ρ–Π΄ΠΎΠΌΠΎ, the project has demonstrated rapid growth, gathering an audience of 13 544 subscribers.

According to the latest data from 29 July, 2026, the channel demonstrates stable activity. Although there has been a change in the number of participants by 301 over the last 30 days and by 36 over the last 24 hours, overall reach remains high.

  • Verification status: Not verified
  • Engagement rate (ER): The average audience engagement rate is 6.07%. Within the first 24 hours after publication, content typically collects 2.28% reactions from the total number of subscribers.
  • Post reach: On average, each post receives 820 views. Within the first day, a publication typically gains 308 views.
  • Reactions and interaction: The audience actively supports content: the average number of reactions per post is 3.
  • Thematic interests: Content is focused on key topics such as placement, gaurntee, suree, capgemini, infosy.

πŸ“ Description and content policy

The author describes the resource as a platform for expressing subjective opinions:
β€œπŸ”₯Guys plz Stop fearing for daily exams πŸ“ πŸ‘¨β€πŸ’» @srksvk is here to help you all at lowest cost possible.πŸ’ͺ πŸŒ€ ” Our Only Aim Is To Let Get Placed To You In A Reputed Company πŸ”₯Effort from our side = πŸ’― πŸ“±Main Channel: @coding_are πŸ“±Tel I'd : @srks...”

Thanks to the high frequency of updates (latest data received on 30 July, 2026), the channel maintains relevance and a high level of publication reach. Analytics show that the audience actively interacts with content, making it an important point of influence in the Education category.

13 544
Subscribers
+3624 hours
+1957 days
+30130 days
Posts Archive
Capgemini exam successfully completed by remote access Gaming and codeing round done with all tests cases passed βœ… Contact fo
+2
Capgemini exam successfully completed by remote access Gaming and codeing round done with all tests cases passed βœ… Contact for placement exam @srksbk

All exam help available Infosys Accenture pre exam Amazon Capgemini exam help available Contact fast and book your slots Contact @srksvk 200% suree clearance gaurntee βœ… Note - all company interview help available with sure clearance

All exam help available Infosys Accenture pre exam Amazon Capgemini exam help available Contact fast and book your slots Contact @srksvk 200% suree clearance gaurntee βœ… Note - all company interview help available with sure clearance

Josh technology 3 rounds exam successfully completed by remote access πŸ‘πŸ‘πŸ‘πŸ‘ 3/3 code done with all tests cases passed βœ… Co
+2
Josh technology 3 rounds exam successfully completed by remote access πŸ‘πŸ‘πŸ‘πŸ‘ 3/3 code done with all tests cases passed βœ… Contact for placement exam @srksvk

Josh technology exam successfully completed by remote access πŸ‘πŸ‘πŸ‘πŸ‘πŸ‘πŸ‘ 2/2 code done with all tests cases passed βœ… 35/35 M
+2
Josh technology exam successfully completed by remote access πŸ‘πŸ‘πŸ‘πŸ‘πŸ‘πŸ‘ 2/2 code done with all tests cases passed βœ… 35/35 MCQ done with all tests cases passed βœ… Contact for placement exam @srksvk

All exam help available Infosys Accenture pre exam Amazon Capgemini exam help available Contact fast and book your slots Contact @srksvk 200% suree clearance gaurntee βœ… Note - all company interview help available with sure clearance

Ibm exam successfully completed by remote access πŸ‘πŸ‘πŸ‘ 2/2 code done with all tests cases passed βœ… Contact for placement exa
+2
Ibm exam successfully completed by remote access πŸ‘πŸ‘πŸ‘ 2/2 code done with all tests cases passed βœ… Contact for placement exam @srksvk

Ibm exam successfully completed by remote access πŸ‘πŸ‘πŸ‘ 2/2 code done with all tests cases passed βœ… Contact for placement exa
+1
Ibm exam successfully completed by remote access πŸ‘πŸ‘πŸ‘ 2/2 code done with all tests cases passed βœ… Contact for placement exam @srksvk

All exam help available Infosys Accenture pre exam Amazon Capgemini exam help available Contact fast and book your slots Contact @srksvk 200% suree clearance gaurntee βœ… Note - all company interview help available with sure clearance

10am Swiggy exam successfully completed by remote access πŸ‘πŸ‘πŸ‘πŸ‘πŸ‘ 3/3 code done with all tests cases passed βœ…βœ… Contact for
+2
10am Swiggy exam successfully completed by remote access πŸ‘πŸ‘πŸ‘πŸ‘πŸ‘ 3/3 code done with all tests cases passed βœ…βœ… Contact for placement exam @srksvk

All exam help available Infosys Accenture pre exam Amazon Capgemini exam help available Contact fast and book your slots Contact @srksvk 200% suree clearance gaurntee βœ… Note - all company interview help available with sure clearance

26 April Infosys exam successfully completed by remote access πŸ‘πŸ‘πŸ‘πŸ‘ 5/5 slot done with all tests cases passed βœ…βœ… Contact f
+8
26 April Infosys exam successfully completed by remote access πŸ‘πŸ‘πŸ‘πŸ‘ 5/5 slot done with all tests cases passed βœ…βœ… Contact for placement exam @srksvk

Next code in 5 min

Everyone

Now share this group

https://t.me/coding_are Share this group βœ…

import sys input = sys.stdin.readline def solve(N: int, C1: int, C2: int, C3: int, penalties: list) -> int: INF = 10**30 dp = [INF] * (N + 1) dp[0] = 0 for i in range(1, N + 1): dp[i] = min(dp[i], dp[i - 1] + C1 + penalties[i - 1]) if i >= 2: dp[i] = min(dp[i], dp[i - 2] + C2 + penalties[i - 2]) if i >= 3: dp[i] = min(dp[i], dp[i - 3] + C3 + penalties[i - 3]) return dp[N]

import java.util.*;

class Main {

public static int solve(int n,int k,int[] v,int[] w){

long sumA=0,sumB=0;
ArrayList<Integer> list=new ArrayList<>();

for(int i=0;i<n;i++){
if(v[i]==1)sumA+=w[i];
else sumB+=w[i];
list.add(w[i]);
}

if(sumA>sumB)return 0;

Collections.sort(list,Collections.reverseOrder());

int ops=0;

for(int x:list){
if(ops==k)break;
sumA+=x;
sumB-=x;
ops++;
if(sumA>sumB)return ops;
}

return -1;
}

public static void main(String[] args){
Scanner sc=new Scanner(System.in);

int n=sc.nextInt();
int k=sc.nextInt();

int[] v=new int[n];
for(int i=0;i<n;i++)v[i]=sc.nextInt();

int[] w=new int[n];
for(int i=0;i<n;i++)w[i]=sc.nextInt();

System.out.println(solve(n,k,v,w));
}
}

Go through function name

long long solve(int n,int low,int high,vector<int>& arr){ long long res=0,cur=0,MOD=1000000007; for(int i=0;i<n;i++){ if(arr[i]>=low && arr[i]<=high){ cur++; }else{ res=(res + (cur*(cur+1))/2)%MOD; cur=0; } } res=(res + (cur*(cur+1))/2)%MOD; return res; }