Questions Uploads

computer configuration and security

When you are looking at remote access to a networked computer or device, what considerations and issues should be evaluated? For example, would you evaluate computer configuration and security? Identify three considerations and/or issues related to remote access to a networked device, and frame your response in one to two paragraphs.

 
Looking for a Similar Assignment? Order now and Get 10% Discount! Use Coupon Code "Newclient"

Python

I need help with an assignment. The goal of the script here for Python is to make a program that lets users enter their information as long as they want. The information I need is sex, age, and name. Then I have to print the number of males/number of females and an average age. Finally, the user has to be able to exit the program. Additionally, there must be an exception for spelling male or female wrong and an exception for ages outside of the 18-65 range. This is what I have so far but loops, lists and exceptions is quite confusing.

name = ” “

gender = ” “

age = ” “

maleVariable = []

femaleVariable = []

ageVariable = []

name = raw_input (“Enter name here or press enter to end script:”)

while True:

   if name == “enter”:

       break

   else:

       age = raw_input (“Enter age here:”)

       gender = raw_input (“Enter gender here (male or female):”)

   if gender == “male”:

       maleCount == maleCount + 1

       MaleInfo.append ((name, age))

   if gender == “female”:

       femaleCount = femaleCount + 1

       FemaleInfo.append ((name, age))

name = “”

list = [ ]

while name <> ” “:

   name = raw_input (“What is your name: “)

age = “”

list = [ ]

while age <> ” “:

   age = raw_input (“How old are you: “)

sex = “”

list = [ ]

while sex <> ” “:

   sex = raw_input (“Are you a male or female: “)

for i in MaleInfo:

   print i[0] + ” is ” + i[1] + ” year old.”

for i in FemaleInfo:

   print i [0] + ” is ” + i [1] + “years old.”

cont = ‘y’

cont not in “yes or no”

print femaleCount

print femaleAge/femaleCount

print maleCount

print maleAge/maleCount

print “Loop completed”

maleVariable = []

femaleVariable = []

 
Looking for a Similar Assignment? Order now and Get 10% Discount! Use Coupon Code "Newclient"

Python

Hello,

   I need help with an assignment. The goal of the script here for Python is to make a program that lets users enter their information as long as they want. The information I need is sex, age, and name. Then I have to print the number of males/number of females and an average age. Finally, the user has to be able to exit the program. This is what I have so far. I think I am on the right path but some help would be great in completing this script.

name = ” “

gender = ” “

age = ” “

maleVariable = []

femaleVariable = []

ageVariable = []

name = raw_input (“Enter name here or press enter to end script:”)

while True:

   if name == “enter”:

       break

   else:

       age = raw_input (“Enter age here:”)

       gender = raw_input (“Enter gender here (male or female):”)

   if gender == “male”:

       maleCount == maleCount + 1

       MaleInfo.append ((name, age))

   if gender == “female”:

       femaleCount = femaleCount + 1

       FemaleInfo.append ((name, age))

name = “”

list = [ ]

while name <> ” “:

   name = raw_input (“What is your name: “)

age = “”

list = [ ]

while age <> ” “:

   age = raw_input (“How old are you: “)

sex = “”

list = [ ]

while sex <> ” “:

   sex = raw_input (“Are you a male or female: “)

for i in MaleInfo:

   print i[0] + ” is ” + i[1] + ” year old.”

for i in FemaleInfo:

   print i [0] + ” is ” + i [1] + “years old.”

cont = ‘y’

cont not in “yes or no”

print femaleCount

print femaleAge/femaleCount

print maleCount

print maleAge/maleCount

print “Loop completed”

maleVariable = []

femaleVariable = []

 
Looking for a Similar Assignment? Order now and Get 10% Discount! Use Coupon Code "Newclient"

simple game program

### Debug this simple game program. The game should generate a random number between 0 and 100
### when the user hits Enter. The user can stop the game by typing "Stop".
### A score over 50 should result in a win.

import random

roll == raw_input("Press Enter to Spin the Wheel or Type ""Stop""!")

while roll == " ":
    prize = random.randint(0, 100)
    print "You're number is " str(prize) "!"
        if prize < 50
        print "Sorry, you didn't win. Try again"
        if prize > 50
        print "Congratulations! You're a winner!"

    roll = raw_input("Press Enter to Spin the Wheel or type 'stop'!")

if roll == "Stop":
    prnt "Thank you for playing"
else:
    print "Well, so long!"
 
Looking for a Similar Assignment? Order now and Get 10% Discount! Use Coupon Code "Newclient"