Тёмный

TCS Advanced Coding Questions and Answers 2024 

Prep Insta
Подписаться 485 тыс.
Просмотров 20 тыс.
50% 1

TCS Advanced Coding Questions and Answers 2024
TCS Crash Course Just @1499 : prepinsta.com/...
Visit: prepinstaprime...
Use "TCS" Coupon code for the maximum discount. (Maximum Discounts)
TCS NQT Coding Playlist : • TCS Ninja Coding Quest...
Learn Coding with PrepInsta Top 100 codes - prepinsta.com/...
For Updates on Placements Join :
1. Instagram - prepinsta.com/...
2. Whatsapp - prepinsta.com/...
3. Telegram - prepinsta.com/...
4. LinkedIn - / prepinsta
5. Discord - prepinsta.com/...
Follow our Mentors -
1.Atulya Kaushik - / atulya.kaushik
2.Manish Agarwal - / manish.agarwal01

Опубликовано:

 

7 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 20   
@h_r78
@h_r78 8 месяцев назад
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))
@user-fr3hs3pg7x
@user-fr3hs3pg7x 8 месяцев назад
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 5 месяцев назад
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
@user-cj1zk3jc9d
@user-cj1zk3jc9d 8 месяцев назад
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
@rajatkuballi7641
@rajatkuballi7641 8 месяцев назад
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))
@gauravtales3
@gauravtales3 8 месяцев назад
this is very nice to see and very helpful. 3rd Comment.
@PrepInsta
@PrepInsta 8 месяцев назад
Glad it was helpful!
@PrepInsta
@PrepInsta 8 месяцев назад
Launching TCS Crash Course, Checkout the registration link in the description!
@janhavishrivastava9979
@janhavishrivastava9979 8 месяцев назад
Waiting for video from prepinsta 🎉🎉🎉!!!
@PrepInsta
@PrepInsta 8 месяцев назад
Coming soon!
@PrepInsta
@PrepInsta 8 месяцев назад
Link for PrepInsta Prime: prepinstaprime.com/purchase
@ritikprasad6300
@ritikprasad6300 8 месяцев назад
Please tell me what will be the exact sections in tcs nqt exam if i have applied for HR role in IT
@PrepInsta
@PrepInsta 7 месяцев назад
Kindly go though it's recruitment process on Prepinsta.com
@AnilKumarSala
@AnilKumarSala 8 месяцев назад
5th comment
@harshitapillay9515
@harshitapillay9515 8 месяцев назад
1st comment
@janhavishrivastava9979
@janhavishrivastava9979 8 месяцев назад
2nd comment
@raj3718
@raj3718 8 месяцев назад
Please upload more videos
@PrepInsta
@PrepInsta 8 месяцев назад
We heard youuuuuu
@tulasisree1374
@tulasisree1374 8 месяцев назад
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))
Далее
Friends
00:32
Просмотров 958 тыс.
IT'S MY LIFE + WATER  #drumcover
00:14
Просмотров 17 млн
Front-end web development is changing, quickly
3:43
Просмотров 831 тыс.
Lecture 1: Introduction to CS and Programming Using Python
1:03:30
Google Frontend Interview With A Frontend Expert
47:59
Google Coding Interview With A High School Student
57:24
TCS Logical Reasoning Questions and Answers 2024
42:47