Need Help ?

Expert Answers

Design: Design a flowchart for the following program. Imagine you're explori ...

Design: Design a flowchart for the following program. Imagine you're exploring Phoenix, Arizona, where streets are like a giant grid! We can find our way around using street names, numbers, and cardinal directions (North, South, East, West). Here's the challenge: Streets are named differently depending on their direction from a central street called Central Avenue and their location relative to Washington Street: Streets East of Central Avenue are named "Street," "Place," and "Way" in that order, all with the same number, further specified as North or South based on their location relative to Washington Street (e.g., South 1st Street, South 1st Place, South 1st Way, then South 2nd Street, and so on). Streets West of Central Avenue are named "Avenue," "Drive," and "Lane" in that order, all with the same number, further specified as North or South based on their location relative to Washington Street (e.g., North 1st Avenue, North 1st Drive, North 1st Lane, then North 2nd Avenue, and so on). This isn't always perfect, but let's pretend it is for this exercise! Also, In real life, if we think of a block as the space between two street crossings, 1st Way would be three blocks away from Central Avenue. This is because 1st Street and 1st Place come before it. But for this assignment, we're going to do things differently. We'll pretend that each street name with a number (like 1st Street, 1st Place, 1st Way) counts as one block. So in this case, 1st Way would be considered just one block away from Central Avenue. This might not match how blocks work in real cities, but it's the rule we're using for this exercise to keep things simple. Program Requirements: Code the design of a program that asks the user for a street number, type, and direction (e.g., "North 4th Street"). Your program should then tell the user: How many blocks east or west the street is from Central Avenue. Whether the street is north or south of Washington Street. The name of the preceding street (closer to Central Avenue) considering both direction and number. Examples: Example 1: Input: Direction: North Street number: 12 Street type: Avenue Output: North 12th Avenue is 12 blocks west of Central Avenue and is north of Washington Street. The preceding street is North 11th Lane. Example 2: Input: Direction: South Street number: 4 Street type: Street Output: South 4th Street is 4 blocks east of Central Avenue and is south of Washington Street. The preceding street is South 3rd Way. Example 3: Input: Direction: North Street number: 7 Street type: Lane Output: North 7th Lane is 7 blocks west of Central Avenue and is north of Washington Street. The preceding street is North 7th Drive. Example 4: Input: Direction: South Street number: 10 Street type: Way Output: South 10th Way is 10 blocks east of Central Avenue and is south of Washington Street. The preceding street is South 10th Place. Submit the following as a single zip file: • Your flowchart (.png file) Code: Refer to the "Creating a Project" document in and go through up to section 4, titled "Create Main Program Class." Then, use the design details to write the code. Make sure to follow the program requirements: Imagine you're exploring Phoenix, Arizona, where streets are like a giant grid! We can find our way around using street names, numbers, and cardinal directions (North, South, East, West). Here's the challenge: Streets are named differently depending on their direction from a central street called Central Avenue and their location relative to Washington Street: Streets East of Central Avenue are named "Street," "Place," and "Way" in that order, all with the same number, further specified as North or South based on their location relative to Washington Street (e.g., South 1st Street, South 1st Place, South 1st Way, then South 2nd Street, and so on). Streets West of Central Avenue are named "Avenue," "Drive," and "Lane" in that order, all with the same number, further specified as North or South based on their location relative to Washington Street (e.g., North 1st Avenue, North 1st Drive, North 1st Lane, then North 2nd Avenue, and so on). This isn't always perfect, but let's pretend it is for this exercise! Also, In real life, if we think of a block as the space between two street crossings, 1st Way would be three blocks away from Central Avenue. This is because 1st Street and 1st Place come before it. But for this assignment, we're going to do things differently. We'll pretend that each street name with a number (like 1st Street, 1st Place, 1st Way) counts as one block. So in this case, 1st Way would be considered just one block away from Central Avenue. This might not match how blocks work in real cities, but it's the rule we're using for this exercise to keep things simple. Program Requirements: Code the design of a program that asks the user for a street number, type, and direction (e.g., "North 4th Street"). Your program should then tell the user: How many blocks east or west is the street from Central Avenue. Whether the street is north or south of Washington Street. The name of the preceding street (closer to Central Avenue) considering both direction and number. Examples: Example 1: Input: Direction: North Street number: 12 Street type: Avenue Output: North 12th Avenue is 12 blocks west of Central Avenue and is north of Washington Street. The preceding street is North 11th Lane. Example 2: Input: Direction: South Street number: 4 Street type: Street Output: South 4th Street is 4 blocks east of Central Avenue and is south of Washington Street. The preceding street is South 3rd Way. Example 3: Input: Direction: North Street number: 7 Street type: Lane Output: North 7th Lane is 7 blocks west of Central Avenue and north of Washington Street. The preceding street is North 7th Drive. Example 4: Input: Direction: South Street number: 10 Street type: Way Output: South 10th Way is 10 blocks east of Central Avenue and south of Washington Street. The preceding street is South 10th Place. Create a 3-5-minute video in which you explain your variable choices and any calculations in your programs. Execute (run) the program in your video. Address any challenges encountered and new information learned while completing the assignment. Use a screen recording tool. *You don’t have to speak for the video. Create captions/subtitles on the video in which you explain your variable choices and any calculations in your programs. Address any challenges encountered and new information learned while completing the assignment. . Submit the following as a single zip file, All your project code and test files • The link to your video

