Future of world with technology grow, thrive, empower yourself, one step at a time. Sucess unlocked.
The journey of self-motivation and personal growth is a lifelong path, filled with twists and turns, triumphs and setbacks. By embracing this journey, we can develop the skills, confidence, and resilience needed to achieve our goals and live a fulfilling life. I hope that my insights and experiences will inspire and motivate you to embark on your own journey of self-discovery and growth. Join me as I share insights, experiences, and practical tips on living a fulfilling life.
Tuesday, December 31, 2019
Resignation letter format
Resignation letter format:
Name :
Organization :
Employee Code :
Branch :
I would like to inform you that I am resigning from my position as _______ on deputation for XYZ company name, at location/ branch name, due to my personal and family reason.
Due to my personal reason I am requesting you to relieve me on mention the date.
Thank you for the support and the opportunities that you have provided me during year.
I have truly enjoyed my tenure with XYZ company name, and am more than grateful for the encouragement you have given me in pursuing my professional and personal growth objectives.
If I can be of any assistance during this transition in order to facilitate the seamless passing of my responsibilities to my successor, please let me know. I would be glad to help however I can.
Have a great day ahead.
Best Regards,
Name :
Organization :
Employee Code :
Branch :
I would like to inform you that I am resigning from my position as _______ on deputation for XYZ company name, at location/ branch name, due to my personal and family reason.
Due to my personal reason I am requesting you to relieve me on mention the date.
Thank you for the support and the opportunities that you have provided me during year.
I have truly enjoyed my tenure with XYZ company name, and am more than grateful for the encouragement you have given me in pursuing my professional and personal growth objectives.
If I can be of any assistance during this transition in order to facilitate the seamless passing of my responsibilities to my successor, please let me know. I would be glad to help however I can.
Have a great day ahead.
Best Regards,
Acceptance of offer letter format
Acceptance of offer letter:
It was wonderful to speak with you on the phone about the Designation __________ role at XYZ Company. I'm thrilled to formally accept this job offer.
I'm looking forward to working with you, and the rest of the senior management team at XYZ, on charting a new direction for marketing strategy.
As we discussed, my start date will be ______, with an annual / monthly salary of ________ .
I'm looking forward to seeing you next day.
Please let me know if there is any paperwork or additional information you need from me beforehand, or if there is any documentation I should bring along on my first day.
I'm always available on email, but feel free to call if that's more convenient Mobile_______ .
Again, thank you so much for this opportunity.
Thank You.
Have a great day ahead.
Best Regards,
Your Name
It was wonderful to speak with you on the phone about the Designation __________ role at XYZ Company. I'm thrilled to formally accept this job offer.
I'm looking forward to working with you, and the rest of the senior management team at XYZ, on charting a new direction for marketing strategy.
As we discussed, my start date will be ______, with an annual / monthly salary of ________ .
I'm looking forward to seeing you next day.
Please let me know if there is any paperwork or additional information you need from me beforehand, or if there is any documentation I should bring along on my first day.
I'm always available on email, but feel free to call if that's more convenient Mobile_______ .
Again, thank you so much for this opportunity.
Thank You.
Have a great day ahead.
Best Regards,
Your Name
Monday, December 30, 2019
Python isinstance()
In Python isinstance() :
isinstance()
The Python isinstance() function is used to check whether the object or variable is an instance of the specified class type or data type.
The isinstance() syntax and parameter:
isinstance(object, classinfo)
The isinstance() function checks if the object argument is an instance or subclass of classinfo class argument.
isinstance Parameters:
The isinstance() takes two arguments, and both are mandatory.
object: The object/instance or variable to check. The object can be any class object or any variable name.
classinfo: Class info is type name, class name or tuple of types and classes. For example, int, str, list, dict, or any user-created class.
Return Value from isinstance():
If an object or variable is of a specified type, then isinstance() return true otherwise false.
example:
marks = 71
result = isinstance(marks, int)
if result :
print("Yes! given variable is an instance of type int")
else:
print("No! given variable is not an instance of type int")
Output:
Yes! given varible is an instance of type int
Using Python isinstance(), you can do the followings:
1.Check the type of a Python variable is of a given type.
2.Verify whether a variable is a number or string.
3.Check if an object is an instance of a specified class.
4.Check whether variable or object is of dict type, list type, set type, tuple type.
isinstance() with Python Class
A isinstance() function test object is of a specified class type. isinstance() is working as a comparison operator because it compares the object with the specified class type.
The isinstance result will be true if the object is an instance of the given class type:
Example:
class Employee:
def __init__(self, name, salary):
self.name = name
self.salary = salary
class Person:
def __init__(self, name, sex):
self.name = name
self.sex = sex
emp = Employee("Tom", 10000)
per = Person("Cruise", "male")
print("Checking emp object is an instance of Employee")
if isinstance(emp, Employee) :
print("Yes! given object is an instance of class Employee\n")
else:
print("No! given object is not an instance of class Employee")
print("Checking per object is an instance of Employee")
if isinstance(per, Employee) :
print("Yes! given object is an instance of class Employee")
else:
print("No! given object is not an instance of class Employee\n")
Output:
Checking emp object is an instance of Employee
Yes! a given object is an instance of class Employee
Checking per object is an instance of Employee
No! given object is not an instance of class Employee
The isinstance function works on the principle of the is-a relationship. The concept of an is-a relationship is based on class inheritance.
isinstance()
The Python isinstance() function is used to check whether the object or variable is an instance of the specified class type or data type.
The isinstance() syntax and parameter:
isinstance(object, classinfo)
The isinstance() function checks if the object argument is an instance or subclass of classinfo class argument.
isinstance Parameters:
The isinstance() takes two arguments, and both are mandatory.
object: The object/instance or variable to check. The object can be any class object or any variable name.
classinfo: Class info is type name, class name or tuple of types and classes. For example, int, str, list, dict, or any user-created class.
Return Value from isinstance():
If an object or variable is of a specified type, then isinstance() return true otherwise false.
example:
marks = 71
result = isinstance(marks, int)
if result :
print("Yes! given variable is an instance of type int")
else:
print("No! given variable is not an instance of type int")
Output:
Yes! given varible is an instance of type int
Using Python isinstance(), you can do the followings:
1.Check the type of a Python variable is of a given type.
2.Verify whether a variable is a number or string.
3.Check if an object is an instance of a specified class.
4.Check whether variable or object is of dict type, list type, set type, tuple type.
isinstance() with Python Class
A isinstance() function test object is of a specified class type. isinstance() is working as a comparison operator because it compares the object with the specified class type.
The isinstance result will be true if the object is an instance of the given class type:
Example:
class Employee:
def __init__(self, name, salary):
self.name = name
self.salary = salary
class Person:
def __init__(self, name, sex):
self.name = name
self.sex = sex
emp = Employee("Tom", 10000)
per = Person("Cruise", "male")
print("Checking emp object is an instance of Employee")
if isinstance(emp, Employee) :
print("Yes! given object is an instance of class Employee\n")
else:
print("No! given object is not an instance of class Employee")
print("Checking per object is an instance of Employee")
if isinstance(per, Employee) :
print("Yes! given object is an instance of class Employee")
else:
print("No! given object is not an instance of class Employee\n")
Output:
Checking emp object is an instance of Employee
Yes! a given object is an instance of class Employee
Checking per object is an instance of Employee
No! given object is not an instance of class Employee
The isinstance function works on the principle of the is-a relationship. The concept of an is-a relationship is based on class inheritance.
Happy New Year 2020
In this new year,your every wish and may God fill you with lots of happiness,
With these prayers, Happy New Year to you.
Happy new year full of new expectations,
Congratulations on this trick of happiness.
All your dreams are complete this year
Wishing you a very happy year.
Happy New Year 2020.
Saturday, December 28, 2019
Write an assembly program for 8085 microprocessor to multiply a number by 8
Write an assembly program for 8085 microprocessor to multiply a number by 8
Program:
MVI A, 30H
RRC
RRC
RRC
OUT PORT1
HLT
Program:
MVI A, 30H
RRC
RRC
RRC
OUT PORT1
HLT
Write a program for 8085 microprocessor to arrange first 10 numbers from memory address 3000H in an ascending order.
Write a program for 8085 microprocessor to arrange first 10 numbers from memory address 3000H in an ascending order.
Answer:
MVI B, 09 :"Initialize counter"
START :"LXI H, 3000H: Initialize memory pointer"
MVI C, 09H :"Initialize counter 2"
BACK: MOV A, M :"Get the number"
INX H :"Increment memory pointer"
CMP M :"Compare number with next number"
JC SKIP :"If less, don’t interchange"
JZ SKIP :"If equal, don’t interchange"
MOV D, M
MOV M, A
DCX H
MOV M, D
INX H :"Interchange two numbers"
SKIP:DCR C :"Decrement counter 2"
JNZ BACK :"If not zero, repeat"
DCR B :"Decrement counter 1"
JNZ START
HLT :"Terminate program execution"
Friday, December 27, 2019
To be happy:
To be happy:
- Always be happy you keep yourself happy by doing the right thing you what to do.
- Happiness is the feeling of getting joy in what you are doing.
- A smile keeps you happy which can make your life, always smile on your face is not easy way there may be downs where you need to keep yourself strong mentally as well as physically.
- Make a habit to be always happy with a smile on your face.Think that what will be the last of all this id death which everyone will face ,some may face before you some after you ,so why to worry enjoy your life.
- After your death how will you can be happy as life is once. Birthday is always wished Happy birthday so make every day your birthday which will make your everyday happy i.e. Happy Everyday.
- To keep yourself happy depends on how much time you want to be as if you think about yourself it will make only you happy for sometime but if you help others to make their life happy it will make you happy for lifetime.
Subscribe to:
Posts (Atom)
Featured posts
Mongolia
Mongolia! Mongolia is a vast and sparsely populated country in East Asia, known for its stunning natural beauty, rich history, and unique c...

Popular posts
-
From Side Hustle to Main Income: 7 Proven Ways to Make Money Online in 2025 Introduction: The New Era of Earning – Why 2025 is Your Year ...