TCS Advanced Coding Questions and Answers 2024

Поділитися
Вставка
  • Опубліковано 17 лис 2024

КОМЕНТАРІ • 21

  • @h_r78
    @h_r78 10 місяців тому +5

    s = int(input("Enter a digit: "))
    s = str(s)
    odd, even = 0, 0
    for i in range(len(s)):
    if i % 2 == 0:
    odd += int(s[i])
    else:
    even += int(s[i])
    print(abs(odd - even))

  • @SIVACHARANGUDDANTI
    @SIVACHARANGUDDANTI 10 місяців тому +3

    The code for Giveaway question is as follows:
    s=input("Please enter the Input : ")
    even_digitsum=0
    odd_digitsum=0
    for i in range(len(s)):
    if(i%2==0):
    even_digitsum=even_digitsum+int(s[i])
    else:
    odd_digitsum=odd_digitsum+int(s[i])
    diff=abs(even_digitsum-odd_digitsum)
    print("The even digit sum is :",even_digitsum)
    print("The odd digit sum is :" ,odd_digitsum)
    print("The difference between even and odd digit is : %d"%(diff))

  • @shaikabdul887
    @shaikabdul887 7 місяців тому

    given_list=input()
    new_list=[]
    even_digit=0
    odd_digit=0
    for i in given_list:
    new_list.append(int(i))
    for i in range (len(new_list)):
    if (i%2==0):
    even_digit+=new_list[i]
    else:
    odd_digit+=new_list[i]
    if even_digit

  • @rajatkuballi7641
    @rajatkuballi7641 10 місяців тому

    n=list(map(int,input()))
    sum_even=0
    sum_odd=0
    for i in range(len(n)):
    if i%2==0:
    sum_even=sum_even+n[i]
    else:
    sum_odd=sum_odd+n[i]
    print(abs(sum_even-sum_odd))

  • @kandlikarRevanth
    @kandlikarRevanth 10 місяців тому +4

    here is the code for the question asked in the video:
    import java.util.*;
    public class Main
    {
    public static void main(String[] args) {
    Scanner scanner= new Scanner(System.in);
    int sume=0;
    int sumo=0;
    String s= scanner.next();
    for(int i=1;i

    • @somurajk8919
      @somurajk8919 Місяць тому +1

      it will give wrong output bcoz in for loop it start with i=0 .

  • @ritikprasad6300
    @ritikprasad6300 10 місяців тому

    Please tell me what will be the exact sections in tcs nqt exam if i have applied for HR role in IT

    • @PrepInsta
      @PrepInsta  10 місяців тому

      Kindly go though it's recruitment process on Prepinsta.com

  • @gauravtales3
    @gauravtales3 10 місяців тому

    this is very nice to see and very helpful.
    3rd Comment.

    • @PrepInsta
      @PrepInsta  10 місяців тому

      Glad it was helpful!

  • @janhavishrivastava9979
    @janhavishrivastava9979 10 місяців тому

    Waiting for video from prepinsta 🎉🎉🎉!!!

  • @PrepInsta
    @PrepInsta  10 місяців тому

    Launching TCS Crash Course, Checkout the registration link in the description!

  • @PrepInsta
    @PrepInsta  10 місяців тому

    Link for PrepInsta Prime: prepinstaprime.com/purchase

  • @raj3718
    @raj3718 10 місяців тому

    Please upload more videos

    • @PrepInsta
      @PrepInsta  10 місяців тому

      We heard youuuuuu

  • @harshitapillay9515
    @harshitapillay9515 10 місяців тому

    1st comment

  • @AnilKumarSala
    @AnilKumarSala 10 місяців тому

    5th comment

  • @janhavishrivastava9979
    @janhavishrivastava9979 10 місяців тому

    2nd comment

  • @tulasisree1374
    @tulasisree1374 10 місяців тому

    GIVEAWAY QUESTION:
    a=input('Enter a number: ')
    e=0
    o=0
    for i in range(1,len(a)+1):
    if(i%2==0):
    e+=int(a[i-1])
    else:
    o+=int(a[i-1])
    print(abs(e-o))