Okay, before you go on, do some power poses. standing with your arms up or your legs spread for like 10 minutes can greatly improve your mood. if you're in a classroom though, and can't do that, I would recommend making sure you have good posture while waiting to go up, and keep a smile on your face the whole time! even long before you start. smiling can increase your happiness a whole lot, so make sure you do it! also before the presentation, make sure you drink plenty of water (a gallon a day for the average adult) and get enough sleep. when preparing for your presentation, don't try to memorize the words you're going to say, (especially not if you'll have a reference like a paper or a slideshow) but memorize the ideas you want to convey. if you've written a speech, don't practice the speech exactly, practice conveying the ideas in it without reading from it. The worst thing you can do during a presentation is just stand there and read. Make sure you make eye contact and don't speak in monotone, tell a story with your presentation, don't just give information. if you need help being confident, I would suggest listening to some of your favourite music or some inspiring speeches (which you can find real easy on google<span>) to make you feel good about yourself. If you are having troubles with stage fright, or being in front of people, the best thing I've ever done, is just pretend they aren't there. Pretend you're just talking to yourself in your bedroom, and it becomes a lot more easy to express yourself. and if none of that sort of stuff works, maybe take some nerve medicine, if you have it. </span>
Applying information of a computational language in pseudocode, a code may be written to describe estimating the price of an item on sale for 10% off.
Writting the code:
<em>// This </em><em>pseudocode </em><em>is </em><em>intended </em><em>to desribe</em>
<em>// computing the price of an item on sale for 10% off</em>
<em>start</em>
<em>input origPrice</em>
<em>discount = price * 0.25</em>
<em>finalPrice = origPrice - discount</em>
<em>output finalPrice</em>
<em>stop</em>
<em />
<em>// This pseudocode is intended to </em><em>compute </em><em>the number</em>
<em>// of </em><em>miles per gallon </em><em>you get with your car.</em>
<em>start</em>
<em>input milesTraveled</em>
<em>input </em><em>gallonsOfGasUsed</em>
<em>milesPerGallon = milesTraveled / gallonsOfGasUsed</em>
<em>output milesPerGallon</em>
<em>stop</em>
<em />
<em>// This pseudocode is intended to compute the number</em>
<em>// computing the per dday </em><em>cost </em><em>of your rent</em>
<em>// in a 30-day month</em>
<em>start</em>
<em>input rent</em>
<em>costPerDay = rent / 30</em>
<em>output rent</em>
<em>stop</em>
Learn more about the pseudocode here :
brainly.com/question/13208346
#SPJ1
Dsl is quite high speed, dial up is very low speed (lower then edge on mobile)
but they works via telephone line both
Answer:
host-based security measures
Explanation:
Anti-virus, host-based firewall, system hardening, change control, and log management are host based.
Answer:
see the code snippet below writing in Kotlin Language
Explanation:
fun main(args: Array<String>) {
sumOfNumbers()
}
fun sumOfNumbers(): Int{
var firstNum:Int
var secondNum:Int
println("Enter the value of first +ve Number")
firstNum= Integer.valueOf(readLine())
println("Enter the value of second +ve Number")
secondNum= Integer.valueOf(readLine())
var sum:Int= firstNum+secondNum
println("The sum of $firstNum and $secondNum is $sum")
return sum
}