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 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)
@@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.
Hello everyone It's only 3 min video. Checkout latest video on Python and Please do comment and like the latest video. th-cam.com/channels/hMJkUEyADmauK1hweT732w.html
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.
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.
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 .
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.
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.
Hello everyone It's only 3 min video. Checkout latest video on Python and Please do comment and like the latest video. th-cam.com/channels/hMJkUEyADmauK1hweT732w.html
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
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?
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
Hello everyone It's only 3 min video. Checkout latest video on Python and Please do comment and like the latest video. th-cam.com/channels/hMJkUEyADmauK1hweT732w.html
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.
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.
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?
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....
Hello everyone It's only 3 min video. Checkout latest video on Python and Please do comment and like the latest video. th-cam.com/channels/hMJkUEyADmauK1hweT732w.html
@@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
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.
Hello everyone It's only 3 min video. Checkout latest video on Python and Please do comment and like the latest video. th-cam.com/channels/hMJkUEyADmauK1hweT732w.html
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...
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.
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 ?
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. th-cam.com/video/79pKwdiqcwI/w-d-xo.html
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.
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.
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
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)
Nice
Saviour 😂
@@techlogical8059f I know only python.. Then should I mention only python.. Then will my resume get shortlisted?
@@enduga0no you should atleast perfect in one field.
Like in web development or data analytics or AI.
Thanx buddy
Best part of this interview is, interviewer is correcting him where he is saying something wrong.
Best things about the guy is Honesty.
He seems straightforward and very cool guy.
Mam asking which are function in python but function is appended, extend, insert , remove,clear,pop, delete , updated
But you telling agrumet concept
@@pruthvirajbiradar3883 are you taking about methods?
@@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.
@@pruthvirajbiradar3883 that are the keywords broski
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.
Hello everyone
It's only 3 min video.
Checkout latest video on Python and Please do comment and like the latest video.
th-cam.com/channels/hMJkUEyADmauK1hweT732w.html
Interviewer looking so much tense, have a smile don't be much serious 👍
ramhanuman
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.
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.
If elese to lagana hein be....tension maat lo.
I just started to learn code weeks before. But the questions seems too easy for me. Is this a first round of the interview?
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 .
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.
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.
Hello everyone
It's only 3 min video.
Checkout latest video on Python and Please do comment and like the latest video.
th-cam.com/channels/hMJkUEyADmauK1hweT732w.html
@@jatin7836 rather it is because indians are all programmed to mug up everything
Indian interviews are mostly bookish ...you can't expect more than this
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
Thanq 🙃
Very helpful, thanks!
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?
@@kashishmishra1577 you can go ahead with any language !
@@yashrajpathak8103 kind of confused didn't know from where to start 😅
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
Yes same... please come up with new videos like this one.
power bi
14:22 isnumeric function
isnumeric is string method
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
Referral pls🙂
plz give reffer to jion in ur company
MeToo
Hi bro can you please refer me
😅
Interviewer is too good... I would love to give them even fr 2hrs of interview to them😊❤️
If you are a good buttifier ☺️
🤣🤣🤣 kuch bhi
The chat box should also be visible for better understanding of the questions.
Hello everyone
It's only 3 min video.
Checkout latest video on Python and Please do comment and like the latest video.
th-cam.com/channels/hMJkUEyADmauK1hweT732w.html
Im in my 3rd year...i gave every answer in this interview...not lying.
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.
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.
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?
lambda x: x*2 for x in list(range(1,100))
Well what is a suite? I have never heard of such a thing.
@@pranavnyavanandi9710 a group of individual statements used to make single code block is suite
Thanks bro
Print("thanks bro")
intense upload CodyMinati. I broke that thumbs up on your video. Always keep up the great work.
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....
@@sg28011 u can get bro , dont worry , just study hard
@@sg28011 hey how are you doing right now? Got any offers or how is the preparation going
Most of these guys give answer in interview by searching on google itself XD
Hello everyone
It's only 3 min video.
Checkout latest video on Python and Please do comment and like the latest video.
th-cam.com/channels/hMJkUEyADmauK1hweT732w.html
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
The interviewer are too good ✌️🙏
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
Congrats iam learning would u tell me ur experience? Msg me if u agree
@@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
congratulations soni✨✨
Cse?
@@freedomranch7617 IT
Very informative, thanks for the upload. Can you please upload videos in ML, Data Science profiles in the future? Thanks
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.
A group of individual statements used to make a single code block are called suites
@@mthulasikumari6904 where is it used? Inside/outside a function?
exactly. suits are not a term anywhere used in coding or programming. the interviewer seems a bit lost.
@@mthulasikumari6904 You yourself called it a code block and that is the correct terminology, no need extend it and call it a suit.
Suite is the definition for group of statements that is mentioned in the documentation itself
Helpful video advanced Excel pe kuch interview honge to please upload
Thank you for this type of insight on interview!!
Hello everyone
It's only 3 min video.
Checkout latest video on Python and Please do comment and like the latest video.
th-cam.com/channels/hMJkUEyADmauK1hweT732w.html
Yes , great session
I think this is first round of interview , thats why she is asking basic questions.
This is for 3.6 LPA
Don't hurry broo... First listen the question properly then answer...
Uska interview hogaya hai vroo
@@WashingPowderNirma-mc5zwThat suggestion is for his future interviews...
@@WashingPowderNirma-mc5zw 😂
Ask practical question. Ask to write code rather than asking theory.
This is not a real interview but almost real
We want more videos like this
Dusre ka video hai bhai
She is pronouncing "suite" as "suit" how will the candidate understand?
Interviewer asking very besic concept 🙂they check your besic knowledge.
Such a great company buddies
they asked 15 questions to me.. I was able to answer 12 of them ..
Waiting for the results now.. kinda nervous 🤨
Ninja or digital
@@Ramya0216 both.. it depends on interview performance
did you got selected
Aap select hue bhai pls tell us
@@tayyabarrahmankhan4892 obviously nhi hua hoga .... Nhi toh reply karta tha
Why should the passport applicant be aware of TCS ? As far he is concerned , passport is issued by the Govt of India.
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...
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.
Offices are run by TCS
Passport Seva Kendra is being run by TCSers. That's why.
I was working on TCS psk
wow its easy , i am thinking it was very hard like implement this algo on this problem with this time complexity :)
😂
It is tcs not google or microsoft 😂
@@bishwajeetpandey1570 ahhan
@@bishwajeetpandey1570 very true
3 -4 lakhs ka package me yhi puchega na 40-50 lakhs ka package ke liye mehnat krni hogi
Not to point out but he mixed up saying Datatypes and Datastructures . Correct me if I’m wrong 🙂
Yess
Can finance students learn the Python language and get a job as a Python programmer?
Yes for serious learners
yes
@@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.
@Dheeraj, I'm a mechanical engineer i learnt python and got a job. start small and scale fast. Best of luck.
@@vigneshwaranr3608 Bro Did u go any courses for python?
I like attitude of this candidate.
str="Good Morning"
print(name[2:5])
o/p:
od
space will also be included
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 ?
ofcourse brother do coding learn online
Full stack developer based profiles are in demand with well paid salaries
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.
th-cam.com/video/79pKwdiqcwI/w-d-xo.html
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.
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.
List is not a data type its a data structure
List is a Data Type in Python but it is implemented as Dynamic Array.
And now this Array is real life Data Structures.
We want more interview videos
very very very important and essential concept discussed here... thanks thanks thanks...thanks from DATA is FuturRe channel dedicated to Data Science
Thank you it was very usefull
Excellent
Informative!! Thank you for posting
Datastructures are list tuple and dictionary data type are int are float boolen
Which question are ask in tcs AWS cloud computing
Is he a fresher?
Python interview 🐍😂😂😂😂🤣🤣🤣🤣🤣
What are these interviewers backgrounds😆
What is qualification of the company
Please post more videos learn more confidence this video's
This is python how to search list for google..not an interview at all
Damn easy
Is it digital interview 🙄
how much salary interview is this?
3.6 lpa
Is English is must for interview ?
Yes
Loved This Candidate..
Interviewee is a Malayaali
Examble???
Is this ninja or digital?
They're really a iit professionals
Thank You so much 🐰👀👀👀
Tcs is big in name else nothing. Never ever come in tcs
simulation ?
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}")
Very useful...
output should be od_space not od mo
yes
Guys got selected or not
Bro, how much package did they offer to u bro
3.5 most probably because very basic questions were asked to him. This might be his interview for tcs ninja profile
@@helloworld33577 did he received joining letter
@@vikramram9464 how would I know
Can we use earphones during interview?
Yes you can
Ofc✌
Please upload video on java.
These are very basic questions
Have you got selected?
Thank you very much
Is it fair to record and post an real interview in TH-cam ?
It is conducted by TCS and posted on their website
Super easy questions! We need little tricky Questions.
Niceee video
.had some inspiration
What is CTC..??
Cost to company
How much cost the company bears for a employee includes salary, Travel expenses, insurance etc
Wow nice
Function,slice
Thanks
Good
💛
Basic questions 😐
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
Nice to help sir #codewithdkumar
He gave is best and been very Honest a good resource for company by allowing him to learn and explore more nice @hearled