Skip to main content

Posts

Showing posts matching the search for python interview

Python + Django Live Interview session

Python Live Interview | TOP 20 Interview Question of Python, Django | Django + PYTHON MOCK Interview This is Python Live Interview, session We have posted this session to know the live experience of the interviewee during the interview and provide important interview questions. If any positive point you got then you can apply and if any negative point you got then you can improve in your skills. Share it on your group and Jobseeker for interview assistance. #pythonprogramming #computerscience #jobseekers #interviewquestions This Shiva Concept Solution video on "Django Interview Questions and Answers" will help you understand the 50 most asked Django Interview Questions with their best answers. It will help in preparing for your upcoming Django Developer Interviews. I am providing the LIVE Interview session, you can view all sessions and check your technical skills, you can also learn common mistakes during the interview. Interview on Core concept of Python:- Python Live ...

Python Interview Question 2020

 Python Interview Question for freshers:- Many freshers students face problems in Python basic interview questions, now I am posting some basic interview questions of Python. 1)  What is  Python? Python is compiled or Interpreted?  Python has a machine code or Byte code? Who develops python? 2)  using python, can we create System software? 3)  Python has a data type or not?  explain the size of int, float, char, etc? 4)  What is the difference between C and Python? 5)  Python is Script-based or Code based language, explain in details? 6)  Python is an operating System dependent or Independent? 7)  Python is low level, high level or Middle-level language explain it? 8) Which operating System python script executed first? 9)  What is docstring in Python? 10)  How we can remove front-space from Python code? 11)  What is the membership and identity operator in Python? 12)  Python support typecasting or Type conversio...

String tutorials in Python ,String-based python interview questions

A string is a collection of chars, we can store multiple characters set into String. The base Index of the String will be started from 0 to size-1 similar to LIST.but all elements of the String are connected with each other. we can write String is single quote (' '),double quote (" ") and triple quote ("""). a= 'hello'  ;  //Single Quote String a = "hello"  //Double quote String a= """hello""" //Triple quote String s = "hello" s[0]= h s[1]= e s[2]=l s[3]=l s[4]=o Example of String Program? Q1) WAP to count the total vowel and consonant in String? Solution:- s = "hello" c1=0 c2=0 for i in range(0,len(s)):     if s[i]=='a' or s[i]=='e' or s[i]=='i' or s[i]=='o' or s[i]=='u':         c1=c1+1     else:         c2=c2+1 print("total vowel is ",c1," total consonent is ",c2)      Q2)  WAP to check that String is palindrome...

Skype Interview | Python ,Django Interview of freshers

  Skype  Interview |  Interview of freshers | Telephonic Interview | Skype round of interview:- In this article, I am explaining, how to prepare for a Skype technical interview session. I have also provided a Live Skype Interview Session below, you can see and get an idea of Skype round. Skype interviews are more common in today’s job market due to convenience, flexibility, and money-saving benefits for employers. This video is going to talk about how to face Skype interviews. Watch this video to know more tips during the and after the Skype interview. T his is a Skype round interview of java fresher's, I have posted a live interview to get an idea about the skype round of technical interviews for Java learners. He performs well because this was the first interview of him on skype, you can learn from this. you should also discover the weakness and positiveness during the interview. When we take an interview with fresher or experienced then they do some common mistakes, ...

Python Interview Question and Answer

Python Interview Question and Answer HR Round Interview Question: 1) Can you walk us through your background and how it led you to this role? 2) What motivates you to join our company? 3) How do you handle a situation where you disagree with your manager? 4) Describe a time you went above and beyond in your role. 5). How do you manage stress and tight deadlines? 6) What are your strengths and areas for improvement? 7) How do you stay updated with the latest technologies and industry trends? Technical Interview Question: 1. How does Python handle memory management and garbage collection? Answer : Python uses reference counting to track object references and a cyclic garbage collector to handle circular references. When an object’s reference count drops to zero, it’s deallocated. The gc module detects cycles using a mark-and-sweep algorithm. Example : import gc class Node : def __init__ (self): self. next = None node1, node2 = Node(), Node() node1. next , node2. next = no...