TCS digital Coding Questions|Learn to solve coding|By shridhar Sir |

แชร์
ฝัง
  • เผยแพร่เมื่อ 1 ธ.ค. 2024

ความคิดเห็น • 69

  • @gourabchakraborty23
    @gourabchakraborty23 4 ปีที่แล้ว +20

    Sir please make such video for Coding section of TCS Digital.

  • @-NeelimaPravallika
    @-NeelimaPravallika 4 ปีที่แล้ว +16

    sir please make few videos for cracking the tcs nqt coding section...this would be so helpful for us

  • @premkumar-ge1ry
    @premkumar-ge1ry 4 ปีที่แล้ว +2

    Very good explanation sir.Thank u onlinestudy4u for helping the students in the preparation

  • @pallaviner7571
    @pallaviner7571 4 ปีที่แล้ว +11

    Hey can you upload the videos for company's for ECE where it has less of coding and more of the core

  • @shubhammundra5034
    @shubhammundra5034 4 ปีที่แล้ว +2

    The snake pattern question was so easy for a beginner

  • @komalvishwakarma4058
    @komalvishwakarma4058 3 ปีที่แล้ว +1

    # Display the matrix in snake order
    r=int(input("enter the number of row"))
    c=int(input("enter number of column"))
    matrix = []
    for i in range(r):
    a=[]
    for j in range(0,c):
    a.append(int(input()))
    matrix.append(a)
    # print matrix
    for i in range(r):
    for j in range(c):
    print(matrix[i][j],end=" ")
    print()
    print("In snake order")
    #print in snake pattern
    for i in range(r):
    if i == 0 or i %2== 0:
    for j in range(0,c):
    print(matrix[i][j], end= " ")
    if i % 2 !=0:
    for j in reversed(range(c)):
    print(matrix[i][j], end=" ")
    print()
    Same code in python.

  • @naurinsultana1166
    @naurinsultana1166 4 ปีที่แล้ว +6

    U r the best sir

  • @shivoham9547
    @shivoham9547 4 ปีที่แล้ว +3

    Thank for this video 🙏

  • @arushipathak8718
    @arushipathak8718 4 ปีที่แล้ว +4

    Please make more videos for these kind of questions.

  • @gurureddy1861
    @gurureddy1861 3 ปีที่แล้ว

    import numpy as np
    n=int(input())
    l=[ ]
    for i in range(n):
    for j in range(n):
    l.append(int(input()))
    a=np.asarray(l)
    a=np.reshape(a,(n,n))
    for i in range(n):
    for j in range(n):
    if i%2==0:
    print(a[i][j],end=" ")
    else:
    print(a[i][-j-1],end=" ")
    it will be easy in python

  • @shubhammundra5034
    @shubhammundra5034 4 ปีที่แล้ว +2

    Sir please make some videos for the ECE branch ..... With some information of Core companies

  • @surbhikumari4530
    @surbhikumari4530 4 ปีที่แล้ว +4

    Sir plzzz make more videos🙏🙏 of TCS digital

  • @akash_mishra565
    @akash_mishra565 4 ปีที่แล้ว +4

    Please make more videos on this 🙏

  • @ahv4005
    @ahv4005 4 ปีที่แล้ว +2

    Hii
    As per the code it is first taking the 1 test case matrix as input and then printing the snake pattern of first test case matrix elements then taking the 2 nd test case matrix as input and printing the snake pattern of 2nd test case matrix elements
    Could you please let us know how to print snake pattern matrixes elements of one after the other i.e test case 1 and test case 2 matrix elements

    • @gautamnegi6868
      @gautamnegi6868 3 ปีที่แล้ว

      Exactly that is what the question asked for.

    • @startech8525
      @startech8525 3 ปีที่แล้ว

      yeah,i too thinking the same

  • @pratiktalokar5313
    @pratiktalokar5313 4 ปีที่แล้ว +2

    Sir please make more only 15days are left

  • @AyushSingh-qr3go
    @AyushSingh-qr3go 3 ปีที่แล้ว +1

    Could we use C++ STL in TCS Digital coding question

  • @harshalpawar7153
    @harshalpawar7153 4 ปีที่แล้ว +1

    Hello sir, can u make a video on accenture hiring process for 2021 batch?

  • @aswini424
    @aswini424 3 ปีที่แล้ว

    Python tutorial also..for digital preparation

  • @sharathallinonechannel3277
    @sharathallinonechannel3277 2 ปีที่แล้ว

    After compile program direct final submit or not?

  • @jayalakshmilakkakula931
    @jayalakshmilakkakula931 4 ปีที่แล้ว

    sir pls give me which app is better to preparing coding questiones

  • @sumantkumar5650
    @sumantkumar5650 3 ปีที่แล้ว

    Love you sirji

  • @shantikakundu2722
    @shantikakundu2722 3 ปีที่แล้ว

    is the pattern same for mba students please reply

  • @amarjitsingh1620
    @amarjitsingh1620 4 ปีที่แล้ว +9

    Is it true that the python compiler doesn't work properly?

    • @KASIDIABHILASH
      @KASIDIABHILASH 3 ปีที่แล้ว +1

      yeah same doubt

    • @kritikasharma3315
      @kritikasharma3315 3 ปีที่แล้ว

      @@KASIDIABHILASH yes, usme kbhi kbhi library incude nhi hogi jo tum use kr rhe hinge. its better to use c or cpp

  • @sreenukona8486
    @sreenukona8486 4 ปีที่แล้ว +1

    2020batch is eligible

  • @adarshkottakota9647
    @adarshkottakota9647 2 ปีที่แล้ว

    Bro In my Digital exam yesterday I was written two codes and executed but I am not done final submit. Is codes are auto submitted or not 🥲

  • @rk-ej9ep
    @rk-ej9ep 3 ปีที่แล้ว

    Plz do in python

  • @sangeetapoddar5728
    @sangeetapoddar5728 4 ปีที่แล้ว

    Hello sir, bug fan I am

  • @kingfisher3791
    @kingfisher3791 4 ปีที่แล้ว

    Sir , tell how to take input one after other

  • @kaushiksiddharth2912
    @kaushiksiddharth2912 4 ปีที่แล้ว

    Sir , GeeksforGeeks compiler is one of the worst. Try using any another compiler

  • @sailaxminomula5485
    @sailaxminomula5485 4 ปีที่แล้ว +1

    How can we apply/register for tcs digital exam

    • @devaarjunanb5030
      @devaarjunanb5030 4 ปีที่แล้ว

      You can't apply directly.
      You should crack either NQT or Codevita

  • @ramindlamanasa7092
    @ramindlamanasa7092 4 ปีที่แล้ว

    Application link plz ??

  • @lakshmigovindaraju6883
    @lakshmigovindaraju6883 4 ปีที่แล้ว

    Wht is the software that is used for pen?

  • @muskangupta7717
    @muskangupta7717 4 ปีที่แล้ว

    BCA graduates are eligible for this job???

  • @gunjansharma2065
    @gunjansharma2065 4 ปีที่แล้ว

    Int arr[N][N] is showing constant value require error.

    • @tirnasircar2938
      @tirnasircar2938 4 ปีที่แล้ว

      Yes, it will give error if you are using turbo c.

  • @adithyasankar4705
    @adithyasankar4705 4 ปีที่แล้ว +1

    Can you show solutions in Python also ?

    • @akshatsaxena6404
      @akshatsaxena6404 4 ปีที่แล้ว +2

      l=int(input())
      a=[int(x) for x in input().split()]
      a=np.array(a).reshape(l,l)
      c=False
      for i in a:
      if c==False:
      for j in i:
      print(j,end=' ')
      c=not c
      else:
      for j in reversed(i):
      print(j,end=' ')
      c=not c
      print()
      #MUCH EASIER IN PYTHON

    • @believerofwords
      @believerofwords 4 ปีที่แล้ว +1

      for _ in range(int(input())):
      n = int(input())
      arr = [int(x) for x in input().split()]
      ans = []
      j=0
      for i in range(n):
      temp = arr[j:n+j]
      ans.append(temp)
      j+=n
      for i,j in enumerate(ans):
      if(i&1):
      j = j[::-1]
      print(' '.join([str(i) for i in j]),end = ' ')
      else:
      print(' '.join([str(i) for i in j]),end = ' ')
      print()

    • @adithyasankar4705
      @adithyasankar4705 4 ปีที่แล้ว

      Akshat Saxena Thanks :)

    • @adithyasankar4705
      @adithyasankar4705 4 ปีที่แล้ว +1

      Yash Dhiman Thanks :)

  • @Aravindstory
    @Aravindstory 3 ปีที่แล้ว

    When I'm having the exam in November I got exception call nosuchelement scanner exception I don't know why I'm declared scanner class also

    • @sukhendrasingh207
      @sukhendrasingh207 3 ปีที่แล้ว

      Did you forgot to import "util.Scanner" ??

    • @Aravindstory
      @Aravindstory 3 ปีที่แล้ว

      @@sukhendrasingh207 bro I'm imported that too

  • @subhaparamasivan2303
    @subhaparamasivan2303 3 ปีที่แล้ว

    The second T loop doesn't wrks

  • @milanmondal9938
    @milanmondal9938 4 ปีที่แล้ว

    Do as many questions as possible

  • @vikas2435
    @vikas2435 4 ปีที่แล้ว

    Will 2020 pass out eligible for nqt
    Plz reply 😭😭

    • @neerajyadav9412
      @neerajyadav9412 4 ปีที่แล้ว

      yes .. wait codevita next season and apply .. that time you should prepare for this..

    • @vikas2435
      @vikas2435 4 ปีที่แล้ว

      Kya Bhai samaj nahe aya

    • @neerajyadav9412
      @neerajyadav9412 4 ปีที่แล้ว

      @@vikas2435 tcs ek exam conduct krata hai codevita ke naam se 2021 me phir hoga tb apply kr dena ...tcs ka next step kr ke website hai vha jaa ke register kr lo..

    • @priyanshupatidar3880
      @priyanshupatidar3880 4 ปีที่แล้ว

      @@neerajyadav9412 no in codevita 2020 only 21 passouts were eligible and in codevita 2021 only 22 passouts will be eligible

  • @deepakavva317
    @deepakavva317 4 ปีที่แล้ว

    I think coding part is just like open book exam... is it???

  • @S-S445
    @S-S445 4 ปีที่แล้ว

    sir is prepinsta is good to take for campus placements

    • @OnlineStudy4u
      @OnlineStudy4u  4 ปีที่แล้ว +1

      th-cam.com/video/MYtQ3M0rJZQ/w-d-xo.html

    • @S-S445
      @S-S445 4 ปีที่แล้ว

      @@OnlineStudy4u tq

    • @S-S445
      @S-S445 4 ปีที่แล้ว +1

      @@OnlineStudy4u sir Then which one is best for campus placement

    • @OnlineStudy4u
      @OnlineStudy4u  4 ปีที่แล้ว +1

      @@S-S445 onlinestudy4u is the best for campus placement

    • @S-S445
      @S-S445 4 ปีที่แล้ว

      @@OnlineStudy4u yeah sir tq I asked because my friend suggested me. Tq

  • @akshaythakare1199
    @akshaythakare1199 4 ปีที่แล้ว

    When tcs digital exam results are declared?