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

  Рет қаралды 1,925,087

CodiMinati

CodiMinati

Күн бұрын

Пікірлер: 335
@sawansharma4550
@sawansharma4550 Жыл бұрын
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)
@ରକିBHAI
@ରକିBHAI Жыл бұрын
Nice
@techlogical8059
@techlogical8059 Жыл бұрын
Saviour 😂
@enduga0
@enduga0 Жыл бұрын
​​@@techlogical8059f I know only python.. Then should I mention only python.. Then will my resume get shortlisted?
@mlbbking055
@mlbbking055 Жыл бұрын
​@@enduga0no you should atleast perfect in one field. Like in web development or data analytics or AI.
@Excalibur02
@Excalibur02 Жыл бұрын
Thanx buddy
@rajeshpal3522
@rajeshpal3522 2 жыл бұрын
Best part of this interview is, interviewer is correcting him where he is saying something wrong.
@my_j.a.r.v.i.s.
@my_j.a.r.v.i.s. 2 жыл бұрын
Best things about the guy is Honesty. He seems straightforward and very cool guy.
@pruthvirajbiradar3883
@pruthvirajbiradar3883 2 жыл бұрын
Mam asking which are function in python but function is appended, extend, insert , remove,clear,pop, delete , updated
@pruthvirajbiradar3883
@pruthvirajbiradar3883 2 жыл бұрын
But you telling agrumet concept
@Nkihgf
@Nkihgf 2 жыл бұрын
​@@pruthvirajbiradar3883 are you taking about methods?
@musaddiqali1
@musaddiqali1 2 жыл бұрын
@@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 жыл бұрын
@@pruthvirajbiradar3883 that are the keywords broski
@bipinyadav4315
@bipinyadav4315 2 жыл бұрын
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.
@hasslo_bc
@hasslo_bc 2 жыл бұрын
Hello everyone It's only 3 min video. Checkout latest video on Python and Please do comment and like the latest video. kzbin.info/door/hMJkUEyADmauK1hweT732w
@vinayakkulkarni9866
@vinayakkulkarni9866 2 жыл бұрын
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 жыл бұрын
Thanq 🙃
@allstartv282k
@allstartv282k 2 жыл бұрын
Very helpful, thanks!
@kashishmishra1577
@kashishmishra1577 2 жыл бұрын
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 жыл бұрын
@@kashishmishra1577 you can go ahead with any language !
@kashishmishra1577
@kashishmishra1577 2 жыл бұрын
@@yashrajpathak8103 kind of confused didn't know from where to start 😅
@jrb65
@jrb65 2 жыл бұрын
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 жыл бұрын
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 жыл бұрын
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.
@hasslo_bc
@hasslo_bc 2 жыл бұрын
Hello everyone It's only 3 min video. Checkout latest video on Python and Please do comment and like the latest video. kzbin.info/door/hMJkUEyADmauK1hweT732w
@anuragratnawat1
@anuragratnawat1 2 жыл бұрын
@@jatin7836 rather it is because indians are all programmed to mug up everything
@ABHISHEKKUMAR-ns6om
@ABHISHEKKUMAR-ns6om Жыл бұрын
Indian interviews are mostly bookish ...you can't expect more than this
@roshanchauhan1123
@roshanchauhan1123 3 жыл бұрын
14:22 isnumeric function
@Abd501developer
@Abd501developer 11 ай бұрын
isnumeric is string method
@mahanirvaantantra
@mahanirvaantantra 2 жыл бұрын
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
@professorop4558
@professorop4558 2 жыл бұрын
Referral pls🙂
@ramakrushnapradhan347
@ramakrushnapradhan347 Жыл бұрын
plz give reffer to jion in ur company
@shubhammundra5034
@shubhammundra5034 Жыл бұрын
MeToo
@balajitadivaka9299
@balajitadivaka9299 10 ай бұрын
Hi bro can you please refer me
@Realpain-lx1mi
@Realpain-lx1mi 7 ай бұрын
😅
@sujeetsawant6215
@sujeetsawant6215 3 жыл бұрын
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 жыл бұрын
Yes same... please come up with new videos like this one.
@AsN..
@AsN.. Жыл бұрын
power bi
@10_sonikumari42
@10_sonikumari42 2 жыл бұрын
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 2 жыл бұрын
Congrats iam learning would u tell me ur experience? Msg me if u agree
@10_sonikumari42
@10_sonikumari42 2 жыл бұрын
@@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
@shivanijat0105
@shivanijat0105 2 жыл бұрын
congratulations soni✨✨
@freedomranch7617
@freedomranch7617 2 жыл бұрын
Cse?
@10_sonikumari42
@10_sonikumari42 2 жыл бұрын
@@freedomranch7617 IT
@merabharatmahan9333
@merabharatmahan9333 3 жыл бұрын
Interviewer looking so much tense, have a smile don't be much serious 👍
@Hashira_slayer
@Hashira_slayer 3 жыл бұрын
ramhanuman
@akshaykumarmishra6535
@akshaykumarmishra6535 2 жыл бұрын
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 жыл бұрын
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 жыл бұрын
If elese to lagana hein be....tension maat lo.
@void_360
@void_360 2 жыл бұрын
I just started to learn code weeks before. But the questions seems too easy for me. Is this a first round of the interview?
@red5hat
@red5hat 2 жыл бұрын
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 жыл бұрын
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 жыл бұрын
exactly. suits are not a term anywhere used in coding or programming. the interviewer seems a bit lost.
@red5hat
@red5hat 2 жыл бұрын
@@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
@Lionking24484
@Lionking24484 2 жыл бұрын
The chat box should also be visible for better understanding of the questions.
@hasslo_bc
@hasslo_bc 2 жыл бұрын
Hello everyone It's only 3 min video. Checkout latest video on Python and Please do comment and like the latest video. kzbin.info/door/hMJkUEyADmauK1hweT732w
@manilkumar73
@manilkumar73 2 жыл бұрын
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 2 жыл бұрын
@@sg28011 hey how are you doing right now? Got any offers or how is the preparation going
@badsanta7356
@badsanta7356 2 жыл бұрын
Most of these guys give answer in interview by searching on google itself XD
@hasslo_bc
@hasslo_bc 2 жыл бұрын
Hello everyone It's only 3 min video. Checkout latest video on Python and Please do comment and like the latest video. kzbin.info/door/hMJkUEyADmauK1hweT732w
@KeyserTheRedBeard
@KeyserTheRedBeard 2 жыл бұрын
intense upload CodyMinati. I broke that thumbs up on your video. Always keep up the great work.
@rohanldo
@rohanldo Жыл бұрын
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.
@turing4991
@turing4991 Жыл бұрын
Im in my 3rd year...i gave every answer in this interview...not lying.
@shashi8n
@shashi8n 2 жыл бұрын
Interviewer is too good... I would love to give them even fr 2hrs of interview to them😊❤️
@mr.gouravkale
@mr.gouravkale 2 жыл бұрын
If you are a good buttifier ☺️
@HY4mShubham
@HY4mShubham Жыл бұрын
🤣🤣🤣 kuch bhi
@prachihegiste1920
@prachihegiste1920 3 жыл бұрын
Helpful video advanced Excel pe kuch interview honge to please upload
@GATEPREP
@GATEPREP 2 жыл бұрын
Very informative, thanks for the upload. Can you please upload videos in ML, Data Science profiles in the future? Thanks
@you_cant189
@you_cant189 2 жыл бұрын
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
@surya691
@surya691 2 жыл бұрын
Thank you for this type of insight on interview!!
@hasslo_bc
@hasslo_bc 2 жыл бұрын
Hello everyone It's only 3 min video. Checkout latest video on Python and Please do comment and like the latest video. kzbin.info/door/hMJkUEyADmauK1hweT732w
@akbaralikhan3966
@akbaralikhan3966 2 жыл бұрын
She is pronouncing "suite" as "suit" how will the candidate understand?
@saurabhjain8034
@saurabhjain8034 2 жыл бұрын
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 жыл бұрын
Well what is a suite? I have never heard of such a thing.
@saiganesh3800
@saiganesh3800 2 жыл бұрын
@@pranavnyavanandi9710 a group of individual statements used to make single code block is suite
@jazzbeat4443
@jazzbeat4443 2 жыл бұрын
Thanks bro
@rishikeshmishra9930
@rishikeshmishra9930 2 жыл бұрын
Print("thanks bro")
@skj9668
@skj9668 2 жыл бұрын
I think this is first round of interview , thats why she is asking basic questions.
@muralidhar_155
@muralidhar_155 2 жыл бұрын
This is for 3.6 LPA
@AADSVCREATIONS
@AADSVCREATIONS 2 жыл бұрын
Yes , great session
@amarchavhan6855
@amarchavhan6855 2 жыл бұрын
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 жыл бұрын
@@Ramya0216 both.. it depends on interview performance
@rajesh5492
@rajesh5492 2 жыл бұрын
did you got selected
@tayyabarrahmankhan4892
@tayyabarrahmankhan4892 2 жыл бұрын
Aap select hue bhai pls tell us
@snowbunny2546
@snowbunny2546 2 жыл бұрын
@@tayyabarrahmankhan4892 obviously nhi hua hoga .... Nhi toh reply karta tha
@losforword-tvtv8104
@losforword-tvtv8104 Жыл бұрын
Ask practical question. Ask to write code rather than asking theory.
@biswojitnayak3317
@biswojitnayak3317 2 жыл бұрын
Don't hurry broo... First listen the question properly then answer...
@WashingPowderNirma-mc5zw
@WashingPowderNirma-mc5zw 2 жыл бұрын
Uska interview hogaya hai vroo
@biswojitnayak3317
@biswojitnayak3317 2 жыл бұрын
@@WashingPowderNirma-mc5zwThat suggestion is for his future interviews...
@pru7hviii145
@pru7hviii145 2 жыл бұрын
@@WashingPowderNirma-mc5zw 😂
@dheerajlaxmi981
@dheerajlaxmi981 2 жыл бұрын
Can finance students learn the Python language and get a job as a Python programmer?
@bhaskarp8702
@bhaskarp8702 2 жыл бұрын
Yes for serious learners
@rohithraghunathan21
@rohithraghunathan21 2 жыл бұрын
yes
@abishek6629
@abishek6629 2 жыл бұрын
@@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 жыл бұрын
@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?
@prashantkumar-tv3js
@prashantkumar-tv3js 2 жыл бұрын
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 жыл бұрын
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. kzbin.info/www/bejne/bWrTfKqantaWras
@jayakrishnanbalakrishnan3427
@jayakrishnanbalakrishnan3427 2 жыл бұрын
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 жыл бұрын
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.
@kw9494
@kw9494 2 жыл бұрын
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 жыл бұрын
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 жыл бұрын
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 жыл бұрын
Offices are run by TCS
@memecached
@memecached 2 жыл бұрын
Passport Seva Kendra is being run by TCSers. That's why.
@bidyutbikashtalukdar8675
@bidyutbikashtalukdar8675 2 жыл бұрын
I was working on TCS psk
@shankhadeepghosh6086
@shankhadeepghosh6086 2 жыл бұрын
The interviewer are too good ✌️🙏
@syscreeper4376
@syscreeper4376 3 жыл бұрын
wow its easy , i am thinking it was very hard like implement this algo on this problem with this time complexity :)
@bishwajeetpandey1570
@bishwajeetpandey1570 3 жыл бұрын
😂
@bishwajeetpandey1570
@bishwajeetpandey1570 3 жыл бұрын
It is tcs not google or microsoft 😂
@rjp8288
@rjp8288 3 жыл бұрын
@@bishwajeetpandey1570 ahhan
@chethanningappa
@chethanningappa 2 жыл бұрын
@@bishwajeetpandey1570 very true
@AshokKumar-ix4nf
@AshokKumar-ix4nf 2 жыл бұрын
3 -4 lakhs ka package me yhi puchega na 40-50 lakhs ka package ke liye mehnat krni hogi
@anilsaka7142
@anilsaka7142 2 жыл бұрын
Such a great company buddies
@PavanKumar-ge6kk
@PavanKumar-ge6kk 2 жыл бұрын
Not to point out but he mixed up saying Datatypes and Datastructures . Correct me if I’m wrong 🙂
@muralidhar_155
@muralidhar_155 2 жыл бұрын
Yess
@SILENT_4_M_6551
@SILENT_4_M_6551 3 жыл бұрын
We want more videos like this
@roshanchauhan1123
@roshanchauhan1123 3 жыл бұрын
Dusre ka video hai bhai
@Prani578
@Prani578 2 жыл бұрын
Datastructures are list tuple and dictionary data type are int are float boolen
@dhirajghorpade7168
@dhirajghorpade7168 2 жыл бұрын
Interviewer asking very besic concept 🙂they check your besic knowledge.
@DATAisFuturRe
@DATAisFuturRe 2 жыл бұрын
very very very important and essential concept discussed here... thanks thanks thanks...thanks from DATA is FuturRe channel dedicated to Data Science
@jksalamon
@jksalamon 2 жыл бұрын
This is not a real interview but almost real
@dosanzpillay
@dosanzpillay 2 жыл бұрын
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.
@amolmali1308
@amolmali1308 3 жыл бұрын
Excellent
@salmansheriff8243
@salmansheriff8243 3 жыл бұрын
Thank you it was very usefull
@etc_ty_b_72_ram47
@etc_ty_b_72_ram47 2 жыл бұрын
We want more interview videos
@srweddingplanners912
@srweddingplanners912 Жыл бұрын
I like attitude of this candidate.
@gyanubhai86
@gyanubhai86 Жыл бұрын
str="Good Morning" print(name[2:5]) o/p: od
@shahur5746
@shahur5746 10 ай бұрын
space will also be included
@AshishShah01987
@AshishShah01987 2 жыл бұрын
This is python how to search list for google..not an interview at all
@r_u_s_h_i_k_s_h7783
@r_u_s_h_i_k_s_h7783 2 жыл бұрын
Which question are ask in tcs AWS cloud computing
@ani7453
@ani7453 2 жыл бұрын
Informative!! Thank you for posting
@mayurhinje
@mayurhinje 2 жыл бұрын
Damn easy
@exampaperguide1436
@exampaperguide1436 2 жыл бұрын
Is he a fresher?
@TeluguYouTubeCreaterPraveen
@TeluguYouTubeCreaterPraveen 2 жыл бұрын
What is qualification of the company
@ShivamSingh-vu8tb
@ShivamSingh-vu8tb 2 жыл бұрын
Is English is must for interview ?
@EasyElectraEE
@EasyElectraEE 2 жыл бұрын
Yes
@dipeshmandanka
@dipeshmandanka 2 жыл бұрын
output should be od_space not od mo
@krishnachaitanyareddy2781
@krishnachaitanyareddy2781 Жыл бұрын
yes
@badrip3237
@badrip3237 2 жыл бұрын
how much salary interview is this?
@muralidhar_155
@muralidhar_155 2 жыл бұрын
3.6 lpa
@vikramram9464
@vikramram9464 2 жыл бұрын
Bro, how much package did they offer to u bro
@helloworld33577
@helloworld33577 2 жыл бұрын
3.5 most probably because very basic questions were asked to him. This might be his interview for tcs ninja profile
@vikramram9464
@vikramram9464 2 жыл бұрын
@@helloworld33577 did he received joining letter
@helloworld33577
@helloworld33577 2 жыл бұрын
@@vikramram9464 how would I know
@vickykharatmol5099
@vickykharatmol5099 2 жыл бұрын
Python interview 🐍😂😂😂😂🤣🤣🤣🤣🤣
@Ramya0216
@Ramya0216 2 жыл бұрын
Is this ninja or digital?
@shashank10501
@shashank10501 2 жыл бұрын
Is it digital interview 🙄
@pavanvenky13
@pavanvenky13 2 жыл бұрын
Is it fair to record and post an real interview in KZbin ?
@mohammadaqueel7291
@mohammadaqueel7291 Жыл бұрын
It is conducted by TCS and posted on their website
@naoboyz8259
@naoboyz8259 2 жыл бұрын
What are these interviewers backgrounds😆
@bhaskargupta9340
@bhaskargupta9340 2 жыл бұрын
Please upload video on java.
@shivakrishnaacha2709
@shivakrishnaacha2709 2 жыл бұрын
Please post more videos learn more confidence this video's
@kundanendeavoursindia2987
@kundanendeavoursindia2987 2 жыл бұрын
Guys got selected or not
@Who_care360
@Who_care360 2 жыл бұрын
Thank You so much 🐰👀👀👀
@jothinaidu7415
@jothinaidu7415 2 жыл бұрын
Very useful...
@keepquiet9075
@keepquiet9075 2 жыл бұрын
They're really a iit professionals
@akzork
@akzork 2 жыл бұрын
simulation ?
@codeslayer2980
@codeslayer2980 2 жыл бұрын
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}")
@upendrapatel3034
@upendrapatel3034 2 жыл бұрын
Tcs is big in name else nothing. Never ever come in tcs
@anida9990
@anida9990 3 жыл бұрын
Can we use earphones during interview?
@souradipsaha130
@souradipsaha130 3 жыл бұрын
Yes you can
@LUKFUNTV
@LUKFUNTV 2 жыл бұрын
Ofc✌
@workoncausenoteffect4986
@workoncausenoteffect4986 2 жыл бұрын
Loved This Candidate..
@AyushKumar-he9qt
@AyushKumar-he9qt 2 жыл бұрын
Have you got selected?
@rukminis3895
@rukminis3895 2 жыл бұрын
Thank you very much
@he-man3467
@he-man3467 2 жыл бұрын
Interviewee is a Malayaali
@raghavkamath4892
@raghavkamath4892 2 жыл бұрын
Examble???
@vishalhegde4704
@vishalhegde4704 2 жыл бұрын
These are very basic questions
@priyaldo5844
@priyaldo5844 2 жыл бұрын
What is CTC..??
@mohammadaqueel7291
@mohammadaqueel7291 Жыл бұрын
Cost to company How much cost the company bears for a employee includes salary, Travel expenses, insurance etc
@avtarchandra2407
@avtarchandra2407 2 жыл бұрын
Niceee video .had some inspiration
@esakkiappan5504
@esakkiappan5504 2 жыл бұрын
Wow nice
@Tussu17
@Tussu17 2 жыл бұрын
Super easy questions! We need little tricky Questions.
@blackboy8030
@blackboy8030 Жыл бұрын
Function,slice
@DipankarRoy-oz9di
@DipankarRoy-oz9di 2 жыл бұрын
Basic questions 😐
@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
@nadyashaymardanova6000
@nadyashaymardanova6000 Жыл бұрын
💛
@jagatkrishna1543
@jagatkrishna1543 2 жыл бұрын
Thanks
@kumaraneesh1420
@kumaraneesh1420 2 жыл бұрын
Good
@networkgrid6059
@networkgrid6059 2 жыл бұрын
He gave is best and been very Honest a good resource for company by allowing him to learn and explore more nice @hearled
@Codewith_dkumar
@Codewith_dkumar 2 жыл бұрын
Nice to help sir #codewithdkumar
Quando A Diferença De Altura É Muito Grande 😲😂
00:12
Mari Maria
Рет қаралды 45 МЛН
Enceinte et en Bazard: Les Chroniques du Nettoyage ! 🚽✨
00:21
Two More French
Рет қаралды 42 МЛН
Гениальное изобретение из обычного стаканчика!
00:31
Лютая физика | Олимпиадная физика
Рет қаралды 4,8 МЛН
Fresher Python Mock Interview  | Technical Round | Best Training Institute in Hyderabad
7:38
Coding Interview | Software Engineer @ Bloomberg (Part 1)
30:05
Keep On Coding
Рет қаралды 4,8 МЛН
Coding Interviews Be Like
5:31
Nicholas T.
Рет қаралды 6 МЛН
TCS Campus Interview I Campus Placements I Gauri Shrimali I Arvind Singh Pemawat
18:09
Dr. Arvind Singh Pemawat
Рет қаралды 7 МЛН
TCS JAVA Real Interview by TCS | Java Interview Questions and Answers
20:26
Quando A Diferença De Altura É Muito Grande 😲😂
00:12
Mari Maria
Рет қаралды 45 МЛН