To change a selected shape’s height or width to a specific value, type the value in the Height or Width text boxes on the

Answers

Answer 1
Answer: Are you trying to change the shape of an item within your program by entering the values into text boxes that become variables?

What language are you using?

Related Questions

calculate the size of a video file in terms of gb if each frame comprises of 512x512 pixels with 6 bits assigned per pixel with a frame rate of 24 fps and lasts for 30 minutes.
Which of the following would BEST help a student determine the validity of a Web site?a. visitor reviews b. the publication date c. links to related sites d. the domain in the URL
HTML files must be compiled before users can see the resulting Web pages. True or False?
1. Landscapes are the one type of photograph in which you should always use the traditional perspective. a. True b. False 2. Impressionistic landscapes tend to use a shallower depth of field. a. True b. False 3. Backlighting can help showcase the form and shape of mountains. a. True b. False 4. The midday sun is best for desert photographs. a. True b. False 5. Landscape photographs are generally best when there is some focal point within the picture. a. True b. False 6. Lighting matters less in landscapes than in other types of photographs. a. True b. False 7. Representational landscapes are as realistic as possible. a. True b. False 8. When will the reflections on the water be best? a. A cloudy day b. A windy day c. A foggy day d. A calm day 9. Maxime du Camp published a book of what type of landscape photographs in the 1840’s? a. Daguerreotypes Calotypes b. Platinotype Collodionotype 10. Representational landscapes are photographs that record what? a. A picture close to reality b. An abstract picture of some element of the scene c. A photograph showing an impression of a scene d. All of the above 11. With landscape photography, which depth of field do you normally want? a. Small b. Small to Medium c. Large d. With landscapes it doesn’t really matter 12. What is typically the preferred lighting for mountains? a. Frontlighting b. Sidelighting c. Backlighting 13. What is a challenge in photographing forests? a. Dull colors b. Corrosive elements on the camera and lens c. A lack of features Large variations in light 14. What is included in a cityscape? a. Buildings b. Mountains c. Tide pools d. All of the above 15. In a landscape photograph, you want to be sure to include which of the following? a. Frontlighting b. A perspective from eye level c. A focal point d. All of the above
6. Which of the following options is used to view a computer's memory properties?

Python Variables WorksheetPrint | Save
Output: Your Goal
You will write a program to store a message in two variables, then print that message.

Part 1: Plan and Write the Pseudocode
Write an algorithm using pseudocode that someone else can follow. Choose one of the following options:
Decide on the message you would like to display to the screen. Some ideas include:
Your favorite book title or TV show and why you like it
A few sentences sharing information about you
Your favorite sport and team or athlete
Use two variables to store your message.
Insert your pseudocode here:






Part 2: Code the Program
Use the following guidelines to code your program.
Use the Python IDLE to write your program.
Using comments, type a heading that includes your name, today’s date, and a short description.
Set up your def main(): statement. (Don’t forget the parentheses and colon.)
Use at least two variables and two print statements to display your message to the screen.
Conclude the program with the main() statement.
Follow the Python style conventions regarding indentation in your program.
Run your program to ensure it is working properly. Fix any errors you may observe.
Example of expected output: The output below is an example of a “Favorite TV Show” message. Your specific results will vary depending on the choices you make about your message.
Output
My favorite TV show is MythBusters.
I like it because I learn a lot and they do crazy experiments.

When you've completed writing your program code, save your work by selecting 'Save' in the Python IDLE. When you submit your assignment, you will attach this Python file separately.

Part 3: Post Mortem Review (PMR)
Write two to three sentence responses to all the questions in the PMR chart.
Review Question
Response
What was the purpose of your program?

How could your program be useful in the real world?

What is a problem you ran into, and how did you fix it?

Describe one thing you would do differently the next time you write a program.



Part 4: Save Your Work
Don't forget to save this worksheet. You will submit it for your assessment.
Print | Save

Answers

Answer:

Pseudocode:

define func main

accept two parameters

create two variables from those parameters

v1 = title

v2=message

print v1, v2

returns None

call the func including the two arguments

Code:

def main(p1, p2):

""" this is a docstring, the function accepts two parameters p1 and p2 and prints them out"""

____title = p1

____message = p2

____print(title)

____print(message)

main()

Reminder

this didnot include the comment you are to add about your name, date and details

-- comments are placed after a pound sign (#)

also "____" the dashes behind the variables are not indentation just empasising them, as they are done with either by

  • Tab Button - pressed once
  • Space Bar - pressed four times

NEVER MIX THEM CHOOSE AN INDENTATION STYLE AND STICK TO IT

Finally the call function doesn't have a colon called as a nomal object, just as the print funtion also you may include the dicstring if neccessary.

DONT FORGET THE REVIEW QUESTIONS

When each line of text hits the margin at the same point what is the text?

Answers

When the text hits the margin, there is an invisible line that separates the texts.

Which of the following is NOT a way the media communicates unrealistic body images?a. digitally altering images
b. providing a forum to discuss actors/actresses
c. criticizing high-profile individuals
d. promoting all body types

Answers

The media communicates unrealistic body image through various ways, which are mentioned in the available options for the question. It definitely digitally alters images that they use for their various publications, and it also provides forums to discuss actor and actresses, including their looks.

The media also often criticizes high-profile individual’s current body condition – whether they are too underweight or too overweight. Thus, the best answer for the question would be (D) promoting all body types.

D. promoting all body types

A department store plans to upgrade its IT infrastructure to support a new order-processing application with rich features. The store currently uses eight stand-alone computers when customers check out. The specifications of these computers are:•Quad core processors
•Minimum of one terabyte hard drives
•Minimum of 5 GB RAM
•Windows XP, Linux, or Mac OSX

The management of the store wants to upgrade four of the computers and use them to process client orders. The initial study done by the management reveals that the computers will perform the following tasks:
•Run an order-processing application that requires a multiprocessing operating system. The application will take orders from customers over the Internet, process the orders, and create invoices.
•Communicate with customers using e-mail to resolve customer queries.
•Store customer data on the local computer. The store will use this data to promote new products.

The department store needs you to upgrade the four computers. Find the necessary equipment from online vendors to upgrade the computers

Answers

Assuming price doesn't matter:

Processor: 
I'd recommend Intel Core i7 or similar
Hard Drive: An SSD with at least 2TB will do
RAM: I'd recommend around 8GB or more
Operating System: Linux is one of the best OSes out there, I'd recommend using that.

Which of the following expressions will produce a valid random integer between the int values m and n inclusive, where m < n?

Answers

Answer:

The solution code is written in Python:

m = 1

n = 5

d = random.randint(m, n)

Explanation:

To get a random integer between m and n inclusive, we can make use of Python randint method. It will take two parameters, m and n. By giving two integers as an input (e.g. 1 and 5) to randint, it will generate a random integer between 1 to 5 inclusive.

Mixing blue and yellow light will produce the same color as mixing blue and yellow pigment T or F

Answers

False. It will creat a weird green brown colour.


To see how this works, you can take glass that is colored and hold them to a light one over the other. It will show the columns they will create :)