Ultimate Computers and Technology Study Guide - Questions & Answers
Question 2 of 10When gathering information, which of the following tasks might you need toperform?OA. Seek out ideas from others and share your own ideasOB. Study objects, conduct tests, research written materials, and askquestionsC. Fill out forms, follow procedures, and apply math and scienceO D. Apply standards, such as measures of quality, beauty, usefulness,or ethics
You have been assigned to design and implement a data structure that will be used to store and retrieve student records. The data structure should be able to store the following information for each student: name, ID number, major, and GPA. You are required to use array, linked list, and stack in the implementation of this data structure using python. 1. Design the Data Structure: a. Decide on the format for storing student records. b. Choose the data types for each field (name, ID number, major, and GPA). c. Determine the operations that the data structure should support (insert, delete, search). d. Choose the appropriate data structure for each operation (array, linked list, or stack). e. Create a diagram to show how the different data structures will be used together. 2. Implement the Data Structure: a. Implement each data structure to store the students records. b. Write functions to insert, delete, and search student records. 3. Test the Implementation: a. Write a test function to insert several student records into the data structure. b. Write a test function to delete some of the records. c. Write a test function to search for a specific record. d. Verify that the data structure is working correctly by running the test functions.
Assignment 10: create a song of the summer in earsketch !!! I NEED AN ANSWER ASAP!!! REQUIREMENTS:For this assignment, you will code three songs in EarSketch, each incorporating the following Python commands:You must require and utilize input from a user using the EarSketch AP function readInput(). This should prompt users to select the genre they want to listen to, and once selected, should play one of your three songs that matches the genre chosen.You must use some form of randomization in your songs, using the randint() function.You must use a conditional statement in your songs, using an if, else, elif statement.You must use both of the EarSketch functions fitMedia() and setEffect() for an effect in your script (such as a fade or distortion).You must use string operations (concatenation or splicing) to create your own beat, using the EarSketch function makeBeat().You must use for loops to add repetition to your code.You must use at least one user-defined (custom) function to create musical sections for your songs.In addition to the required coding components above, your program must also meet the following general requirements: Each song must be at least 16 measures long.Each song should have at least three tracks.Each song should include different elements unique to a music genre (different beats, instruments, or sound clips that would allow a listener to tell songs apart from one another).Each song should include a sound clip from Ciara or Common, found in the EarSketch library.You will need to create a new script for your code in your EarSketch account, title it appropriately, and use sound clips from the EarSketch library or sounds you have recorded or uploaded on your own. Your final code will need to run without any errors, and play successfully in the digital audio workstation (DAW) when opened by your teacher.ASSIGNMENT BENCHMARKS:Write the script for your songs, based on the assignment requirements. Make sure that each of the following statements is true of your code:My code asks for input from the user using readInput(), and uses that user input to change the song that is played when the program is run.My code uses the randInt() function to create randomization.My code uses a conditional statement (if, else, or elif statement).My code uses the fitMedia() function at least once.My code uses the setEffect() function at least once.My code uses a string operation and the makeBeat() function to create a custom beat.My code uses at least one for loop.My code uses at least one user-defined (custom) function.My code has three unique songs.Each of my three songs is at least 16 measures long.Each of my three songs has at least 3 tracks.Each of my three songs includes a sound clip from Ciara or Common, found in the EarSketch library.