You are on page 1of 31

7/2/22, 11:59 PM Tech Mahindra 2nd Round Non-SDE All Asked Coding Repeated Questions with Solution | Non-SDE

Non-SDE Tech & Psychometric A…

Freshersocjob.com - Latest Jobs for Freshers and Interview Prepparation

TECH MAHINDRA Non-SDE ALL Technical


& Non-Technical All Repeated Questions
SOLUTIONS:

https://www.youtube.com/c/PappuCareerGuide/

1. Gp ( Done)

2. Bitwise operation (Done)

3. Frequency Count (Done)

4. Caesar Cipher (Done)

5. Number of Decoding (Done)

6. Longest Common Subsequence 

7. Numbers Puzzle

8. Longest Increasing Subsequence 

9. Moving Apples

10. infix to postfix

11. Penalty

12. Euler’s Totient Function

13. Next Number Generator

14. Next Number Element

15. Maximum Subarray

16. Minimise a String

Join Now
17. Dubai Airport 

https://www.freshersocjob.com/2021/04/tech-mahindra-2nd-round-non-sde-all-asked-coding-questions-with-solution.html 3/38
7/2/22, 11:59 PM Tech Mahindra 2nd Round Non-SDE All Asked Coding Repeated Questions with Solution | Non-SDE Tech & Psychometric A…

18. Possible Decodings


Freshersocjob.com - Latest Jobs for Freshers and Interview Prepparation
19. Longest Decreasing Subsequence 

20. Longest Palindromic subsequence

21. Module 11 code

22. Roots of the Quadratic Equation

23. Maximum Subarray

24. Number of Selective Arrangement

25. The Cuckoo Sequent

26. Character Count

🛑Tech Mahindra Round 2 Non-SDE Tech All Asked Repe…


Repe…

1. Geometric Progression Question with Solution:

Geometric Progression In C++


// Solved By Pappu Career Guide


#include <bits/stdc++.h>

using namespace std; Join Now

https://www.freshersocjob.com/2021/04/tech-mahindra-2nd-round-non-sde-all-asked-coding-questions-with-solution.html 4/38
7/2/22, 11:59 PM Tech Mahindra 2nd Round Non-SDE All Asked Coding Repeated Questions with Solution | Non-SDE Tech & Psychometric A…

