TCS Digital Coding Question

TCS Digital Programming Questions with Answers 2024

TCS Digital Coding Questions are not like a general Coding Round Questions with Solutions it is all together different from C programming.

Here below you will find similar type programming questions that are asked constantly in TCS Digital test.

Note:- Here you will get updated pattern of TCS Digital coding exam pattern 2024. This will help you in preparation of TCS Digital exam.

TCS Digital Coding Question
Total number of questions3 questions
Total Time Duration90 minutes
Cut OffOutput is Necessary
Negative MarkingNo

TCS Digital Programming Questions

The languages that you can use in the test are –

  1. C
  2. C#
  3. C++
  4. Erlang
  5. go
  6. Haskel
  7. Java
  8. Java 7
  9. Kotlin
  10. Lua
  11. Perl
  12. Python
  13. Python3
  14. Ruby
  15. Scala

TCS Digital Coding Questions marking Scheme

TCS Digital Recruitment Drive has a Advance Coding round. This round is a bit different from the normal coding round that is asked in TCS. There will be 3 problem statement and each one has total of 2 visible and 3 hidden test cases, instead of total of 5 test cases. Test cases are basically compiler generated input which will check if your output is coming as expected.

Total Time for this section is 90 mins

Coding Marks
Marks
Type
0 Test Case
0 Marks
NA
1 Test Case
5 Marks
Shown
2 Test Case
8 Marks
Shown
3 Test Case
12 Marks
Hidden
4 Test Case
18 Marks
Hidden
5 Test Case
22 Marks
Hidden

Prime Course Trailer

Related Banners

Get PrepInsta Prime & get Access to all 200+ courses offered by PrepInsta in One Subscription

TCS Digital
Day 1 Slot 1

Question 1

Problem Description -: Given an array Arr[ ] of N integers and a positive integer K. The task is to cyclically rotate the array clockwise by K.

Note : Keep the first of the array unaltered. 

Example 1:

  • 5  —Value of N
  • {10, 20, 30, 40, 50}  —Element of Arr[ ]
  • 2  —–Value of K

Output :

40 50 10 20 30

Example 2:

  • 4  —Value of N
  • {10, 20, 30, 40}  —Element of Arr[]
  • 1  —–Value of K

Output :

40 10 20 30

 

Question 2

Problem Description -:  Given two non-negative integers n1 and n2, where n1

For example:

Suppose n1=11 and n2=15.

There is the number 11, which has repeated digits, but 12, 13, 14 and 15 have no repeated digits. So, the output is 4.

Example1:

Input:

  • 11 — Vlaue of n1
  • 15 — value of n2

Output:

  • 4

Example 2:

Input:

  • 101 — value of n1
  • 200 — value of n2

Output:

  • 72

Question 3

Problem Description -:  In this 3 Palindrome, Given an input string word, split the string into exactly 3 palindromic substrings. Working from left to right, choose the smallest split for the first substring that still allows the remaining word to be split into 2 palindromes.

Similarly, choose the smallest second palindromic substring that leaves a third palindromic substring.

If there is no way to split the word into exactly three palindromic substrings, print “Impossible” (without quotes). Every character of the string needs to be consumed.

Cases not allowed –

  • After finding 3 palindromes using above instructions, if any character of the original string remains unconsumed.
  • No character may be shared in forming 3 palindromes.

Constraints

  • 1 <= the length of input sting <= 1000

Input

  • First line contains the input string consisting of characters between [a-z].

Output

  • Print 3 substrings one on each line.

Time Limit

1

Examples

Example 1

Input

nayannamantenet

Output

nayan

naman

tenet

Explanation

  • The original string can be split into 3 palindromes as mentioned in the output.
  • However, if the input was nayanamantenet, then the answer would be “Impossible”.

Example 2

Input

aaaaa

Output

a

a

aaa

Explanation

  • The other ways to split the given string into 3 palindromes are as follows –
  • [a, aaa, a], [aaa, a, a], [aa, aa, a], etc.
  • Since we want to minimize the length of the first palindromic substring using left to right processing, the correct way to split is [a, a, aaa].

