Godaddy - Python - AWS Lambda
DELETE Record on Godaddy
Hi Take your seat Tell about urself What project you have done What is your future goal Which domain you are willing to work What you know about cloud service How good you are in python What you have done in python ? Why we are using python? What you script language you are comfortable with? What you like in IT industry? Technical questions Finally, Good, I will update my feedback. You will be notified further if selected.
List of Questions
Take your seat Could you please tell about yourself Do you have any nowlege about Cloud Services What is API JSON What is the benefits of AWS Time and space complicity What project you have done in your final year what is your futuristic goal
Python
How good you are in Python How is Exceptional handling done in Python? What is a break, continue, and pass in Python? Conditions Inheritance What is the benefits of AWS Time and space complicity Ill upate the feebac they will let you lnow
Inheritance
class Dad:
def action(self):
print("appa")
class Son(Dad):
def music(self):
print("son")
son = Son()
son.action()
son.music()
appa
son
Input Parameters
ADD Record into Godaddy
oops questions
-------------
q1 : what will be output for this
class Base:
def display(self):
print("Base")
class Derived(Base):
def display(self):
print("Derived")
super().display()
obj = Derived()
obj.display()
q2: What is self keyword in python
q3: how do you write constructor methon in python
q4: what will be output of this
class Parent:
def __init__(self, value):
self.value = value
class Child(Parent):
def __init__(self):
super().__init__(10)
value = 23
obj = Child()
print(obj.value)
q5: Difference between Method Overloading and Method Overriding in Python
q6: what will be output of this
def func(s):
return s[::-1]
# Example usage
input_string = "Welcome to python programming course!"
q7: what will be output of this
q8: write a program to find a divisible no : 12 without loop.
q9: What are *args and **kwargs
q10:Differentiate between List and Tuple?
List Records from Godaddy
fibnocci series palindrome anagram Reverse a String List Duplicates String Compression: e.g., "aabbcc" to "a2b2c2". Sorted Lists