A Professional Development Plan (PDP), also known as anEmployee Development Plan<span> or an </span>Individual Development Plan<span>, is used to </span>document career goals<span> and set out a strategy on how to meet them. Creating a PDP takes time and planning.</span>
Answer:
It is used to put all types of Excel functions in alphabetical order.
Explanation:
A. browser
Web browsers are programs like internet explorer, safari, chrome. You use them to access web pages on the internet.
Answer: b. My name is BobBob
Explanation:
- $foo = 'Bob'; // Assigns foo variable the value Bob
- $bar = $foo; // Assigns the value of foo to bar
- $bar = "My name is $bar"; //changes the $bar this is the way to include variables directly in the string.
- print $bar; // this prints My name is and moves to the variable $bar which prints the value of $bar which is the value of $foo i.e. Bob
- print $foo; // prints another Bob