int main() {
Freshersocjob.com - Latest Jobs for Freshers and Interview Prepparation

    double second_term;

    double third_term;

    int n;

    cin>>second_term>>third_term>>n;

    double r = third_term/second_term;  //9/3=3


    double a = second_term/r;

    double nth_term = a * pow( r, n-1);


    cout<<nth_term;

return 0;

https://t.me/techmahindra2021crack

In Python

Coming Soon.....

In C

Coming Soon.....

https://www.youtube.com/c/PappuCareerGuide/ Join Now

https://www.freshersocjob.com/2021/04/tech-mahindra-2nd-round-non-sde-all-asked-coding-questions-with-solution.html 5/38
7/2/22, 11:59 PM Tech Mahindra 2nd Round Non-SDE All Asked Coding Repeated Questions with Solution | Non-SDE Tech & Psychometric A…

2. BitWise Operation Question with Solution:


Freshersocjob.com - Latest Jobs for Freshers and Interview Prepparation

In C++

// solved by Pappu Kumar Guide


#include <bits/stdc++.h>

using namespace std;


int main() {

// a#b#c
// ex 
// 10 - binary- 1 0 1 0
// output 2#1#3

int n;

cin>>n;

int a=0; // most


int b=-1; // least


int c=-1;

int i=0;
// solved by Pappu Career Guide

// performing bit marking


Join Now
while(n>0)

https://www.freshersocjob.com/2021/04/tech-mahindra-2nd-round-non-sde-all-asked-coding-questions-with-solution.html 6/38
7/2/22, 11:59 PM Tech Mahindra 2nd Round Non-SDE All Asked Coding Repeated Questions with Solution | Non-SDE Tech & Psychometric A…

Freshersocjob.com - Latest Jobs for Freshers and Interview Prepparation


{
    if(n&1)

  {
        a++;

        if(b==-1)

    {

            b=i;
    }

        c=i;
  }

    i++;

    n=n>>1; //right shift


}

cout<< to_string(a)<<"#" << to_string(b) <<"#" <<


to_string(c);
// solved by Pappu Kumar Guide
return 0;

In Python

Join Now
n=int(input())

https://www.freshersocjob.com/2021/04/tech-mahindra-2nd-round-non-sde-all-asked-coding-questions-with-solution.html 7/38
7/2/22, 11:59 PM Tech Mahindra 2nd Round Non-SDE All Asked Coding Repeated Questions with Solution | Non-SDE Tech & Psychometric A…

bi=bin(n)
Freshersocjob.com - Latest Jobs for Freshers and Interview Prepparation

bi=int(bi[2:])

x=[]

// Solved By Pappu Career Guide

while(bi>0):

    x.append(bi%10)

    bi//=10

a=x.count(1)

b=x.index(1)

x.reverse()

c=len(x)-x.index(1)-1

print(a,b,c,sep="#")

In C

Coming Soon.....

https://t.me/techmahindra2021crack

3. Frequency Count Question with Solution:

Frequency Count In C++


// Solved By Pappu Career Guide


#include <bits/stdc++.h>
Join Now

using namespace std;


https://www.freshersocjob.com/2021/04/tech-mahindra-2nd-round-non-sde-all-asked-coding-questions-with-solution.html 8/38
7/2/22, 11:59 PM Tech Mahindra 2nd Round Non-SDE All Asked Coding Repeated Questions with Solution | Non-SDE Tech & Psychometric A…

Freshersocjob.com - Latest Jobs for Freshers and Interview Prepparation


string helper(string s)

// Solved By Pappu Kumar (Coder Guy)


{
    int arr[26]={0};  // there are 26 alphabets 
in the english char
    for(int i=0;i<s.length();i++) // loop through 
the input string
  {
        arr[s[i]-97]++; // 
to come back with the 0 position

  }
    string result="";

    for(int i=0;i<26;i++)  // for character 


count with loop
  {
        if(arr[i]>0) // if char is present

    {
            char ch = 97+i; // add the value of 
ASCII value of i = 1 - taking b
            result+=ch;

            result+=to_string(arr[i]);

    }

  }

    return result;
Join Now
https://t.me/techmahindra2021crack
}
https://www.freshersocjob.com/2021/04/tech-mahindra-2nd-round-non-sde-all-asked-coding-questions-with-solution.html 9/38
7/2/22, 11:59 PM Tech Mahindra 2nd Round Non-SDE All Asked Coding Repeated Questions with Solution | Non-SDE Tech & Psychometric A…

Freshersocjob.com - Latest Jobs for Freshers and Interview Prepparation


int main() {

    string s;

    cin>>s;

    cout<<helper(s);

    return 0;

In Python

Coming Soon.....

In C

Coming Soon.....

4. Caesar Cipher Question with Solution:

Caesar Cipher In C++


// Solved By Pappu Career Guide


#include <bits/stdc++.h>
using namespace std;
// Solved By Pappu Kumar (Coder Guy)

string helper(string s)
{ Join Now

    string result = ""; // answer store string


https://www.freshersocjob.com/2021/04/tech-mahindra-2nd-round-non-sde-all-asked-coding-questions-with-solution.html 10/38
7/2/22, 11:59 PM Tech Mahindra 2nd Round Non-SDE All Asked Coding Repeated Questions with Solution | Non-SDE Tech & Psychometric A…

Freshersocjob.com - Latest Jobs for Freshers and Interview Prepparation


    for(int i=0;i<s.length();i++) // loop through
 the input string

  {
        char ch = char((s[i] + 3 - 97)%26 + 97);

        result+=ch;

  }

    return result;

}
int main() {

    string s;

    cin>>s;

    cout<<helper(s);

    return 0;

}
https://t.me/techmahindra2021crack

In C

Coming Soon.....

In Python

Coming Soon..... Join Now

https://www.freshersocjob.com/2021/04/tech-mahindra-2nd-round-non-sde-all-asked-coding-questions-with-solution.html 11/38
7/2/22, 11:59 PM Tech Mahindra 2nd Round Non-SDE All Asked Coding Repeated Questions with Solution | Non-SDE Tech & Psychometric A…

https://t.me/placemate
Freshersocjob.com - Latest Jobs for Freshers and Interview Prepparation

5. Number of Decodings

The solution in Python:

def numDecodings(s): 

 if not s:

  return 0

 dp = [0 for x in range(len(s) + 1)] 

 # base case initialization

 dp[0] = 1 

 dp[1] = 0 if s[0] == "0" else 1   #(1)

 for i in range(2, len(s) + 1): 

  # One step jump

  if 0 < int(s[i-1:i]) <= 9:    #(2)

   dp[i] += dp[i - 1]

  # Two step jump

  if 10 <= int(s[i-2:i]) <= 26: #(3)

   dp[i] += dp[i - 2]

 return dp[len(s)]

https://t.me/techmahindra2021crack

Join Now
s=input()

https://www.freshersocjob.com/2021/04/tech-mahindra-2nd-round-non-sde-all-asked-coding-questions-with-solution.html 12/38
7/2/22, 11:59 PM Tech Mahindra 2nd Round Non-SDE All Asked Coding Repeated Questions with Solution | Non-SDE Tech & Psychometric A…

print(numDecodings(s))
Freshersocjob.com - Latest Jobs for Freshers and Interview Prepparation

In C

Coming Soon.....

In c++

Coming Soon.....

6. Longest Common Subsequence 

// Solved By Pappu Career Guide

#include <bits/stdc++.h>

using namespace std;

string helper(string s1 , string s2)

https://t.me/freshersoffcampjobs

    int dp[s1.length()+1][s2.length()+1];

https://t.me/placemate

    for(int i=0;i<=s1.length();i++)

  {

        for(int j=0;j<s2.length();j++)

    {

            dp[i][j]=0;
Join Now
    }

https://www.freshersocjob.com/2021/04/tech-mahindra-2nd-round-non-sde-all-asked-coding-questions-with-solution.html 13/38
7/2/22, 11:59 PM Tech Mahindra 2nd Round Non-SDE All Asked Coding Repeated Questions with Solution | Non-SDE Tech & Psychometric A…

  }
Freshersocjob.com - Latest Jobs for Freshers and Interview Prepparation

https://t.me/freshersoffcampjobs

    for(int i=1;i<=s1.length();i++)

  {

        for(int j=1;j<=s2.length();j++)

    {

            if(s1[i-1]==s2[j-1])

      {

                dp[i][j]=1+dp[i-1][j-1];

      }

            else

      {

                dp[i][j]=max(dp[i-1][j],dp[i][j-1]);

      }

    }

  }

    return dp[s1.length()][s2.length()];

Join Now
int main() {

https://www.freshersocjob.com/2021/04/tech-mahindra-2nd-round-non-sde-all-asked-coding-questions-with-solution.html 14/38
7/2/22, 11:59 PM Tech Mahindra 2nd Round Non-SDE All Asked Coding Repeated Questions with Solution | Non-SDE Tech & Psychometric A…

    string s1;
Freshersocjob.com - Latest Jobs for Freshers and Interview Prepparation

    string s2;

    cin>>s1>>s2;

    cout<<helper(s1,s2);

https://t.me/freshersoffcampjobs

    return 0;

7. Numbers Puzzles Solution in C

// Solved By Pappu Career Guide

#include<stdio.h>

#include <stdlib.h>

void swap(int *x, int *y){

    int temp;

    temp = *x;

    *x = *y;

    *y = temp;

void BubbleSort( int arr[], int n ){

Join Now
    int i, j;

https://www.freshersocjob.com/2021/04/tech-mahindra-2nd-round-non-sde-all-asked-coding-questions-with-solution.html 15/38
7/2/22, 11:59 PM Tech Mahindra 2nd Round Non-SDE All Asked Coding Repeated Questions with Solution | Non-SDE Tech & Psychometric A…

 for(i=0;i<n-1;i++){
Freshersocjob.com - Latest Jobs for Freshers and Interview Prepparation

    for (j = 0; j < n-i-1; j++){ 

           if (arr[j] > arr[j+1]){

              swap(&arr[j], &arr[j+1]);

           }

  }

 }

int Display(int arr[], int n){

    int i;

    for(i=0;i<n;i++){

    printf("%d \n", arr[i]);

 } 

https://t.me/freshersoffcampjobs

 int AbsValue(int arr[],int n){

    int sum=0;

    for(int i=n-1;i>0;--i){

        sum += abs(arr[i]-arr[i-1]);

Join Now
  }

https://www.freshersocjob.com/2021/04/tech-mahindra-2nd-round-non-sde-all-asked-coding-questions-with-solution.html 16/38
7/2/22, 11:59 PM Tech Mahindra 2nd Round Non-SDE All Asked Coding Repeated Questions with Solution | Non-SDE Tech & Psychometric A…

    printf("%d",sum);
Freshersocjob.com - Latest Jobs for Freshers and Interview Prepparation

  }

int main(){

    int arr[] = {3,2,1};

    int n = sizeof(arr) / sizeof(arr[0]);

    BubbleSort(arr, n);

    //Display(arr,n);

    AbsValue(arr,n);

One More Solution of Number of Puzzle

Join Now
https://www.youtube.com/c/PappuCareerGuide/

https://www.freshersocjob.com/2021/04/tech-mahindra-2nd-round-non-sde-all-asked-coding-questions-with-solution.html 17/38
7/2/22, 11:59 PM Tech Mahindra 2nd Round Non-SDE All Asked Coding Repeated Questions with Solution | Non-SDE Tech & Psychometric A…

Freshersocjob.com

- Latest Jobs for Freshers and Interview Prepparation

8. Longest Increasing Subsequence Solution in Python

// Solved By Pappu Career Guide

https://t.me/freshersoffcampjobs

9. Moving Apples

// Solved By Pappu Career Guide

Join Now

https://www.freshersocjob.com/2021/04/tech-mahindra-2nd-round-non-sde-all-asked-coding-questions-with-solution.html 18/38
7/2/22, 11:59 PM Tech Mahindra 2nd Round Non-SDE All Asked Coding Repeated Questions with Solution | Non-SDE Tech & Psychometric A…

Freshersocjob.com - Latest Jobs for Freshers and Interview Prepparation

https://t.me/techmahindra2021crack

10. inFixToPostFix Solution in Python


// Solved By Pappu Career Guide

def inFixToPostFix():

inFix = '3*(x+1)-2/2'

postFix = ''

s = Stack()

for c in inFix:

Join Now
    # if elif chain for anything that c can be

https://www.freshersocjob.com/2021/04/tech-mahindra-2nd-round-non-sde-all-asked-coding-questions-with-solution.html 19/38
7/2/22, 11:59 PM Tech Mahindra 2nd Round Non-SDE All Asked Coding Repeated Questions with Solution | Non-SDE Tech & Psychometric A…

    if c in "0123456789x":
Freshersocjob.com - Latest Jobs for Freshers and Interview Prepparation

        postFix += c

    elif c in "+-":

        if s.isEmpty():

            s.push(c)

        elif s.top() =='(':

            s.push(c)

    elif c in "*/":

        if s.isEmpty():

            s.push(c)

        elif s.top() in "+-(":

            s.push(c)

    elif c == "(":

        s.push(c)

    elif c == ")":

        while s.top() is not '(':

            postFix += s.pop()

        s.pop()

    else:
Join Now

        print("Error")
https://www.freshersocjob.com/2021/04/tech-mahindra-2nd-round-non-sde-all-asked-coding-questions-with-solution.html 20/38
7/2/22, 11:59 PM Tech Mahindra 2nd Round Non-SDE All Asked Coding Repeated Questions with Solution | Non-SDE Tech & Psychometric A…

print(postFix)
Freshersocjob.com - Latest Jobs for Freshers and Interview Prepparation

return postFix

https://t.me/techmahindra2021crack

🛑Tech Mahindra 2nd Round Non-SDE Tech All 12 Sectio…


Sectio…

11. Penalty Solution in C++

// Solved By Pappu Career Guide

#include <bits/stdc++.h>

using namespace std;

int helper(int n, int arr[])

    int penalty = 0;

    sort(arr, arr+n); // inbuild method foro sort the array

    for(int i=1;i<n;i++) // look through all the element in


the array
Join Now
  {

https://www.freshersocjob.com/2021/04/tech-mahindra-2nd-round-non-sde-all-asked-coding-questions-with-solution.html 21/38
7/2/22, 11:59 PM Tech Mahindra 2nd Round Non-SDE All Asked Coding Repeated Questions with Solution | Non-SDE Tech & Psychometric A…

        penalty+=abs(arr[i]-arr[i-1]);  // adding the


Freshersocjob.com - Latest Jobs for Freshers and Interview Prepparation
adjecent element in a penalty variables

  }

    return penalty;

int main() {

    int n;

    cin>>n;

    int arr[n];

    for(int i=0;i<n;i++)

  {

        cin>>arr[i];

  }

    cout<<helper(n, arr);

return 0;

https://t.me/techmahindra2021crack

12. Euler’s Totient Function in C++

// Solved By Pappu Career Guide

Join Now
#include <stdio.h>

https://www.freshersocjob.com/2021/04/tech-mahindra-2nd-round-non-sde-all-asked-coding-questions-with-solution.html 22/38
7/2/22, 11:59 PM Tech Mahindra 2nd Round Non-SDE All Asked Coding Repeated Questions with Solution | Non-SDE Tech & Psychometric A…

int gcd(int a, int b)


Freshersocjob.com - Latest Jobs for Freshers and Interview Prepparation

if (a == 0)

return b;

return gcd(b % a, a);

int phi(unsigned int n)

unsigned int result = 1;

for (int i = 2; i < n; i++)

if (gcd(i, n) == 1)

result++;

return result;

int main()

int n;

for (n = 1; n <= 10; n++)


Join Now

printf("phi(%d) = %d\n", n, phi(n));


https://www.freshersocjob.com/2021/04/tech-mahindra-2nd-round-non-sde-all-asked-coding-questions-with-solution.html 23/38
7/2/22, 11:59 PM Tech Mahindra 2nd Round Non-SDE All Asked Coding Repeated Questions with Solution | Non-SDE Tech & Psychometric A…

return 0;
Freshersocjob.com - Latest Jobs for Freshers and Interview Prepparation

pappu4

13. Next Number Generator in C++

// Solved By Pappu Career Guide

https://www.youtube.com/c/PappuCareerGuide/

14. Next Number Element in C++

// Solved By Pappu Career Guide Join Now

https://www.freshersocjob.com/2021/04/tech-mahindra-2nd-round-non-sde-all-asked-coding-questions-with-solution.html 24/38
7/2/22, 11:59 PM Tech Mahindra 2nd Round Non-SDE All Asked Coding Repeated Questions with Solution | Non-SDE Tech & Psychometric A…

15. Maximu Subarray in C++


Freshersocjob.com - Latest Jobs for Freshers and Interview Prepparation

// Solved By Pappu Career Guide

16. Minimise a String in C++

// Solved By Pappu Career Guide

17. Dubai Airport in C++

// Solved By Pappu Career Guide

18. Possible Decodings in C++

// Solved By Pappu Career Guide

19. Longest Decreasing Subsequence in C++

// Solved By Pappu Career Guide

https://www.youtube.com/c/PappuCareerGuide/


Join Now

https://www.freshersocjob.com/2021/04/tech-mahindra-2nd-round-non-sde-all-asked-coding-questions-with-solution.html 25/38
7/2/22, 11:59 PM Tech Mahindra 2nd Round Non-SDE All Asked Coding Repeated Questions with Solution | Non-SDE Tech & Psychometric A…

Freshersocjob.com - Latest Jobs for Freshers and Interview Prepparation


20. Longest Palindromic subsequence in C++

// Solved By Pappu Career Guide

https://www.youtube.com/c/PappuCareerGuide/

21. module 11 in Python

// Solved By Pappu Career Guide

def remainder(st) :

  ln = len(st)

  rem = 0

  for i in range(0, ln) :

    num = rem * 10 + (int)(st[i]) Join Now

https://www.freshersocjob.com/2021/04/tech-mahindra-2nd-round-non-sde-all-asked-coding-questions-with-solution.html 26/38
7/2/22, 11:59 PM Tech Mahindra 2nd Round Non-SDE All Asked Coding Repeated Questions with Solution | Non-SDE Tech & Psychometric A…

    rem = num % 11
Freshersocjob.com - Latest Jobs for Freshers and Interview Prepparation

  return rem

st = "3435346456547566345436457867978"

print(remainder(st))

https://www.youtube.com/c/PappuCareerGuide/

Join Now
https://www.youtube.com/c/PappuCareerGuide/

https://www.freshersocjob.com/2021/04/tech-mahindra-2nd-round-non-sde-all-asked-coding-questions-with-solution.html 27/38
7/2/22, 11:59 PM Tech Mahindra 2nd Round Non-SDE All Asked Coding Repeated Questions with Solution | Non-SDE Tech & Psychometric A…

Freshersocjob.com - Latest Jobs for Freshers and Interview Prepparation

22. Roots of the Quadratic Equation


Solution

// Solved By Pappu Career Guide

 import static java.lang.Math.*;  

public class Main  

{  

https://t.me/freshersoffcampjobs

static void calculateRoots(int a, int b, int c)  

{  

if (a == 0)   

{  

System.out.println("The value of a cannot be 0.");  

return;  

}  

int d = b * b - 4 * a * c;  

double sqrtval = sqrt(abs(d));  

if (d > 0)    Join Now

https://www.freshersocjob.com/2021/04/tech-mahindra-2nd-round-non-sde-all-asked-coding-questions-with-solution.html 28/38
7/2/22, 11:59 PM Tech Mahindra 2nd Round Non-SDE All Asked Coding Repeated Questions with Solution | Non-SDE Tech & Psychometric A…

{  
Freshersocjob.com - Latest Jobs for Freshers and Interview Prepparation

System.out.println("The roots of the equation are real and


different. \n");  

System.out.println((double)(-b + sqrtval) / (2 * a) +
"\n"+ (double)(-b - sqrtval) / (2 * a));  

}  

else if (d == 0)   

{  

System.out.println("The roots of the equation are real and


same. \n");  

System.out.println(-(double)b / (2 * a) + "\n"+ -
(double)b / (2 * a));  

}  

else   

{  

System.out.println("The roots of the equation are


complex and different. \n");  

System.out.println(-(double)b / (2 * a) + " + i"+ sqrtval


+ "\n"+ -(double)b / (2 * a)+ " - i" + sqrtval);  

}  

}  

https://t.me/freshersoffcampjobs

public static void main(String args[])  


Join Now

{  
https://www.freshersocjob.com/2021/04/tech-mahindra-2nd-round-non-sde-all-asked-coding-questions-with-solution.html 29/38
7/2/22, 11:59 PM Tech Mahindra 2nd Round Non-SDE All Asked Coding Repeated Questions with Solution | Non-SDE Tech & Psychometric A…

int a = 1, b = -2, c = -3;      


Freshersocjob.com - Latest Jobs for Freshers and Interview Prepparation

calculateRoots(a, b, c);  

}  

23. Maximum Subarray Solution

// Solved By Pappu Career Guide

class Solution(object):

   def maxSubArray(self, nums):

      """

      :type nums: List[int]

      :rtype: int

      """

      dp = [0 for i in range(len(nums))]

      dp[0] = nums[0]

      for i in range(1,len(nums)):

         dp[i] = max(dp[i-1]+nums[i],nums[i])

      #print(dp)

      return max(dp)

nums = [-2,1,-3,7,-2,2,1,-5,4]
Join Now

ob1 = Solution()
https://www.freshersocjob.com/2021/04/tech-mahindra-2nd-round-non-sde-all-asked-coding-questions-with-solution.html 30/38
7/2/22, 11:59 PM Tech Mahindra 2nd Round Non-SDE All Asked Coding Repeated Questions with Solution | Non-SDE Tech & Psychometric A…

print(ob1.maxSubArray(nums))
Freshersocjob.com - Latest Jobs for Freshers and Interview Prepparation

24. Number of Selective Arrangement

// Solved By Pappu Career Guide

https://www.youtube.com/c/PappuCareerGuide/

🛑Tech Mahindra 2nd Round 12th April Non-S…


Non-S…

Join Now

https://www.freshersocjob.com/2021/04/tech-mahindra-2nd-round-non-sde-all-asked-coding-questions-with-solution.html 31/38
7/2/22, 11:59 PM Tech Mahindra 2nd Round Non-SDE All Asked Coding Repeated Questions with Solution | Non-SDE Tech & Psychometric A…

Freshersocjob.com - Latest Jobs for Freshers



and Interview Prepparation

25. The Cuckoo Sequent Solution

// Solved By Pappu Career Guide

Join Now

https://www.freshersocjob.com/2021/04/tech-mahindra-2nd-round-non-sde-all-asked-coding-questions-with-solution.html 32/38
7/2/22, 11:59 PM Tech Mahindra 2nd Round Non-SDE All Asked Coding Repeated Questions with Solution | Non-SDE Tech & Psychometric A…

Freshersocjob.com - Latest Jobs for Freshers and Interview Prepparation

https://www.youtube.com/c/PappuCareerGuide/

26. Character Count Solution

// Solved By Pappu Career Guide

https://www.youtube.com/c/PappuCareerGuide/

Join Now

https://www.freshersocjob.com/2021/04/tech-mahindra-2nd-round-non-sde-all-asked-coding-questions-with-solution.html 33/38

You might also like