READ MORE >>

Hi! I need to write a project using STATA on a topic of my choice, preferably i ...

Hi! I need to write a project using STATA on a topic of my choice, preferably in the medical field. The project should focus on the implementation of Randomized Control Trials and follow the same structure as the example provided below. I’ll also attach some project examples from previous years for reference. Submission requirements: A paper (in Word, TeX, etc.) Data and scripts necessary to replicate the results presented in the paper Let me know if you have any questions. Thanks!

READ MORE >>

Machine Learning Generative Models Question 1 - Generative models In the follow ...

Machine Learning Generative Models Question 1 - Generative models In the following exercise, you will deal with a generative learning problem, precisely, VAE and GAN. You should write your training code and meet the following constraints. In this exercise, you will create a generative model: choose VAE or GAN implement and train your model: The decoder/generator should get as input a vector from the latent space and produce an image. For convolutions that upscale the input’s spatial size (for the decoder/generator), use nn.ConvTranspose2d . Output visualization: Generate images from your model and visualize its latent spaces. You can compare different architectures for this purpose (e.g., low/high dimension of the latent spaces, etc.). Dataset: You will use the 102 Category Flower Dataset dataset Images can be resized for efficiency but not smaller than 64x64. https://www.robots.ox.ac.uk/~vgg/data/flowers/102/ You should provide: Code (python file) able to reproduce your results. The trained network with trained weights (.pkl file). If the model size is less than 500MB, you should submit it on Moodle. Otherwise, upload it to your Google-Drive. A function called "reproduce_hw4()". This function should be able to reproduce the results that you reported. Discussion: Discuss your results. You should provide the following: Model architecture description and illustration, training procedure (hyperparameters, optimization details, etc.). Training convergence plots as a function of training time: GAN: discriminator and generator losses VAE: reconstruction loss, and KL divergence. Summary of your attempts and conclusions. Your conclusions and explanations should be based on the actual results you received during your attempts. Include 1-2 pages of visualizations (the images your model produces). The discussion should be typed. Hand-written submissions won’t be accepted. submission You should submit a ZIP (not RAR!) file containing: Code - as many files as you need (one of them should be “main.py,” which will include the running process). One pdf file (discussion of Q1). The .pkl file (If the file is too big for the Moodle, upload it to your Google-Drive and copy the link to your pdf report). Run ‘pip freeze > requirements.txt’ and attach it to your submission. Using chatgpt is allowed, a reference from another year is provided for the same question but on a different data set.

READ MORE >>

Use APA format, make sure you cite it and write references, don't use AI discus ...

Use APA format, make sure you cite it and write references, don't use AI discussion question: Which search engine has the better algorithm [Google, Bing, Yahoo, DuckDuckGo]? Or do you have a personal preference? Discuss

READ MORE >>

For this assignment, you will create a network diagram displaying a wireless net ...

For this assignment, you will create a network diagram displaying a wireless network using DiaDiagram. Be use to indicate potential areas of attack and mitigations for these attacks. The requirements for your paper are: • Install Dia Diagram. • Create a network diagram of a wireless network using Dia Diagram. • Indicate potential areas of attack. • Describe mitigations for these attacks.

READ MORE >>