Example 3

Input

aaaabaaaa

Output

a

aaabaaa

a

Explanation

  • The other ways to split the given string into 3 palindromes are as follows –
  • [aaaa, b, aaaa], [aa, aabaa, aa], etc.
  • Since we want to minimize the length of the first palindromic substring using left to right processing, the correct way to split is [a, aaabaaa, a].

Question 4

Problem Statement -: In this even odd problem Given a range [low, high] (both inclusive), select K numbers from the range (a number can be chosen multiple times) such that sum of those K numbers is even.

Calculate the number of all such permutations.

As this number can be large, print it modulo (1e9 +7).

Constraints

  • 0 <= low <= high <= 10^9
  • K <= 10^6.

Input

  • First line contains two space separated integers denoting low and high respectively
  • Second line contains a single integer K.

Output

  • Print a single integer denoting the number of all such permutations

Time Limit

1

Examples

Example 1

Input

4 5

3

Output

4

Explanation

There are 4 valid permutations viz. {4, 4, 4}, {4, 5, 5}, {5, 4, 5} and {5, 5, 4} which sum up to an even number.

Example 2

Input

1 10

2

Output

50

Explanation

There are 50 valid permutations viz. {1,1}, {1, 3},.. {1, 9} {2,2}, {2, 4},… {2, 10} . . . {10, 2}, {10, 4},… {10, 10}. These 50 permutations, each sum up to an even number.

Question 5

Roco is an island near Africa which is very prone to forest fire. Forest fire is such that it destroys the complete forest. Not a single tree is left.This island has been cursed by God , and the curse is that whenever a tree catches fire, it passes the fire to all its adjacent tree in all 8 directions,North, South, East, West, North-East, North-West, South-East, and South-West.And it is given that the fire is spreading every minute in the given manner, i.e every tree is passing fire to its adjacent tree.Suppose that the forest layout is as follows where T denotes tree and W denotes water.

Your task is that given the location of the first tree that catches fire, determine how long would it take for the entire forest to be on fire. You may assume that the lay out of the forest is such that the whole forest will catch fire for sure and that there will be at least one tree in the forest

Input Format:

  • First line contains two integers, M, N, space separated, giving the size of the forest in terms of the number of rows and columns respectively.
  • The next line contains two integers X,Y, space separated, giving the coordinates of the first tree that catches the fire.
  • The next M lines, where ith line containing N characters each of which is either T or W, giving the position of the Tree and Water in the  ith row of the forest.

Output Format:

Single integer indicating the number of minutes taken for the entire forest to catch fire

Constrains:

  • 3 ≤ M ≤ 20
  • 3 ≤ N ≤ 20

Sample Input 1:

3 3
W T T
T W W
W T T
Sample Output 1:

5

Explanation:
In the second minute,tree at (1,2) catches fire,in the third minute,the tree at (2,1) catches fire,fourth minute tree at (3,2) catches fire and in the fifth minute the last tree at (3,3) catches fire.
Sample Input 2:
6 6
1 6
W T T T T T
T W W W W W
W T T T T T
W W W W W T
T T T T T T
T W W W W W

Sample Output 2:

16

Question 6

Problem Statement:-

Compute the nearest larger number by interchanging its digits updated.Given 2 numbers a and b find the smallest number greater than b by interchanging the digits of a and if not possible print -1.

  • Input Format
    2 numbers a and b, separated by space.
  • Output Format
    A single number greater than b.

    If not possible, print -1

  • Constraints

    1 <= a,b <= 10000000

Example 1:

Sample Input:

    459 500

Sample Output:
    549

Example 2:

Sample Input:

    645757 457765

Sample Output:
    465577

Question 7

