I like her confidence level atleast she is a able to deliver the answers ... As a fresher its good start some people hesitate to go to interview itself
1. What is the definition of the class and Object? 2. What is Encapsulation 3. What is Inheritance 4. Advantage of Inheritance 5. Types of Inheritance 6. What is Method overloading 7. What is the Method overriding 8. What is Polymorphism 9. Why do we call Python is Dynamically typed language 10. Define Namespace in Python 11. Scope resolution in Python 12. What is the Python path 13. How do you split function in Python 14. What is the Difference between end and sep parameters? 15. What is a list? 16. Methods of list? 17. What is a tuple? 18. WAP to remove duplicates in a string?
Class: A class is a blueprint for an object. It defines the object's properties and methods. Object: An object is an instance of a class. It has the properties and methods defined by the class. Encapsulation: Encapsulation is the concept of hiding the implementation details of a class from its users. This is done by declaring the class's attributes as private or protected. Inheritance: Inheritance is the ability of one class to inherit the properties and methods of another class. This allows us to reuse code and reduce the amount of code we need to write. Types of Inheritance: There are two types of inheritance: single inheritance and multiple inheritance. Single inheritance is when a class inherits from only one other class. Multiple inheritance is when a class inherits from more than one other class. Method Overloading: Method overloading is when a class has two or more methods with the same name, but different parameters. Method Overriding: Method overriding is when a subclass has a method with the same name and parameters as a method in its superclass. The subclass's method will override the superclass's method. Polymorphism: Polymorphism is the ability of an object to behave in different ways depending on its context. This is achieved through method overloading and method overriding. Why do we call Python is Dynamically typed language: Python is a dynamically typed language because the type of a variable is not declared at the time of declaration. The type of a variable is determined at runtime, based on the value that is assigned to it. Define Namespace in Python: A namespace is a way of organizing variables and functions. It is a collection of names that are associated with objects. Scope resolution in Python: Scope resolution is the process of determining which name is associated with a variable or function. This is done by looking at the namespace in which the name is used. What is the Python path: The Python path is a list of directories that Python searches for modules. When you import a module, Python looks for the module in the directories on the path. How do you split function in Python: The split function in Python splits a string into a list of strings. The split function takes two arguments: the string to split and the delimiter. The delimiter is the character that is used to split the string. What is the Difference between end and sep parameters? The end parameter in Python is used to specify the character that is used to terminate the output. The sep parameter is used to specify the character that is used to separate the output items. What is a list? A list is a data structure that can hold a collection of objects. The objects in a list can be of any type. Methods of list? The list object has a number of methods that can be used to manipulate the list. Some of the most common methods are: append(): Adds an object to the end of the list. insert(): Inserts an object into the list at a specified index. remove(): Removes an object from the list. sort(): Sorts the list in ascending order. reverse(): Reverses the order of the list. What is a tuple? A tuple is a data structure that can hold a collection of objects. The objects in a tuple are immutable, which means that they cannot be changed once they have been created. WAP to remove duplicates in a string? Here is a Python code to remove duplicates in a string: Python def remove_duplicates(string): seen = set() new_string = "" for char in string: if char not in seen: seen.add(char) new_string += char return new_string Use code with caution. I hope this answers all your questions.
She blindly wrote the byhearted code we can simply write by 1. Taking elements into a list 2. Convert the list to set ( if you want the output in list then list(set(acquired list)))
@mahgneqsoftware - mene online certificate course kiye hay coding me or muje coding ke baare me B.C.A. walo jitna knowlage hay lekin mene B.C.A. nahi kiya tho kya muje kisi private company me ek ache package ki job mil sakti hay kya ???
I believe that the interviewer needs coaching on how to interview. It's not advisable to be commanding or bossing off & that was evident. Second, the interviewee must not deliver learnt it by heart answers. The best bid is to sound natural. Last of all grammar needs to be polished from both ends.
I like her confidence level atleast she is a able to deliver the answers ... As a fresher its good start some people hesitate to go to interview itself
1. What is the definition of the class and Object?
2. What is Encapsulation
3. What is Inheritance
4. Advantage of Inheritance
5. Types of Inheritance
6. What is Method overloading
7. What is the Method overriding
8. What is Polymorphism
9. Why do we call Python is Dynamically typed language
10. Define Namespace in Python
11. Scope resolution in Python
12. What is the Python path
13. How do you split function in Python
14. What is the Difference between end and sep parameters?
15. What is a list?
16. Methods of list?
17. What is a tuple?
18. WAP to remove duplicates in a string?
Bro Anni questions final year lo vaa lekaa previous year lo vi kooda aduguthunnaraa
Class: A class is a blueprint for an object. It defines the object's properties and methods.
Object: An object is an instance of a class. It has the properties and methods defined by the class.
Encapsulation: Encapsulation is the concept of hiding the implementation details of a class from its users. This is done by declaring the class's attributes as private or protected.
Inheritance: Inheritance is the ability of one class to inherit the properties and methods of another class. This allows us to reuse code and reduce the amount of code we need to write.
Types of Inheritance: There are two types of inheritance: single inheritance and multiple inheritance.
Single inheritance is when a class inherits from only one other class.
Multiple inheritance is when a class inherits from more than one other class.
Method Overloading: Method overloading is when a class has two or more methods with the same name, but different parameters.
Method Overriding: Method overriding is when a subclass has a method with the same name and parameters as a method in its superclass. The subclass's method will override the superclass's method.
Polymorphism: Polymorphism is the ability of an object to behave in different ways depending on its context. This is achieved through method overloading and method overriding.
Why do we call Python is Dynamically typed language: Python is a dynamically typed language because the type of a variable is not declared at the time of declaration. The type of a variable is determined at runtime, based on the value that is assigned to it.
Define Namespace in Python: A namespace is a way of organizing variables and functions. It is a collection of names that are associated with objects.
Scope resolution in Python: Scope resolution is the process of determining which name is associated with a variable or function. This is done by looking at the namespace in which the name is used.
What is the Python path: The Python path is a list of directories that Python searches for modules. When you import a module, Python looks for the module in the directories on the path.
How do you split function in Python: The split function in Python splits a string into a list of strings. The split function takes two arguments: the string to split and the delimiter. The delimiter is the character that is used to split the string.
What is the Difference between end and sep parameters? The end parameter in Python is used to specify the character that is used to terminate the output. The sep parameter is used to specify the character that is used to separate the output items.
What is a list? A list is a data structure that can hold a collection of objects. The objects in a list can be of any type.
Methods of list? The list object has a number of methods that can be used to manipulate the list. Some of the most common methods are:
append(): Adds an object to the end of the list.
insert(): Inserts an object into the list at a specified index.
remove(): Removes an object from the list.
sort(): Sorts the list in ascending order.
reverse(): Reverses the order of the list.
What is a tuple? A tuple is a data structure that can hold a collection of objects. The objects in a tuple are immutable, which means that they cannot be changed once they have been created.
WAP to remove duplicates in a string? Here is a Python code to remove duplicates in a string:
Python
def remove_duplicates(string):
seen = set()
new_string = ""
for char in string:
if char not in seen:
seen.add(char)
new_string += char
return new_string
Use code with caution.
I hope this answers all your questions.
@@charuwaka1 brooooo. Good job✌️
@@charuwaka1 great sir♥️♥️
@@charuwaka1 respect🖖
Interview ❌ Semester Exam ✅
In the beginning she is not confident but gradually she improved her self in the interview overall good I like her performance
# remove duplicates in a string
String='adddp'
String="".join(set(string))
print(string)
😢
we shouldnt be using predefined functions.. while doing these kind of questions...
append() method is a list method in Python and it is used to add an element to the end of a list, it does not work on a string.
Yes 👍
Correct bro
Replace method tho sting latter change cheyyachu
That's why she used a joined bro.
Optimized code :-
String=input("enter a string")
Set1=set(string)
list1=list(set1)
Output=''.join(sorted(list1)
Print(output)
x = input()
s = ""
for i in range(0, len(x)):
if x[i] not in s:
s += x[i]
print(s)
bro it is more optimized
@@blackjagur2808right bro that's easy ❤
Tumhara shi h mgr unordered ho jayegi
Thank you so much I go job in Nasa from these mock interviews 🙏🏽
If you try more may get in CIA & RAW also. Good luck..
Namespace nothing but a collection of currently symbolic name along with the information about the objects with the name reference.
Kalpanakka supperrrr 🎉🎉🎉🎉
Good kalpana...
Plz attend more mock interviews
My mind is telling she is memorized all answers, I don't know why :)
Rattafication
@@chetanya070 cramming* is the correct word
@@realshahalam desi mai yehe bole hai
bcz she is a leady,all leady are not know about knowledge but they are copy the book
@@pabitra1531you know everything????
It's like a oral test she is asking more questions related to studies
It's more like a viva rather than an interview😂😂😂
right
It's a technical round
Even I can say viva properly than her..😂
She blindly wrote the byhearted code we can simply write by
1. Taking elements into a list
2. Convert the list to set ( if you want the output in list then list(set(acquired list)))
Exactly broo!
Tuple is immutable and cant modify its represent hold the ()
One more thing Very important Eye contact
Excellent performance
1:31 what kind of movies and her smile 😂😂
It is very usefull video who want to join python
Kalapana awesome
Exaplain is so good
Program for remove duplicates
x=set(input("enter a string:"))
print(sorted(x))
Super bro ❤
It just seems that she memorised all
She do well. But her sound was very low.😊😊😊
It due to nervousness
OMG! she is so amazing.
Good one, next time try without memoraizing
I don’t feel this as a interview I feel like ViVA is going on
Super kalpana🎉
Well done ma...❤
After seeing kalpana name i rememberd Dubai seenu movie scene ravi teja with Shiyaji shinde party scene as ravi teja giving hint to kalpana..
How many marks you scored in viva voice in this practical ?
Salary package entha iche untaru Prends ?
Biggest mistake is saying mam or sir in every sentence 😅
Nice kalpana
😊😊😊😊kalpana
Aise by heart karke kya hota hai? Even Interviewers approach doesn't look good. candidate looks too sincere
Well done 👍
Fabulous kalpana😊
Multitasking can fix one thing but screws many things. Best rule one by one. STOP MULTI-TASKING human is not computer.
She just memorised whole questions😂😂
Yes😂
Good work
Very good 😊
She don't know about list functions, but how she wrote the append in program..😅, she was explaining also.. i was totally confused 😂 it is......?
Hesitation to tell bro
I have completed my diploma.. Can I give interview in your company?
Mam behaviour was some rude
Python does not support method overloading.
Very good kalapna
Interview ❌ Viva ✅ 😂
write a code to remove duplicates in a string code is wrong. because append is a list method it's not work on a string.
icchina string ni set lo convert cheste aipothadi bro
Please Soek Loudly, Awaz Record Ni ho Thii 😢
Recently i have completed My Graduation ani cheppi in 1999 ani annadhi enti bayya e ammai 😮
Kalpana akka kadha ah maaathram vunntadhi bayya😅😅😅
This is for company or interview training
hello mam, mera left ear dead ho gya hai jisse main kam sun pata hai toh kya main interview de sakta hu.
please tell me mam.
If I ware one of them, I could not upload my video, why they create contents using us🙂🙂🙂
Bombastic bro 💖🌼
Asking python interview questions from interview bit in the same order
Watch our PYTHON Mock Interview | Program Solving : ruclips.net/video/HqNptxlrK4U/видео.html
Mamdam your voice is good but interview voice is very low mam
I'm also food technologist but still I'm a python developer
video me jinhone interview diya tha unhe job mil gyi ?
It would be a 30 seconds video, if i was there
you mean they would have kicked you after the first question
@@100srecordwarehouse6😏
😂@@100srecordwarehouse6
Keep posting.
😂😂what's the purpose of testing software engineers english vocolbary?🙄🙄
To get job learn about python language that's enough
Person who attend inview will they got job
if I could write make code simple
a = set(input("Enter a string:"))
print(a)
here would be my code for that
Super_Akkaaa😌
Actually...ilaanti questions ae aduguthaara 🙄
Madam coaching echi job kii interview haa madam
By the way every interviews are questions in theory
College exam wla Viva chl rha ki interview
keep posting
Useful information
i have been completeing my BE .can i give interview in your company?
It's training cum placement I think
Nyc 😊
Verry good excellent
Can we ask what about you in the return when the interviewer ask us how are you?
You can ask how about you instead
Voice is not clear
Are there movies in python
It is a scripted vedio I think so
Because all are saying "what about u mam"
Super akka
Good skills
Well done ma...
Good kalpana
Nice kalpana 🎉
Which location in this company? it's coimbatore?
Viva chal raha hey kya idara😂😂
Very good kalpana 😊
Nice
Good
Viva questions in interview 😅
1:18
resume hath me leke name pooch re h
@mahgneqsoftware - mene online certificate course kiye hay coding me or muje coding ke baare me B.C.A. walo jitna knowlage hay lekin mene B.C.A. nahi kiya tho kya muje kisi private company me ek ache package ki job mil sakti hay kya ???
If i gave that interview i would have got the job... 😅😅 Lol
I believe that the interviewer needs coaching on how to interview. It's not advisable to be commanding or bossing off & that was evident.
Second, the interviewee must not deliver learnt it by heart answers. The best bid is to sound natural. Last of all grammar needs to be polished from both ends.
Super akka😊
Wow super viva 😂😅😂
In this video a lot noise
Nice madam
Very good Chinna...
She doesn't even know that tuple is immutable.
She only learnt some questions and came to interview
But she answered for many other questions