Fresher Mock Interview PYTHON | Technical Round | PYTHON Interview for Fresher | HR Interview

แชร์
ฝัง
  • เผยแพร่เมื่อ 30 เม.ย. 2023
  • If you are interested please get in touch with this number: 9912577247 (Madhavi HR )
    Hello everyone this is magneq software we are providing training & 100% placement.
    Our Technologies :
    JAVA,
    PYTHON,
    TESTING,
    MAINFRAMES,
    .NET,
    DATA SCIENCE.
    Hello Guys, If you like this video please share and subscribe to magneqsoftware
    Follow Us On :
    Instagram: / magneqsoftw. .
    Facebook: / magneqsoftware
    Linkedin: / magneq-so. .
    Twitter : / magneqsoftware
    #magneqsoftware #training #placement #telugu #students #mockinterview #python #programming #teluguvideos #popularvideos #popular #jobs #pythonfullstackdeveloper
  • วิทยาศาสตร์และเทคโนโลยี

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

  • @chinkuralilifestyle6813
    @chinkuralilifestyle6813 11 หลายเดือนก่อน +102

    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

  • @kvpkrishna7304
    @kvpkrishna7304 ปีที่แล้ว +36

    In the beginning she is not confident but gradually she improved her self in the interview overall good I like her performance

  • @sherycreations899
    @sherycreations899 หลายเดือนก่อน +11

    Interview ❌ Semester Exam ✅

  • @nanishasusan7847
    @nanishasusan7847 8 หลายเดือนก่อน +12

    # remove duplicates in a string
    String='adddp'
    String="".join(set(string))
    print(string)

    • @mrfreefiretamil4716
      @mrfreefiretamil4716 หลายเดือนก่อน +1

      😢

    • @moonlight-td8ed
      @moonlight-td8ed 19 ชั่วโมงที่ผ่านมา

      we shouldnt be using predefined functions.. while doing these kind of questions...

  • @balgondabalgonda5916
    @balgondabalgonda5916 ปีที่แล้ว +13

    Namespace nothing but a collection of currently symbolic name along with the information about the objects with the name reference.

  • @ankitpandita1369
    @ankitpandita1369 11 หลายเดือนก่อน +76

    It's more like a viva rather than an interview😂😂😂

  • @prasannasankar6449
    @prasannasankar6449 ปีที่แล้ว +29

    Good kalpana...
    Plz attend more mock interviews

  • @ItsJustMaha
    @ItsJustMaha 8 หลายเดือนก่อน +15

    Thank you so much I go job in Nasa from these mock interviews 🙏🏽

  • @srikantheedapu4730
    @srikantheedapu4730 ปีที่แล้ว +15

    Kalpanakka supperrrr 🎉🎉🎉🎉

  • @abdullahshahid7537
    @abdullahshahid7537 ปีที่แล้ว +270

    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?

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

      Bro Anni questions final year lo vaa lekaa previous year lo vi kooda aduguthunnaraa

    • @charuwaka1
      @charuwaka1 ปีที่แล้ว +138

      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.

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

      @@charuwaka1 brooooo. Good job✌️

    • @pankajkumar-xh6ud
      @pankajkumar-xh6ud ปีที่แล้ว +4

      @@charuwaka1 great sir♥️♥️

    • @pankajkumar-xh6ud
      @pankajkumar-xh6ud ปีที่แล้ว +4

      @@charuwaka1 respect🖖

  • @HeidiBich-mw7os
    @HeidiBich-mw7os ปีที่แล้ว +30

    Excellent performance

  • @hrishikeshshinde7569
    @hrishikeshshinde7569 ปีที่แล้ว +29

    Optimized code :-
    String=input("enter a string")
    Set1=set(string)
    list1=list(set1)
    Output=''.join(sorted(list1)
    Print(output)

    • @blackjagur2808
      @blackjagur2808 8 หลายเดือนก่อน +1

      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

    • @darkshadow8414
      @darkshadow8414 7 หลายเดือนก่อน

      ​@@blackjagur2808right bro that's easy ❤

    • @darkshadow8414
      @darkshadow8414 7 หลายเดือนก่อน

      Tumhara shi h mgr unordered ho jayegi

  • @iyyappaniyyappa4051
    @iyyappaniyyappa4051 ปีที่แล้ว +12

    It's like a oral test she is asking more questions related to studies

  • @srihari2792
    @srihari2792 ปีที่แล้ว +10

    Kalapana awesome
    Exaplain is so good

  • @thepresistence5935
    @thepresistence5935 ปีที่แล้ว +379

    My mind is telling she is memorized all answers, I don't know why :)

    • @chetanya070
      @chetanya070 ปีที่แล้ว +14

      Rattafication

    • @realshahalam
      @realshahalam ปีที่แล้ว +10

      @@chetanya070 cramming* is the correct word

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

      @@realshahalam desi mai yehe bole hai

    • @pabitra1531
      @pabitra1531 ปีที่แล้ว +12

      bcz she is a leady,all leady are not know about knowledge but they are copy the book

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

      ​@@pabitra1531you know everything????

  • @prime-showcase
    @prime-showcase ปีที่แล้ว +51

    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.

  • @balgondabalgonda5916
    @balgondabalgonda5916 ปีที่แล้ว +8

    Tuple is immutable and cant modify its represent hold the ()

  • @vishva755
    @vishva755 ปีที่แล้ว +7

    One more thing Very important Eye contact

  • @codewithshwe
    @codewithshwe ปีที่แล้ว +5

    Good one, next time try without memoraizing

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

    1:31 what kind of movies and her smile 😂😂

  • @piyushpalsania7685
    @piyushpalsania7685 10 หลายเดือนก่อน +2

    resume is given in hand like a single page, Nice, She should have put that in a transparent

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

    It just seems that she memorised all

  • @lavanyayadavvelpula9870
    @lavanyayadavvelpula9870 ปีที่แล้ว +19

    Well done ma...❤

  • @s.aswini9375
    @s.aswini9375 ปีที่แล้ว +1

    Fabulous kalpana😊

  • @thrushithareddy4229
    @thrushithareddy4229 ปีที่แล้ว +8

    Well done 👍

  • @vavilapallisaisumanth9882
    @vavilapallisaisumanth9882 6 หลายเดือนก่อน +1

    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)))

    • @kraze3143
      @kraze3143 2 หลายเดือนก่อน

      Exactly broo!

  • @ushakiran22
    @ushakiran22 11 หลายเดือนก่อน

    It is very usefull video who want to join python

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

    Good work

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

    Super kalpana🎉

  • @we_four_DAPS
    @we_four_DAPS 17 วันที่ผ่านมา +1

    Its informative🙌🏻❤️

  • @Yagnasri100
    @Yagnasri100 5 หลายเดือนก่อน +2

    Program for remove duplicates
    x=set(input("enter a string:"))
    print(sorted(x))

  • @saumyatiwari6912
    @saumyatiwari6912 ปีที่แล้ว +10

    I have completed my diploma.. Can I give interview in your company?

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

    Keep posting.

  • @mahendrarajuveligandla
    @mahendrarajuveligandla ปีที่แล้ว +5

    Very good 😊

  • @jafarmakandar17
    @jafarmakandar17 10 หลายเดือนก่อน +10

    Mam behaviour was some rude

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

    This is for company or interview training

  • @kumarrajuguduru1997
    @kumarrajuguduru1997 ปีที่แล้ว

    Verry good excellent

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

    Very good kalapna

  • @simransinha6736
    @simransinha6736 6 หลายเดือนก่อน

    OMG! she is so amazing.

  • @saidurgaraom3556
    @saidurgaraom3556 ปีที่แล้ว

    Mamdam your voice is good but interview voice is very low mam

  • @Teja_00
    @Teja_00 ปีที่แล้ว +5

    Salary package entha iche untaru Prends ?

  • @SamiTajQureshi-sx5bq
    @SamiTajQureshi-sx5bq ปีที่แล้ว +8

    Bombastic bro 💖🌼

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

    Nyc 😊

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

    Nice

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

    Good kalpana

  • @AtharzReview
    @AtharzReview 11 หลายเดือนก่อน

    Multitasking can fix one thing but screws many things. Best rule one by one. STOP MULTI-TASKING human is not computer.

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

    Super_Akkaaa😌

  • @thethemeofvoyage2822
    @thethemeofvoyage2822 4 หลายเดือนก่อน +2

    How many marks you scored in viva voice in this practical ?

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

    Useful information

  • @user-og6ot6bh6n
    @user-og6ot6bh6n ปีที่แล้ว +1

    keep posting

  • @vinayofficial11
    @vinayofficial11 ปีที่แล้ว

    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.

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

    Good

  • @user-fw7sx2dw1u
    @user-fw7sx2dw1u 8 หลายเดือนก่อน

    Well done ma...

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

    Super akka

  • @pravinkolambkar3595
    @pravinkolambkar3595 5 หลายเดือนก่อน +1

    Aise by heart karke kya hota hai? Even Interviewers approach doesn't look good. candidate looks too sincere

  • @nayandokhale3114
    @nayandokhale3114 11 หลายเดือนก่อน +2

    Biggest mistake is saying mam or sir in every sentence 😅

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

    Good skills

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

    Nice madam

  • @parameshprs5448
    @parameshprs5448 ปีที่แล้ว

    Very good Chinna...

  • @sahilpasha1103
    @sahilpasha1103 4 หลายเดือนก่อน +2

    I don’t feel this as a interview I feel like ViVA is going on

  • @mrperfectboy9041
    @mrperfectboy9041 2 หลายเดือนก่อน +2

    She just memorised whole questions😂😂

  • @happykids127
    @happykids127 11 หลายเดือนก่อน +1

    She do well. But her sound was very low.😊😊😊

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

    Madam coaching echi job kii interview haa madam

  • @aishwaryajanagama6559
    @aishwaryajanagama6559 ปีที่แล้ว

    Super akka😊

  • @mahendraraju2115
    @mahendraraju2115 ปีที่แล้ว

    Very good kalpana 😊

  • @brokenheros_11
    @brokenheros_11 ปีที่แล้ว +25

    It would be a 30 seconds video, if i was there

    • @100srecordwarehouse6
      @100srecordwarehouse6 ปีที่แล้ว +15

      you mean they would have kicked you after the first question

    • @dillibabus5995
      @dillibabus5995 11 หลายเดือนก่อน +1

      ​@@100srecordwarehouse6😏

    • @senthilmathan
      @senthilmathan 4 หลายเดือนก่อน

      😂​@@100srecordwarehouse6

  • @bhavanabalaraju7890
    @bhavanabalaraju7890 ปีที่แล้ว

    Nice kalpana 🎉

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

    Nice sister

  • @b.krishnareddy5255
    @b.krishnareddy5255 ปีที่แล้ว +2

    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.

    • @msabout_tech
      @msabout_tech ปีที่แล้ว

      icchina string ni set lo convert cheste aipothadi bro

  • @nirmalaveera2301
    @nirmalaveera2301 2 หลายเดือนก่อน

    I'm also food technologist but still I'm a python developer

  • @MohammedNizlan-2328
    @MohammedNizlan-2328 11 หลายเดือนก่อน +4

    😂😂what's the purpose of testing software engineers english vocolbary?🙄🙄

  • @SunilRaju-pd5ji
    @SunilRaju-pd5ji ปีที่แล้ว +2

    Excellent

  • @ravindraanagani7644
    @ravindraanagani7644 9 หลายเดือนก่อน +1

    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......?

  • @nandieswaraokurapati337
    @nandieswaraokurapati337 11 หลายเดือนก่อน +1

    Recently i have completed My Graduation ani cheppi in 1999 ani annadhi enti bayya e ammai 😮

    • @udayraj7017
      @udayraj7017 11 หลายเดือนก่อน

      Kalpana akka kadha ah maaathram vunntadhi bayya😅😅😅

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

    Can we ask what about you in the return when the interviewer ask us how are you?

    • @Pooja-92
      @Pooja-92 ปีที่แล้ว +2

      You can ask how about you instead

  • @saicharannancharla3409
    @saicharannancharla3409 3 หลายเดือนก่อน

    Asking python interview questions from interview bit in the same order

    • @TheKiranAcademy
      @TheKiranAcademy 2 หลายเดือนก่อน

      Watch our PYTHON Mock Interview | Program Solving : th-cam.com/video/HqNptxlrK4U/w-d-xo.html

  • @loony4280
    @loony4280 5 หลายเดือนก่อน +3

    if I could write make code simple
    a = set(input("Enter a string:"))
    print(a)
    here would be my code for that

  • @raviarun5849
    @raviarun5849 11 หลายเดือนก่อน +1

    I have one doubt. I speak tamil more comfortably than english...so can i speak tamil in interview?

  • @BCAboy_akash
    @BCAboy_akash 8 หลายเดือนก่อน

    video me jinhone interview diya tha unhe job mil gyi ?

  • @sakthisai6415
    @sakthisai6415 ปีที่แล้ว

    Which location in this company? it's coimbatore?

  • @BotGaming_YT_
    @BotGaming_YT_ 9 หลายเดือนก่อน +2

    Python does not support method overloading.

  • @Saicharan_Bairagoni.
    @Saicharan_Bairagoni. 5 หลายเดือนก่อน

    To get job learn about python language that's enough

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

    Not resum it’s resumeee😅

  • @fireridergaming3221
    @fireridergaming3221 6 หลายเดือนก่อน

    Person who attend inview will they got job

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

    Good 👍🏻

  • @dpnkr9981
    @dpnkr9981 9 หลายเดือนก่อน

    If I ware one of them, I could not upload my video, why they create contents using us🙂🙂🙂

  • @nikshedbale24
    @nikshedbale24 3 หลายเดือนก่อน

    By the way every interviews are questions in theory

  • @ALF_VINCENZO
    @ALF_VINCENZO 10 หลายเดือนก่อน +1

    It is a scripted vedio I think so
    Because all are saying "what about u mam"

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

    Its real or reel

  • @Nani_official________281
    @Nani_official________281 6 หลายเดือนก่อน

    i have been completeing my BE .can i give interview in your company?

    • @mraviteja3794
      @mraviteja3794 หลายเดือนก่อน

      It's training cum placement I think

  • @fuse018
    @fuse018 9 หลายเดือนก่อน

    Are there movies in python

  • @paluman4992
    @paluman4992 21 วันที่ผ่านมา

    Please Soek Loudly, Awaz Record Ni ho Thii 😢

  • @sandymicheal4319
    @sandymicheal4319 5 หลายเดือนก่อน +2

    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.

  • @worldofcartoon967
    @worldofcartoon967 ปีที่แล้ว

    Actually...ilaanti questions ae aduguthaara 🙄

  • @praveensahu7625
    @praveensahu7625 ปีที่แล้ว

    Voice is not clear

  • @user-re8yl5jz3g
    @user-re8yl5jz3g 11 หลายเดือนก่อน

    god damn the english of the HR lol

  • @RamaKrishna-jj6sb
    @RamaKrishna-jj6sb 5 หลายเดือนก่อน

    Wow super viva 😂😅😂

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

    She doesn't even know that tuple is immutable.

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

      She only learnt some questions and came to interview

    • @Praveen-844
      @Praveen-844 ปีที่แล้ว

      But she answered for many other questions

  • @soren9296
    @soren9296 7 หลายเดือนก่อน

    College exam wla Viva chl rha ki interview

  • @bobbykolakaluri1633
    @bobbykolakaluri1633 11 หลายเดือนก่อน

    Listening movies and watching movies