In a 5–7 page written assessment, define the patient, family, or population he ...

In a 5–7 page written assessment, define the patient, family, or population health problem that will be the focus of your capstone project. Assess the problem from a leadership, collaboration, communication, change management, and policy perspective. Plan to spend approximately 2 direct practicum hours meeting with a patient, family, or group of your choice to explore the problem and, if desired, consulting with subject matter and industry experts.

READ MORE >>

Design: Design a flowchart for the following program. This program is a "guessi ...

Design: Design a flowchart for the following program. This program is a "guessing game" program. The program will generate a random integer between 1 and 10000, inclusive. The program should prompt the user to enter a guess. For each guess, the program will output ‘HIGHER’ if the user's guess is lower than the target, ‘LOWER’ if the user's guess is higher than the target, or ‘WINNER’ if the user guesses the target. Each time the program prompts the user for a new guess, it should calculate and display the eligible range of values. Sample output: Please enter a number between 1 and 10000: 5000 Your guess is too high, try again. Please enter a number between 1 and 5000: 2500 Your guess is too high, try again. Please enter a number between 1 and 2500: 1500 Your guess is too low, try again. Please enter a number between 1500 and 2500: 2000 Your guess is too high, try again. Please enter a number between 1500 and 2000: 1600 Your guess is too low, try again. Submit the following as single zip file• Your flowchart (.png file) Please review the rubric prior to beginning the assignment to become familiar with the expectations for successful completion. Code: Refer to the "Creating a Project" document in and go through up to section 4, titled "Create Main Program Class." use the design details to write the code. Make sure to follow the program requirements: This program is a "guessing game" program. The program will generate a random integer between 1 and 10000, inclusive. The program should prompt the user to enter a guess. For each guess, the program will output ‘HIGHER’ if the user's guess is lower than the target, ‘LOWER’ if the user's guess is higher than the target, or ‘WINNER’ if the user guesses the target. Each time the program prompts the user for a new guess, it should calculate and display the eligible range of values. Sample output: Please enter a number between 1 and 10000: 5000 Your guess is too high, try again. Please enter a number between 1 and 5000: 2500 Your guess is too high, try again. Please enter a number between 1 and 2500: 1500 Your guess is too low, try again. Please enter a number between 1500 and 2500: 2000 Your guess is too high, try again. Please enter a number between 1500 and 2000: 1600 Your guess is too low, try again. Note: Ensure that the prompt displays the current range of valid numbers. Create a 3-5-minute video in which you explain your variable choices and any calculations in your programs. Execute (run) the program in your video. Address any challenges encountered and new information learned while completing the assignment. Use a screen recording tool. *You don’t have to speak for the video. Create captions/subtitles on the video in which you explain your variable choices and any calculations in your programs. Address any challenges encountered and new information learned while completing the assignment. . Submit the following as a single zip file, All your project code and test files The link to your video

READ MORE >>

The following should all be put into 1 Eclipse program. Zip and upload the proje ...

The following should all be put into 1 Eclipse program. Zip and upload the project folder that you create to the Program Assignments Per Instructors request- I always want the Java Project folder to be zipped (and not just a folder that contains a .java file or .java files). By doing so, I have to take the time to create a project and then copy/paste in students' files (like your text files). A student should already have that project folder if they've created their project in Eclipse (which is a course assumption), so it should actually be easier on the student to zip that folder rather than creating a folder in file management and adding text files (or java files) to that. You can add the current zip folder

READ MORE >>

Use APA format, cite it and write references. Make sure you don't use AI, check ...

Use APA format, cite it and write references. Make sure you don't use AI, check on AI content before sending me Which search engine has the better algorithm [Google, Bing, Yahoo, DuckDuckGo]? Or do you have a personal preference?

READ MORE >>

Make sure you don't use AI, check it on AI content before sending it to me. I n ...

Make sure you don't use AI, check it on AI content before sending it to me. I need you to write a summary of the important concepts. Use the book that I'm attaching below. Writing Requirements Use the APA template 1-2 pages discussing the week’s objectives with citations and references

READ MORE >>
QUICK ORDER

Place a Quick Order

Our verified writers got you covered. Let us help you balance between studies, work, and family.

We provide our assistance to the numerous clients looking for a professional writing service.

Order Now
Designed and developed by Brian Mubichi (mubix)
WhatsApp