Posts

Server is busy, Please try again later, Error code: Restrict Area [Solved]

Image
Well aouple of days ago I was getting the same error and after then I started to explore on internet and find many solution and none of them worked for me after that I tried my self and find a solution which 100% worked which is: This error is because of IP address is not located correctly and you can solve by changing the IP address of your phone by Panda VPN and also other but most of them will not work and show error of China location You can watch Complete video about solution of this error Server is busy,please try again later, Error code: Restrict area Complete Solution 100% | Khet Singh

Introduction to motivation and its importance

Image
INTRODUCTION TO MOTIVATION AND ITS IMPORTANCE Motivation is the word derived from the word ’ motive ’ which means needs, desires, wants or drives within the individuals. It is the process of stimulating people to actions to accomplish the goals. In the work goal context the psychological factors stimulating the people ’ s behavior  can be - Ø  desire for money Ø  success Ø  recognition Ø  job-satisfaction Ø  team work, etc One of the most important functions of management is to create willingness amongst the employees to perform in the best of their abilities. Therefore t he   role of a leader   is to arouse interest in performance of employees in their jobs. The process of motivation consists of three stages:- Ø  A felt need or drive Ø  A stimulus in which needs have to be aroused Ø  When needs are satisfied, the satisfaction or accomplishment of goals. Therefore, we can say that motivation is a psych...

Top Five Things To Safe Yourself On Internet

Image
1) Create Unique And Strong Password: We know you’ve heard it before, but creating  strong, unique passwords  for all your critical accounts really is the best way to keep your personal and financial information safe. And this is only way to keep your data safe and secure. 2) Use A Firewall In Your pc: Even if your network is secure, you should still use a firewall. This an electronic barrier that blocks unauthorized access to your computers and devices, and is often included with  comprehensive security software . Using a firewall ensures that all of the devices connected to your network are secured, including Internet of Things (IoT) devices like smart thermostats and webcams. This is important since many IoT devices aren’t equipped with security measures, giving hackers a vulnerable point of entry to your entire network. 3) Keep Up To Date: Keep all your software updated so you have the latest security patches. Turn on automatic updates so ...

Learn to Program: The Fundamentals — Week 3 Exercise Answers

Image
Learn to Program: The Fundamentals — Week 3 Exercise Score of  16.00  out of  16.00 . You should run any code that you are unsure of, in IDLE or in the Python Visualizer (or both). Question 1 Variable  dollars  refers to the value  8 . Select the expression(s) that produce  True . Your Answer Score Explanation 8 >= dollars Correct 0.25 dollars != 8 Correct 0.25 8 = dollars Correct 0.25 dollars == 8.0 Correct 0.25 Total 1.00 / 1.00 Question Explanation The equality operator is  == , and the assignment operator is  = . When the equality operator ( == ) is applied to  int  value  8  and  float  value  8.0 , the two values are considered equivalent. Question 2 Variable  instructors  refers to the value  2 . Select the expression(s) that produce  True . Your Answer Score Explanation not not instructors >= -3 Correct 0.25 not instructors * 2 > 1 Co...

Learn to Program: The Fundamentals — Week 2 Exercise Answers

Image
Learn to Program: The Fundamentals — Week 2 Exercise Score of  17.00  out of  18.00 . Answer the following questions. Some of the questions will require you to run code in IDLE's Python shell. (You should do this anyway to get used to using IDLE.) Question 1 Which of the following results in a  SyntaxError ? Your Answer Score Explanation  '''yes no''' Correct 0.25  "yes no" Correct 0.25  'yes\nno' Correct 0.25  'yes no' Correct 0.25 Total 1.00 / 1.00 Question Explanation Try typing each option exactly as it appears into IDLE, paying particular attention to newlines. Copying and pasting might not work, so if you're frustrated, try typing them out. Make sure you understand why each one does what it does! Question 2 Which of the following results in a  SyntaxError ? Your Answer Score Explanation '"Once upon a time...", she said.' Correct 0.25 "He said, "Yes!"...