Это видео недоступно.
Сожалеем об этом.

TCS Python Interview By TCS Team 2024 ! Real Live Recording ! TCS NQT and Ninja Hiring

Поделиться
HTML-код
  • Опубликовано: 26 дек 2021
  • TCS Python interview for freshers, TCS python interview questions, python TCS interview questions, python interview questions and answers for freshers, python interview questions for freshers, python data science interview questions for freshers
    TCS python interview,
    TCS Python interview questions for freshers,
    TCS python interview questions for experienced,
    TCS python interview experience,
    TCS python interview questions and answers,
    TCS python interview questions,
    TCS python interview questions pdf,
    TCS python interview questions 2024,
    Python programs for TCS interview,
    TCS python developer interview experience
    TCS interview,
    TCS Python Interview Question,
    TCS interview experience 2024,
    TCS interview for freshers in Tamil,
    TCS interview for freshers 2024,
    TCS interview process,
    TCS interview for non it students,
    This Video is only for Education Purposes. If you Have any Query contact us - at codiminati@gmail.com video will be deleted
    follow us on Instagram -
    / codiminati
    contact us-
    codiminati@gmail.com

Комментарии • 333

  • @sawansharma4550
    @sawansharma4550 Год назад +261

    Q1. How do u code in python?
    Answer-
    • Python is case senstive
    • no command terminator
    • indendenation is very important in python
    • Strings can be represented by '' "" or """ """
    Q2. What is Suite in Python?
    Answer- A group of individual statements, which make a single code block are called suites in Python.
    Q3 what are different types of Data types in python?
    Answer-
    Python has below types of data types:-
    • Numeric- Integer, Complex or Float.
    • Dictionary (explain Dictionary).
    • String (Explain String)
    • List (Explain List)
    • Tuple (Explain Tuple)
    • Set (explain Set)
    • Boolean (Explain Boolean)
    We don’t need to define any data types in python we can just declare it. For example, i=5 is integer & python compiler will take it as integer we don’t declare it. Also, we can get the type of any data type by using type().
    Q4. Different ways to concatenate tuples?
    Answer-
    • Using + operator
    • Using += Operator
    • Using Sum()
    Q5. What is Slice operator in python?
    Answer- Slicing is used to access parts of sequences like lists, tuples, and strings. The syntax of slicing is-[start:end:step]. The step can be omitted as well. When we write [start:end] this returns all the elements of the sequence from the start (inclusive) till the end-1 element.
    Example:-
    str1='GoodMorning'
    print(str1[2:5]). Output - OdM
    Q6. Different functions in python?
    Answer-
    • Python Built-in Functions. Ex- Print(), Sum().
    • Python Recursion Functions. - A python function which can call itself.
    • Python Lambda Functions: - These are anonymous functions. Lambda functions can have any number of arguments but only one expression. The expression is evaluated and returned. Lambda functions can be used wherever function objects are required.
    • Python User-defined Functions
    Q7. Create a class with parameters and Create a method that prints those parameters and an object to call that method
    Answer-
    #definition of the class starts here
    class Person:
    #initializing the variables
    name = ""
    age = 0

    #defining constructor
    def __init__(self, personName, personAge):
    self.name = personName
    self.age = personAge

    #defining class methods
    def showName(self):
    print(self.name)

    def showAge(self):
    print(self.age)

    #end of the class definition

    # Create an object of the class
    person1 = Person("John", 23)
    #Create another object of the same class
    person2 = Person("Anne", 102)
    #call member methods of the objects
    person1.showAge()
    person2.showName()
    Q8. What is Use of pass in Python?
    Answer- Used when you need some block of code syntactically, but you want to skip its execution. This is basically a null operation. Nothing happens when this is executed.
    Q9. How do u check if the string starts with Digit in Python?
    Answer-
    # String
    my_string = "100 houses"
    # Get the first character
    f_character = my_string[0]
    # Check if the first character is a number
    print(f_character.isdigit())

    Alternative way using Regular expression-
    import re
    # String
    my_string = "100 houses"
    # Search if start with a number
    reg = re.search('^\s*[0-9]',my_string)
    # Print result
    print(reg)

    • @user-mn3hf1if2s
      @user-mn3hf1if2s Год назад +1

      Nice

    • @techlogical8059
      @techlogical8059 Год назад +5

      Saviour 😂

    • @enduga0
      @enduga0 Год назад +2

      ​​@@techlogical8059f I know only python.. Then should I mention only python.. Then will my resume get shortlisted?

    • @mlbblegend6201
      @mlbblegend6201 11 месяцев назад +1

      ​@@enduga0no you should atleast perfect in one field.
      Like in web development or data analytics or AI.

    • @Excalibur02
      @Excalibur02 9 месяцев назад

      Thanx buddy

  • @my_j.a.r.v.i.s.
    @my_j.a.r.v.i.s. 2 года назад +551

    Best things about the guy is Honesty.
    He seems straightforward and very cool guy.

    • @pruthvirajbiradar3883
      @pruthvirajbiradar3883 2 года назад +2

      Mam asking which are function in python but function is appended, extend, insert , remove,clear,pop, delete , updated

    • @pruthvirajbiradar3883
      @pruthvirajbiradar3883 2 года назад +2

      But you telling agrumet concept

    • @Nkihgf
      @Nkihgf 2 года назад +3

      ​@@pruthvirajbiradar3883 are you taking about methods?

    • @musaddiqali1
      @musaddiqali1 2 года назад +11

      @@pruthvirajbiradar3883 Mam asked him about Types of Functions in Python, and he answered something else. If I am not wrong, they are simply 1) Predefined Functions or Built-in Functions (namely, len(), print(), type(), str(), etc), and 2) User-defined Functions. That's all.

    • @rohanbaranwal868
      @rohanbaranwal868 2 года назад +2

      @@pruthvirajbiradar3883 that are the keywords broski

  • @rajeshpal3522
    @rajeshpal3522 2 года назад +70

    Best part of this interview is, interviewer is correcting him where he is saying something wrong.

  • @KeyserTheRedBeard
    @KeyserTheRedBeard 2 года назад +24

    intense upload CodyMinati. I broke that thumbs up on your video. Always keep up the great work.

  • @sujeetsawant6215
    @sujeetsawant6215 2 года назад +228

    Please post more videos.. this is really great content for us..
    If possible please put some interviews for power bi that will be very helpful

    • @Torquehd
      @Torquehd 2 года назад +1

      Yes same... please come up with new videos like this one.

    • @AsN..
      @AsN.. Год назад

      power bi

  • @bipinyadav4315
    @bipinyadav4315 2 года назад +50

    Hi
    This candidate is very calm and having very basic knowledge about python programming, I feel very thankful to him that he is very calm.

    • @staketime
      @staketime Год назад

      Hello everyone
      It's only 3 min video.
      Checkout latest video on Python and Please do comment and like the latest video.
      ruclips.net/channel/UChMJkUEyADmauK1hweT732w

  • @merabharatmahan9333
    @merabharatmahan9333 2 года назад +476

    Interviewer looking so much tense, have a smile don't be much serious 👍

    • @Hashira_slayer
      @Hashira_slayer 2 года назад +8

      ramhanuman

    • @akshaykumarmishra6535
      @akshaykumarmishra6535 2 года назад +18

      They themselves are incompetent people... Just eating on the client funds... And have zero contribution towards the growth of their subordinates .
      Service Based companies in India are totally shitty.
      None of these interviewers can even write a program to return the height of a binary tree.

    • @rohitkf8474
      @rohitkf8474 2 года назад +52

      They're not taking interview for just one person dude.
      Asking the questions again n again and all gets anyone fed up.
      It's not something people enjoy.
      It's always easy to judge. Never easy to do it yourself.

    • @democratcobra
      @democratcobra 2 года назад +6

      If elese to lagana hein be....tension maat lo.

    • @void_360
      @void_360 2 года назад +7

      I just started to learn code weeks before. But the questions seems too easy for me. Is this a first round of the interview?

  • @vinayakkulkarni9866
    @vinayakkulkarni9866 2 года назад +419

    How do u code in python
    Suite
    Data types
    Different ways to concatenate tuple
    Slice operator
    Different functions in python
    Create a class with parameters and Create a method that prints those parameters and an object to call that method
    Use of pass
    How do u check if first letter is digit

    • @sathvikareddy6278
      @sathvikareddy6278 2 года назад +4

      Thanq 🙃

    • @allstartv282k
      @allstartv282k 2 года назад +1

      Very helpful, thanks!

    • @kashishmishra1577
      @kashishmishra1577 2 года назад +18

      Hey I just passed out my 12 th and had cs with Python in my class 12 and I know all the answers of these questions should I go for python language in my first year for being an software developer?

    • @yashrajpathak8103
      @yashrajpathak8103 2 года назад +4

      @@kashishmishra1577 you can go ahead with any language !

    • @kashishmishra1577
      @kashishmishra1577 2 года назад

      @@yashrajpathak8103 kind of confused didn't know from where to start 😅

  • @prachihegiste1920
    @prachihegiste1920 2 года назад +9

    Helpful video advanced Excel pe kuch interview honge to please upload

  • @jrb65
    @jrb65 2 года назад +258

    One of the issues I see with the interviewers mostly are , they try to ask questions like what is the module used for regex. Why ? Because a person who has skill in python can do a simple google search and find the module . What you need to identify is if the candidate is able to do the logic correctly . Otherwise all you test is some bookish knowledge which is not gonna do any good .

    • @jatin7836
      @jatin7836 2 года назад +20

      These were very basic questions which they asked. But one should know atleast the name of package or library like regex (re) one has worked on. So I disagree with your point.
      Google is always available but you should know the basics also.

    • @unknown_3415
      @unknown_3415 2 года назад +10

      TCS gives around 250000 to 350000 INR annual income to freshers( around 3k to 4k usd ) at this salary actually no company except interviewer should be very good at DSA all the library, they are just checking do he know basics of basics, and when you go to TCS, Infosys, Accenture there is a high chance you'll not get job as a developer. After get placed into one of those companies they will see coding skill by asking you to take few more coding round, if you pass all with good marks then yes you be developer if not then you will be tester or any other job role which doesn't need coding skill.

    • @staketime
      @staketime Год назад

      Hello everyone
      It's only 3 min video.
      Checkout latest video on Python and Please do comment and like the latest video.
      ruclips.net/channel/UChMJkUEyADmauK1hweT732w

    • @anuragratnawat1
      @anuragratnawat1 Год назад

      @@jatin7836 rather it is because indians are all programmed to mug up everything

    • @ABHISHEKKUMAR-ns6om
      @ABHISHEKKUMAR-ns6om Год назад +5

      Indian interviews are mostly bookish ...you can't expect more than this

  • @GATEPREP
    @GATEPREP 2 года назад +36

    Very informative, thanks for the upload. Can you please upload videos in ML, Data Science profiles in the future? Thanks

  • @AADSVCREATIONS
    @AADSVCREATIONS 2 года назад +16

    Yes , great session

  • @surya691
    @surya691 2 года назад +11

    Thank you for this type of insight on interview!!

    • @staketime
      @staketime Год назад

      Hello everyone
      It's only 3 min video.
      Checkout latest video on Python and Please do comment and like the latest video.
      ruclips.net/channel/UChMJkUEyADmauK1hweT732w

  • @anilsaka7142
    @anilsaka7142 2 года назад +16

    Such a great company buddies

  • @roshanchauhan1123
    @roshanchauhan1123 2 года назад +46

    14:22 isnumeric function

  • @ani7453
    @ani7453 2 года назад

    Informative!! Thank you for posting

  • @salmansheriff8243
    @salmansheriff8243 2 года назад +10

    Thank you it was very usefull

  • @Lionking24484
    @Lionking24484 2 года назад +36

    The chat box should also be visible for better understanding of the questions.

    • @staketime
      @staketime Год назад

      Hello everyone
      It's only 3 min video.
      Checkout latest video on Python and Please do comment and like the latest video.
      ruclips.net/channel/UChMJkUEyADmauK1hweT732w

  • @shankhadeepghosh6086
    @shankhadeepghosh6086 2 года назад +49

    The interviewer are too good ✌️🙏

  • @amolmali1308
    @amolmali1308 2 года назад +17

    Excellent

  • @DATAisFuturRe
    @DATAisFuturRe Год назад

    very very very important and essential concept discussed here... thanks thanks thanks...thanks from DATA is FuturRe channel dedicated to Data Science

  • @shashi8n
    @shashi8n 2 года назад +127

    Interviewer is too good... I would love to give them even fr 2hrs of interview to them😊❤️

  • @mahanirvaantantra
    @mahanirvaantantra Год назад +20

    Man... I am working in python for 4 years and even I didn't know that a block is called a suite in Python. I used to call it a block as other languages

  • @etc_ty_b_72_ram47
    @etc_ty_b_72_ram47 2 года назад +4

    We want more interview videos

  • @manilkumar73
    @manilkumar73 2 года назад +38

    I never need a correct intellectual answers to my few questions.... All I check is if his basics are good, has leadership qualities, can take up any responsibility n role and deliver the task in his hand on time... rest for eg: what is int or string or what is a repository pattern or more easier like "explain what is interface to a layman" can be searched from google/internet....

    • @sdsd-zz5oq
      @sdsd-zz5oq 2 года назад

      @@sg28011 u can get bro , dont worry , just study hard

    • @harshitgupta5425
      @harshitgupta5425 Год назад

      @@sg28011 hey how are you doing right now? Got any offers or how is the preparation going

    • @badsanta7356
      @badsanta7356 Год назад

      Most of these guys give answer in interview by searching on google itself XD

    • @staketime
      @staketime Год назад

      Hello everyone
      It's only 3 min video.
      Checkout latest video on Python and Please do comment and like the latest video.
      ruclips.net/channel/UChMJkUEyADmauK1hweT732w

  • @10k.subsciber
    @10k.subsciber 2 года назад +12

    Gud bro.. Keep it up

  • @Prani578
    @Prani578 Год назад +1

    Datastructures are list tuple and dictionary data type are int are float boolen

  • @turing4991
    @turing4991 Год назад +5

    Im in my 3rd year...i gave every answer in this interview...not lying.

  • @you_cant189
    @you_cant189 Год назад +3

    The answers delivered by the candidate is correct but too lengthy time taken,the answers must be short in terms of 1 to 2 minutes enough

  • @SILENT_4_M_6551
    @SILENT_4_M_6551 2 года назад +40

    We want more videos like this

  • @mayurhinje
    @mayurhinje 2 года назад +9

    Damn easy

  • @skj9668
    @skj9668 2 года назад +4

    I think this is first round of interview , thats why she is asking basic questions.

  • @Who_care360
    @Who_care360 2 года назад

    Thank You so much 🐰👀👀👀

  • @akbaralikhan3966
    @akbaralikhan3966 2 года назад +2

    She is pronouncing "suite" as "suit" how will the candidate understand?

  • @rohanldo
    @rohanldo Год назад +4

    when she asked about data types, the answer should just be dict, list, tuple and set. she knows that she is not interviewing a first year student so int, float, string is obvious.

    • @niksri412
      @niksri412 Год назад

      Progoti has minimal knowledge, her level is basic, she is classic example of employees who are ducking and surviving in companies but in reality she knows jack shit.

  • @10_sonikumari42
    @10_sonikumari42 Год назад +49

    I have only 10 minutes interview for tcs ninja and i got selected
    Edit- I upgraded my profile from ninja to digital by dca exam before joining

    • @Vv-xt9rz
      @Vv-xt9rz Год назад +1

      Congrats iam learning would u tell me ur experience? Msg me if u agree

    • @10_sonikumari42
      @10_sonikumari42 Год назад +8

      @@Vv-xt9rz yaa sure..Actually they asked me some c++ basic question and some c basic questions like what is i++ or ++i
      Difference between while and do while loop and some easy question and last they asked me about my project

    • @shivanijat5187
      @shivanijat5187 Год назад

      congratulations soni✨✨

    • @freedomranch7617
      @freedomranch7617 Год назад

      Cse?

    • @10_sonikumari42
      @10_sonikumari42 Год назад

      @@freedomranch7617 IT

  • @dhirajghorpade7168
    @dhirajghorpade7168 2 года назад +4

    Interviewer asking very besic concept 🙂they check your besic knowledge.

  • @srweddingplanners912
    @srweddingplanners912 Год назад +1

    I like attitude of this candidate.

  • @jksalamon
    @jksalamon 2 года назад +3

    This is not a real interview but almost real

  • @gyanubhai86
    @gyanubhai86 Год назад +5

    str="Good Morning"
    print(name[2:5])
    o/p:
    od

    • @shahur5746
      @shahur5746 5 месяцев назад

      space will also be included

  • @syscreeper4376
    @syscreeper4376 2 года назад +44

    wow its easy , i am thinking it was very hard like implement this algo on this problem with this time complexity :)

  • @red5hat
    @red5hat 2 года назад +51

    What is suit? This terminology I am hearing it for the first time, even after using Python for past 5 years. Even the interviewer explanation was not very clear to me. Again the interviewer mentioned class parameter; what is that? Classes don't have have any parameters. Parameters are for methods. I didn't like the question of different types of functions or methods; there he should have mentioned the generating functions, inner methods.

    • @mthulasikumari6904
      @mthulasikumari6904 2 года назад +4

      A group of individual statements used to make a single code block are called suites

    • @red5hat
      @red5hat 2 года назад

      @@mthulasikumari6904 where is it used? Inside/outside a function?

    • @sagnikacharyya5777
      @sagnikacharyya5777 2 года назад +1

      exactly. suits are not a term anywhere used in coding or programming. the interviewer seems a bit lost.

    • @red5hat
      @red5hat 2 года назад +1

      @@mthulasikumari6904 You yourself called it a code block and that is the correct terminology, no need extend it and call it a suit.

    • @adhithyasrinivasan8022
      @adhithyasrinivasan8022 2 года назад

      Suite is the definition for group of statements that is mentioned in the documentation itself

  • @losforword-tvtv8104
    @losforword-tvtv8104 Год назад

    Ask practical question. Ask to write code rather than asking theory.

  • @biswojitnayak3317
    @biswojitnayak3317 2 года назад +27

    Don't hurry broo... First listen the question properly then answer...

  • @r_u_s_h_i_k_s_h7783
    @r_u_s_h_i_k_s_h7783 2 года назад +4

    Which question are ask in tcs AWS cloud computing

  • @shivakrishnaacha2709
    @shivakrishnaacha2709 Год назад +2

    Please post more videos learn more confidence this video's

  • @dosanzpillay
    @dosanzpillay Год назад +9

    List is not a data type its a data structure

    • @DhavalAhir10
      @DhavalAhir10 Год назад

      List is a Data Type in Python but it is implemented as Dynamic Array.
      And now this Array is real life Data Structures.

  • @AshishShah01987
    @AshishShah01987 Год назад

    This is python how to search list for google..not an interview at all

  • @jothinaidu7415
    @jothinaidu7415 2 года назад +8

    Very useful...

  • @bhaskargupta9340
    @bhaskargupta9340 2 года назад

    Please upload video on java.

  • @workoncausenoteffect4986
    @workoncausenoteffect4986 2 года назад

    Loved This Candidate..

  • @vickykharatmol5099
    @vickykharatmol5099 2 года назад +6

    Python interview 🐍😂😂😂😂🤣🤣🤣🤣🤣

  • @exampaperguide1436
    @exampaperguide1436 2 года назад +8

    Is he a fresher?

  • @TeluguYouTubeCreaterPraveen
    @TeluguYouTubeCreaterPraveen 2 года назад +1

    What is qualification of the company

  • @saurabhjain8034
    @saurabhjain8034 2 года назад +55

    1. How do we write codes in python?
    2. What is ‘suite’?
    3. What are the different data types in python?
    4. What are different ways to concatenate a tuple?
    5. What is a slice operator?
    6. What are the different types of functions in python?
    7. Can you define a class in python? How will you write a code and it’s method for an Employee class?
    Create a method to print and call an object for this class.
    8. What is init and self keywords in python?
    9. What is pass statement?
    10. How can you get a first digit of a string?
    11. Regular expressions?
    12. Which class do we use for ‘regular expression’ in python?
    Edit 1: what I was also asked.
    1. What is the difference between modules and packages?
    2. What is lambda function? Write its syntax/ expression in the chat box.
    3. What is init? And what is self?

    • @MEGAMINDLIVE
      @MEGAMINDLIVE 2 года назад

      lambda x: x*2 for x in list(range(1,100))

    • @pranavnyavanandi9710
      @pranavnyavanandi9710 2 года назад +1

      Well what is a suite? I have never heard of such a thing.

    • @saiganesh3800
      @saiganesh3800 2 года назад +3

      @@pranavnyavanandi9710 a group of individual statements used to make single code block is suite

    • @jazzbeat4443
      @jazzbeat4443 2 года назад

      Thanks bro

    • @rishikeshmishra9930
      @rishikeshmishra9930 Год назад

      Print("thanks bro")

  • @keepquiet9075
    @keepquiet9075 2 года назад

    They're really a iit professionals

  • @dheerajlaxmi981
    @dheerajlaxmi981 2 года назад +42

    Can finance students learn the Python language and get a job as a Python programmer?

    • @bhaskarp8702
      @bhaskarp8702 2 года назад +2

      Yes for serious learners

    • @rohithraghunathan21
      @rohithraghunathan21 2 года назад

      yes

    • @abishek6629
      @abishek6629 2 года назад +7

      @@dheerajlaxmi981 you can't do anything by learning single language itself, there is so much things you need to take in mind while in actual jobs.

    • @vigneshwaranr3608
      @vigneshwaranr3608 2 года назад +13

      @Dheeraj, I'm a mechanical engineer i learnt python and got a job. start small and scale fast. Best of luck.

    • @jeevigiri6832
      @jeevigiri6832 2 года назад

      @@vigneshwaranr3608 Bro Did u go any courses for python?

  • @naoboyz8259
    @naoboyz8259 2 года назад +2

    What are these interviewers backgrounds😆

  • @rukminis3895
    @rukminis3895 2 года назад +4

    Thank you very much

  • @vishalhegde4704
    @vishalhegde4704 2 года назад

    These are very basic questions

  • @dipeshmandanka
    @dipeshmandanka Год назад +1

    output should be od_space not od mo

  • @kw9494
    @kw9494 2 года назад +43

    Why should the passport applicant be aware of TCS ? As far he is concerned , passport is issued by the Govt of India.

    • @rahilahmed2192
      @rahilahmed2192 2 года назад +5

      After all he is looking an opportunity in Tcs that's why he has know about that organization in which area they are working for ,there achievement etc .It's a genuine question...

    • @sohamsinha4252
      @sohamsinha4252 2 года назад +7

      Yes, passport is issued by GoI but, the process & systems are maintained by TCS, Also all the employees working in regional passport office below the post of officers are TCS employees.

    • @jayakrishnanbalakrishnan3427
      @jayakrishnanbalakrishnan3427 2 года назад +1

      Offices are run by TCS

    • @memecached
      @memecached 2 года назад +2

      Passport Seva Kendra is being run by TCSers. That's why.

    • @bidyutbikashtalukdar8675
      @bidyutbikashtalukdar8675 2 года назад +1

      I was working on TCS psk

  • @amarchavhan6855
    @amarchavhan6855 2 года назад +20

    they asked 15 questions to me.. I was able to answer 12 of them ..
    Waiting for the results now.. kinda nervous 🤨

    • @Ramya0216
      @Ramya0216 2 года назад

      Ninja or digital

    • @amarchavhan6855
      @amarchavhan6855 2 года назад +5

      @@Ramya0216 both.. it depends on interview performance

    • @rajesh5492
      @rajesh5492 2 года назад +2

      did you got selected

    • @tayyabarrahmankhan4892
      @tayyabarrahmankhan4892 2 года назад +2

      Aap select hue bhai pls tell us

    • @snowbunny2546
      @snowbunny2546 2 года назад +2

      @@tayyabarrahmankhan4892 obviously nhi hua hoga .... Nhi toh reply karta tha

  • @PavanKumar-ge6kk
    @PavanKumar-ge6kk 2 года назад +7

    Not to point out but he mixed up saying Datatypes and Datastructures . Correct me if I’m wrong 🙂

  • @prashantkumar-tv3js
    @prashantkumar-tv3js 2 года назад +15

    I am a daily wage cum supervisor , earning nearly 5-6k per month . My age is 32 years , I am working on different construction sites after my B.Tech in mechanical engineering in 2014 . Is there any software company would hire me if I do good in coding and give me better salary ?

    • @ManishSharma-lm3wg
      @ManishSharma-lm3wg 2 года назад +1

      ofcourse brother do coding learn online

    • @Amar.schannel
      @Amar.schannel 2 года назад

      Full stack developer based profiles are in demand with well paid salaries

    • @dinkar-singh
      @dinkar-singh 2 года назад

      Definitely you can, i have been through with this journey. For best way and path pls follow this video and you will live your dream very soon.
      ruclips.net/video/79pKwdiqcwI/видео.html

    • @jayakrishnanbalakrishnan3427
      @jayakrishnanbalakrishnan3427 2 года назад +1

      problem is not learning, problem is getting experience. For that you need to start somewhere and most look for experiences people. Very tricky situation. You can online job sites after learning programing.

    • @Vishu-ru4iw
      @Vishu-ru4iw 2 года назад +2

      yes of course you can get into software industry, i was working as a very under paid electrical engineer for 3 years after completing my btech in 2018, i never done coding in my entire life i lost all hopes and then i decided to learn coding and now i'm working as software developer at a start-up but for that i have spent around 6 months dedicated learning. anyone can code at any point of time in there life so just go ahead and give few months of your life for better future.

  • @shashank10501
    @shashank10501 Год назад +2

    Is it digital interview 🙄

  • @jagatkrishna1543
    @jagatkrishna1543 2 года назад

    Thanks

  • @nadyashaymardanova6000
    @nadyashaymardanova6000 Год назад

    💛

  • @akzork
    @akzork 2 года назад +2

    simulation ?

  • @Ramya0216
    @Ramya0216 2 года назад +4

    Is this ninja or digital?

  • @kundanendeavoursindia2987
    @kundanendeavoursindia2987 Год назад +2

    Guys got selected or not

  • @esakkiappan5504
    @esakkiappan5504 2 года назад

    Wow nice

  • @AyushKumar-he9qt
    @AyushKumar-he9qt 2 года назад +2

    Have you got selected?

  • @badrip3237
    @badrip3237 2 года назад +2

    how much salary interview is this?

  • @kumaraneesh1420
    @kumaraneesh1420 Год назад

    Good

  • @he-man3467
    @he-man3467 2 года назад +9

    Interviewee is a Malayaali

  • @blackboy8030
    @blackboy8030 Год назад

    Function,slice

  • @ShivamSingh-vu8tb
    @ShivamSingh-vu8tb Год назад +2

    Is English is must for interview ?

  • @avtarchandra2407
    @avtarchandra2407 2 года назад

    Niceee video
    .had some inspiration

  • @vikramram9464
    @vikramram9464 2 года назад +6

    Bro, how much package did they offer to u bro

    • @helloworld33577
      @helloworld33577 Год назад +1

      3.5 most probably because very basic questions were asked to him. This might be his interview for tcs ninja profile

    • @vikramram9464
      @vikramram9464 Год назад

      @@helloworld33577 did he received joining letter

    • @helloworld33577
      @helloworld33577 Год назад +2

      @@vikramram9464 how would I know

  • @Tussu17
    @Tussu17 2 года назад +1

    Super easy questions! We need little tricky Questions.

  • @upendrapatel3034
    @upendrapatel3034 Год назад +3

    Tcs is big in name else nothing. Never ever come in tcs

  • @anida9990
    @anida9990 2 года назад +41

    Can we use earphones during interview?

  • @pavanvenky13
    @pavanvenky13 Год назад +6

    Is it fair to record and post an real interview in RUclips ?

  • @DipankarRoy-oz9di
    @DipankarRoy-oz9di 2 года назад +2

    Basic questions 😐

  • @priyaldo5844
    @priyaldo5844 Год назад +4

    What is CTC..??

    • @mohammadaqueel7291
      @mohammadaqueel7291 Год назад

      Cost to company
      How much cost the company bears for a employee includes salary, Travel expenses, insurance etc

  • @iliyazali
    @iliyazali Год назад +2

    tcs interview
    data types
    slicing
    tupes of functions
    difference in python
    regular expression
    self
    init
    isdigit
    software development life cycle
    waterfall model
    tcs services
    project final year

  • @Codewith_dkumar
    @Codewith_dkumar Год назад

    Nice to help sir #codewithdkumar

  • @codeslayer2980
    @codeslayer2980 Год назад +5

    Class employer():
    def __init__(self, employer_id, name ):
    self.employer_id = employer_id
    self.name = name
    def print_employer_detail(self):
    print(f"{self.employer_id} {self.name}")

  • @networkgrid6059
    @networkgrid6059 2 года назад +2

    He gave is best and been very Honest a good resource for company by allowing him to learn and explore more nice @hearled