fa
Feedback
INFOSYS EXAM SOLUTIONS

INFOSYS EXAM SOLUTIONS

رفتن به کانال در Telegram

🎖️Main Channel: @PlacementStudio 👉Stop fearing for exams 📝📃 👉 @Ramhelper is here to help you all at lowest cost possible.👨‍💻👩‍💻 👉Chances of getting qualified = 100% ✅✅ 👉Effort from our side = 💯 🎖️Main Channel: @PlacementStudio

نمایش بیشتر
2 141
مشترکین
+124 ساعت
-67 روز
-3630 روز
آرشیو پست ها
LDS code in python 3
+1
LDS code in python 3

Any questions are Left for Accenture exam codes guys .... 🤔 Once check

Longest increasing subsequence
Longest increasing subsequence

Number of selective arrangements in c++
Number of selective arrangements in c++

Longest substring without abstraction . Accenture 12:30 slot code
+1
Longest substring without abstraction . Accenture 12:30 slot code

Nics check code in python Accenture 12:30 slot
+1
Nics check code in python Accenture 12:30 slot

Ibm person got English round test
Ibm person got English round test

Maximum subarray Accenture code in c++
Maximum subarray Accenture code in c++

In python
In python

Factorization code
+2
Factorization code

#include <stdio.h> int main() { int blank_char, tab_char, new_line; blank_char = 0; tab_char = 0; new_line = 0; int c; printf("Number of blanks, tabs, and newlines:\n"); printf("Input few words/tab/newlines\n"); for (; (c = getchar()) != EOF;) { if ( c == ' ' ){ ++blank_char; } if ( c == '\t' ){ ++tab_char; } if ( c == '\n' ){ ++new_line; } } printf("blank=%d,tab=%d,newline=%d\n",blank_char,tab_char,new_line); } C++ Find number of empty fields in a record Code

photo content
+1

C++
C++

Ibm codes

#include <stdio.h> int main() { int blank_char, tab_char, new_line; blank_char = 0; tab_char = 0; new_line = 0; int c; printf("Number of blanks, tabs, and newlines:\n"); printf("Input few words/tab/newlines\n"); for (; (c = getchar()) != EOF;) { if ( c == ' ' ){ ++blank_char; } if ( c == '\t' ){ ++tab_char; } if ( c == '\n' ){ ++new_line; } } printf("blank=%d,tab=%d,newline=%d\n",blank_char,tab_char,new_line); } C++ Find number of empty fields in a record Code

Who need help in tomorrow Accenture exam. Share your friends. I will share answers in this group

Share this group

class GFG{   // Function to return the maximum // water that can be stored public static int maxWater(int[] arr, int n) {           // To store the maximum water     // that can be stored     int res = 0;       // For every element of the array     // except first and last element     for(int i = 1; i < n - 1; i++)     {                   // Find maximum element on its left         int left = arr[i];         for(int j = 0; j < i; j++)         {             left = Math.max(left, arr[j]);         }           // Find maximum element on its right         int right = arr[i];         for(int j = i + 1; j < n; j++)         {             right = Math.max(right, arr[j]);         }           // Update maximum water value         res += Math.min(left, right) - arr[i];     }     return res; }   // Driver code public static void main(String[] args) {     int[] arr = { 0, 1, 0, 2, 1, 0,                   1, 3, 2, 1, 2, 1 };     int n = arr.length;       System.out.print(maxWater(arr,n)); } } Java Rainwater Preservation

C language No words code
C language No words code

Java snake pattern code
Java snake pattern code