Problem Statement:- In a Conference ,attendees are invited for a dinner after the conference.The Co-ordinator,Sagar arranged around round tables for dinner and want to have an impactful seating experience for the attendees.Before finalizing the seating arrangement,he wants to analyze all the possible arrangements.These are R round tables and N attendees.In case where N is an exact multiple of R,the number of attendees must be exactly N//R,,If N is not an exact multiple of R, then the distribution of attendees must be as equal as possible.Please refer to the example section before for better understanding.
For example, R = 2 and N = 3
All possible seating arrangements are
(1,2) & (3)
(1,3) & (2)
(2,3) & (1)
Attendees are numbered from 1 to N.

Input Format:

  • The first line contains T denoting the number of test cases.
  • Each test case contains two space separated integers R and N, Where R denotes the number of round tables and N denotes the number of attendees.

Output Format:

Single Integer S denoting the number of possible unique arrangements.

Constraints:

  • 0 <= R <= 10(Integer)
  • 0 < N <= 20 (Integer)
Sample Input 1:
1
2 5
Sample Output 1:

10

Explanation:

R = 2, N = 5

(1,2,3) & (4,5)

(1,2,4) & (3,5)

(1,2,5) & (3,4)

(1,3,4) & (2,5)

(1,3,5) & (2,4)

(1,4,5) & (2,3)

(2,3,4) & (1,5)

(2,3,5) & (1,4)

(2,4,5) & (1,3)

(3,4,5) & (1,2)

Arrangements like

(1,2,3) & (4,5)

(2,1,3) & (4,5)

(2,3,1) & (4,5) etc.

But as it is a round table,all the above arrangements are same.

Paid Material: Study Your TCS Digital Coding Latest Paid Material Here

TCS Digital Coding Round Questions

TCS Digital Coding Round Questions in Test Pattern and Syllabus

TCS Digital Information
Number of Questions 3
Total time to Solve 90 mins
Difficulty Level Moderate to high
Cut-off Run 4 test cases

TCS Digital C Command Line Programming Basics

  • Keywords like getc, scanf, getch, getchar etc can not be used.
  • Instead we use command line arguments to fetch values.

Before reading further for TCS Digital Coding Round Questions, I will suggest not to freak out if you don’t understand in first go. Read everything once and then when you read again things will start to make sense. It is the best resource on the internet to know about TCS  Digital command line Argument Type Questions and TCS Digital C Programming Questions and Answers.

TCS Digital C Command Line Programming Basics

  • Keywords like getc, scanf, getch, getchar etc can not be used.
  • Instead we use command line arguments to fetch values.

Before reading further for TCS Digital Coding Round Questions, I will suggest not to freak out if you don’t understand in first go. Read everything once and then when you read again things will start to make sense. It is the best resource on the internet to know about TCS  Digital command line Argument Type Questions and TCS Digital C Programming Questions and Answers.

TCS Digital Programming Test Facts and Questions

TCS  Digital coding test based facts and tricks, TCS Digital Programming Questions, TCS DigitalProgramming Test –
 
TCS Coding Round Topics Difficulty Time to solve
LCM & HCF Medium 20 mins
Swapping and Reversal Hard 20 mins
Factorial and Series Medium 20 mins
Operations on Numbers Easy 20 mins
Misc Medium – Hard 20 mins

TCS Digital Coding Questions with Answers

Let us consider this, if you wanted to write a basic C program then you would’ve written a main function that would’ve looked like in compiler for TCS Coding Round Questions – 

int Main(){

// some code

}}

However in command line arguments we write like this – 

int main(int argc, char *argv[]){

  • argc – It is known as Argument Count and as clear from the name it stores the Count of number of Arguments.
  • argv[] – Pointer, contains location of all the values(arguments).
  • *argv[] – Array of values of all the arguments.
  • They are parameters/arguments supplied to the program when it is invoked.

Thus, now we have two things

  1. Total Count of number of Arguments.
  2. All the values/pointer location of arguments stored in an array.

Now, you will need one more thing i.e. atoi();

  • atoi(); – Converts string into int and atoi(argv[i]); will give the value of argument at ith location in int type format.

Now you can use an int val = atoi(argv[i]); to store the value and then print it with printf(); function.

Check out this video Below to learn how to Solve Command Line Programming.

Additional Information (FAQ's)

What is the level of difficulty of the question asked in TCS programming round?

The difficulty level of the TCS Programming round is medium to hard. You should have good command over C/C++ input/output or pattern based programs.

 What languages can we use in TCS  Digital Coding Round Questions?

In TCS Digital Coding Round Questions currently you can  use C/C++ , Java , python + more to code.

How to clear the TCS Digital coding round?

First you must learn command line programming from our coding dashboard and then try sample questions given on the dashboard to know how to clear the tcs coding round  and TCS Digital C Programming Questions and Answers

Disclaimer: The Words Like “Placement Papers” and “Previous Year Papers” are used here for Google Search Purposes only and may not be. All these questions could be freely available on the internet, we are only charging students for the PrepInsta’s Mock Test experiences and Analytics as well as preparation for the exam. Prepinsta does not guarantee any recurrence of the questions in the exam however we believe that from our practise questions the exam should atleast be similar in pattern as per syllabus or difficulty. These are only practise mock questions. PrepInsta has compiled these from various internet sources and made them as per mock experience for students ease and are offering analytics as per performance

Get over 200+ course One Subscription

Courses like AI/ML, Cloud Computing, Ethical Hacking, C, C++, Java, Python, DSA (All Languages), Competitive Coding (All Languages), TCS, Infosys, Wipro, Amazon, DBMS, SQL and others

Checkout list of all the video courses in PrepInsta Prime Subscription

Checkout list of all the video courses in PrepInsta Prime Subscription

13 comments on “TCS Digital Coding Question”


  • Velaga

    Q-6

    from itertools import permutations
    a,b=map(int,input().split())
    a=list(str(a))
    d=[]
    l=list(permutations((a),len(a)))
    for i in l:
    i=int(“”.join(i))
    if i>b:
    d.append(i)
    if len(d)>0:
    d.sort()
    print(d[0])
    else:
    print(-1)


  • Velaga

    from itertools import combinations_with_replacement
    from itertools import permutations
    n1,n2=map(int,input().split())
    l=[i for i in range(n1,n2+1)]
    n=int(input())
    a=list(combinations_with_replacement(l,n))

    for i in a:
    for k in list(permutations(list(i),n)):
    if k not in a:
    a.append(k)
    c=0
    for ab in a:
    ab=list(ab)
    if sum(ab)%2==0:
    c=c+1
    print(c)


  • Ankit

    Question 4 Solution :-
    Scanner sc= new Scanner(System.in);
    int n1=sc.nextInt();
    int n2=sc.nextInt();
    int k=sc.nextInt();

    int num=n2-n1+1;
    int totalComb= (int)(Math.pow(num, k));

    //out of all combinations half will give even sum
    int evenSum=(int)Math.ceil(totalComb/2.0);
    System.out.print(evenSum);


  • shounakpurnapatre1

    Question 6 Can be get solve with this way with minimum number of lines:
    def toString(List):
    return ”.join(List)

    # a =String , l = Starting index , r = Ending index = n-1.
    def permute(a, l, r):
    if l == r:
    ls.append(toString(a))
    else:
    for i in range(l, r+1):
    a[l], a[i] = a[i], a[l]
    permute(a, l+1, r)
    a[l], a[i] = a[i], a[l]

    x, y = map(int, input().split())
    x = str(x)
    n = len(x)
    a = list(x)
    ls = []
    permute(a, 0, n-1)

    test_list = list(map(int, ls)) # Converting all string into integer
    test_list.sort() # Sort the list

    for i in range(len(test_list)):
    if test_list[i] > y:
    print(test_list[i])
    break


    • shounakpurnapatre1

      # ************************* UPDATED ******************
      # a =String , l = Starting index , r = Ending index = n-1.
      def permute(a, l, r, y):
      if l == r:

      temp2 = ”.join(a)
      if int(temp2) > y:
      flag = 1
      print(temp2)
      exit()
      else:
      for i in range(l, r+1):
      a[l], a[i] = a[i], a[l]
      permute(a, l+1, r, y)
      a[l], a[i] = a[i], a[l]

      def getSortedNumber(n):
      number = str(n)
      number = ”.join(sorted(number))
      number = int(number)
      return number

      x, y = map(int, input().split())
      x = getSortedNumber(x)
      x = str(x)
      n = len(x)
      a = list(x)
      flag = 0
      permute(a, 0, n-1, y)
      if flag == 0:
      print(-1)


  • Priyanka

    Thank you prepinsta for the questions this type of questions got repeated in the exam.Can you please tell me Where can I prepare for codevita or competitive coding?


  • avik394451

    Solutions are really helpful. But where can I get more practice questions for Codevita and other Hackathons? Can you please guide me?


  • Shruti

    Thankyou PrepInsta. I am highly grateful to you for the questions you provided. I had my test recently and the coding questions were very similar to these. Please help me with the codevita questions too. Where can I find them?


  • Swastik

    Question 4
    public class Test8 {

    public static int fact(int n) {
    int fac = 1;
    for(int i=1;i<=n;i++) {
    fac = fac * i;
    }
    return fac;
    }
    public static int comb(int a, int b) {
    return fact(a) / (fact(a-b) * fact(b));
    }
    public static int sum(int a, int b, int c) {
    int odd = 0, even = 0,total_outcome,odd_outcome = 0;
    for(int i = a;i<=b;i++) {
    if(i%2 == 0) {
    even++;
    }else {
    odd++;
    }
    }
    for(int j = 0;j<=c;j++) {
    if(j%2!=0) {
    odd_outcome = odd_outcome + comb(c,j) * (int)Math.pow(odd, j) * (int)Math.pow(even, c-j);
    }
    }
    total_outcome = (int) Math.pow(odd+even, c);
    return total_outcome – odd_outcome;
    }
    public static void main(String[] args) {
    Scanner s = new Scanner(System.in);
    int a = s.nextInt();
    int b = s.nextInt();
    int c = s.nextInt();

    System.out.println(sum(a, b, c));
    }

    }


  • abhitejkumarvoruganti

    import itertools
    l,h=map(int,input().split())
    k=int(input())
    x=range(l,h+1)
    perm=[p for p in itertools.product(x, repeat=k)]
    cnt=0
    for i in list(perm):
    if sum(i)%2==0:
    cnt+=1
    print(cnt)


  • abhitejkumarvoruganti

    # Python3 program for the above approach

    # Function to return the number
    # of all permutations such that
    # sum of K numbers in range is even
    def countEvenSum(low, high, k):

    # Find total count of even and
    # odd number in given range
    even_count = high / 2 – (low – 1) / 2
    print(even_count,’even_count’)
    odd_count = (high + 1) / 2 – low / 2
    print(odd_count,’odd_count’)

    even_sum = 1
    odd_sum = 0

    # Iterate loop k times and update
    # even_sum & odd_sum using
    # previous values
    for i in range(0, k):

    # Update the prev_even and
    # odd_sum
    prev_even = even_sum
    print(prev_even,’prev_even’)
    prev_odd = odd_sum
    print(prev_odd,’prev_odd’)

    # Even sum
    even_sum = ((prev_even * even_count) +
    (prev_odd * odd_count))
    print(even_sum,’even_sum’)

    # Odd sum
    odd_sum = ((prev_even * odd_count) +
    (prev_odd * even_count))
    print(odd_sum,’odd_suma’)

    # Return even_sum
    print(int(even_sum))

    # Driver Code

    # Given ranges
    low = int(input());
    high = int(input());

    # Length of permutation
    K = int(input());

    # Function call
    countEvenSum(low, high, K);


  • Niranjana

    Number series with twist-2 Python program solution is wrong. The correct answer should be:

    n = int(input(‘enter the number: ‘))

    a= 1

    b= 1

    for i in range(1, n+1):

    if(i%2!=0):

    a = a*2

    else:

    b = b*3

    if(n%2!=0):

    print(‘\n{} term of series is {}\t’.format(n,a/2))

    else:

    print(‘\n{} term of series is {}\t’.format(n,b/3))