1234567891011121314151617181920

Answers

Answer 1

Answer:

Theoretically these are numbers 1-20.

1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20.


Related Questions

Other Questions
Within the Discussion Board area, write 400-600 words that respond to the following questions with your thoughts, ideas, and comments. This will be the foundation for future discussions by your classmates. Be substantive and clear, and use examples to reinforce your ideas. Describe in detail the typical components that make up a microcontroller, including their roles, responsibilities and interaction with each other and the outside world. Be specific. Which of the following is NOT a consequence of hippocampal damage? O Trouble remembering verbal information O Anterograde amnesia O Retrograde amnesia O Trouble recalling designs and locations Question 37 Context-dependent memory State-dependent memory 1 pts If you take an exam in the same seat you learned material in, research suggests you will recall more information. What is this an example of? O Flashbulb memory O Implicit memory 1 pts Match the statements below with the appropriate term. Delete the underline & replace it with the letter of your answer choice. Each letter/answer choice is used only once. _____ 4. Stored chemical energy; sugar_____ 5. The energy-carrying molecule that cells use for energy _____ 6. Process that stores energy from sunlight into the chemical bonds of glucose _____ 7. Organisms that make their own _____ 8. All animals, fungi, and many protists _____ 9. Organisms that must eat; another name for a heterotroph _____ 10. Molecules that store energy in their chemical bonds _____ 11. The site of photosynthesis _____ 12. The site of cellular respiration A. Mitochondria B. Chloroplast C. Cellular respiration D. Photosynthesis E. Energy F. ProducersG. ATP H. Glucose I. Autotrophs J. Heterotrophs K. Consumers L. Food List and describe each level of Conway's Self-Memory Systemmodel of autobiographical memory. Please give an example of eachlevel. Victors birthday party is tomorrow. He wants to play country music during his party because it is his favorite genre. However, he is worried that his friends will think of him negatively and may even make fun of him if he plays country music. As a result, for his party he plays a pop playlist and pretends to enjoy the music. What concept best explains Victors thought process?Group of answer choices(Symbolic interactionisms) Looking glass self(Media multiplexity theorys) The weakness of strong ties(Privacy management theorys) Boundary turbulence(Social information processing theorys) Limited cues environment use c language to solve the questionsIn this project, you need to implement the major parts of the functions you created in phase one as follows:void displayMainMenu(); // displays the main menu shown aboveThis function will remain similar to that in phase one with one minor addition which is the option:4- Print Student Listvoid addStudent( int ids[], double avgs[], int *size); This function will receive the arrays containing the id numbers and the avgs as parameters. It will also receive a pointer to an integer which references the current size of the list (number of students in the list).The function will check to see if the list is not full. If list is not full ( size < MAXSIZE) then it will ask the user to enter the student id (four digit number you do NOT have to check just assume it is always four digits) and then search for the appropriate position ( id numbers should be added in ascending order ) of the given id number and if the id number is already in the list it will display an error message. If not, the function will shift all the ids starting from the position of the new id to the right of the array and then insert the new id into that position. Same will be done to add the avg of the student to the avgs array.void removeStudent(int ids[], double avgs[], int *size); This function will receive the arrays containing the id numbers and the avgs as parameters. It will also receive a pointer to an integer which references the current size of the list (number of students in the list).The function will check if the list is not empty. If it is not empty (size > 0) then it will search for the id number to be removed and if not found will display an error message. If the id number exists, the function will remove it and shift all the elements that follow it to the left of the array. Same will be done to remove the avg of the student from the avgs array.void searchForStudent(int ids[], double avgs[], int size); This function will receive the arrays containing the id numbers and the avgs as parameters. It will also receive an integer which has the value of the current size of the list (number of students in the list).The function will check if the list is not empty. If it is not empty (size > 0) then it will ask the user to enter an id number and will search for that id number. If the id number is not found, it will display an error message.If the id number is found then it will be displayed along with the avg in a suitable format on the screen.void uploadDataFile ( int ids[], int avgs[], int *size );This function will receive the arrays containing the id numbers and the avgs as parameters. It will also receive a pointer to an integer which references the current size of the list (number of students in the list).The function will open a file called students.txt for reading and will read all the student id numbers and avgs and store them in the arrays.void updateDataFile(int ids[], double avgs[], int size); This function will receive the arrays containing the id numbers and the avgs as parameters. It will also receive an integer which has the value of the current size of the list (number of students in the list).The function will open the file called students.txt for writing and will write all the student id numbers and avgs in the arrays to that file.void printStudents (int ids[], double avgs[], int size); // NEW FUNCTIONThis function will receive the arrays containing the id numbers and the avgs as parameters. It will also receive an integer which has the value of the current size of the list (number of students in the list).This function will print the information (ids and avgs) currently stored in the arrays.Note: You need to define a constant called MAXSIZE ( max number of students that may be stored in the ids and avgs arrays) equal to 100.IMPORTANT NOTE: Your functions should have exactly the same number of parameters and types as described above and should use parallel arrays and work as described in each function. You are not allowed to use structures to do this project.Items that should be turned in by each student:1. A copy of your main.c file2. An MSWord document containing sequential images of a complete run similar to the output shown on pages 4-8SAMPLE RUN:Make sure your program works very similar to the following sample run:Assuming that at the beginning of the run file students.txt has the following information stored (first column = ids and second column = avgs):1234 72.52345 81.2 1. An organization is considering various contract types in order to motivate sellers and to ensure preferential treatment. What should they consider before deciding to use an award fee contract? a. Payment of an award fee would be linked to the achievement of objective performance criteria. b. Any unresolved dispute over the payment of an award fee would be subject to remedy in court. c. Payment of an award fee would be agreed upon by both the customer and the contractor. d. Payment of an award fee is decided upon by the customer based on the degree of satisfaction. A 380 V, 50 Hz, 3-phase, star-connected induction motor has the following equivalent circuit parameters per phase referred to the stator: Stator winding resistance, R1 = 1.52; rotor winding resistance, R2 = 1.2 2; total leakage reactance per phase referred to the stator, X + Xe' = 5.0 22; magnetizing current, 1. = (1 - j5) A. Calculate the stator current, power factor and electromagnetic torque when the machine runs at a speed of 930 rpm. We want a class keeping track of names. We store the names in objects of the STLclass set. We have chosen to use pointers in the set to represent the strings containingthe names. The class looks like this:#include#include#includeusing namespace std;class NameList {public:NameList() {}~NameList() {}void insert(const string& name) {names.insert(new string(name));}//insert the namesvoid printSorted() const {for (list_type::const_iterator it = names.begin();it != names.end(); ++it) {cout 1. In case of non-performance on due date, demand by the creditor shall not be necessary in order that delay may exists in the following instance:a. When from the nature of the circumstances of the obligation it appears that he designation of the time when the thing to be delivered was a controlling motive for the establishment ofthe contract.b. When the obligation consists in not doingc. When the law expressly so declaresd. When the obligee has rendered it beyond his power to perform A motorear of mass 500 kg generates a power of 10000 W. Given that the total resistance on the motorcar is 200 N, how much time does the motorear need to accelerate from a speed of 10 m s 1to 20 m s - ? A 6.3 s B 8.3 s C 9.2 s D 10.7 s 20 POINTSSolve for the value of x using the quadratic formula 4) Which of the following commands is not shown in the Dew panel? a) Circle b) Rectangle c) Are d) Move. 5) What happen when you activate ORTHOMODE from the status bat? a) The cursor will be restricte What are quotes from the text of in praise of slacking On a number line, 6.49 would be located.a true statement.6.49A. between 6 and 7B. between 6.4 and 6.5C. to the right of 6.59D. between 6.48 and 6.50Choose all answers that makeSUBMIT Design the FIR filter to meet the following specifications. Passband ripple 0.6 dB Passband Frequency = 8 kHz Stopband Attenuation 55 dB Stopband Frequency = 12 kHz Sampling Frequency = 48 kHz Determine the followings: i) ii) iii) (iii) Sketch the filter according to the specification above. Determine the category of the filter. Determine the Filter Order/Length, N by using Optimal Method and Windowmethod. Calculate the first 4 values of filter coefficients, h(n) based on Optimal method. Given the following code, which is NOT an acceptable functioncall?void Show(int x, int y, int z) { cout To achieve desired quality there will be cost spent by organizations, this cost can be determined as it is when?? A Requiring Authority can impact property managers and developers in the following way: Select one: a. Issuing a designation for a public work on private land O b. Approval of Building Consents for minor works O C. The signoff of Building Warrants of Fitness O d. The signoff of Unit Title plans Oe. Granting leases in retail premises. You are saving money to buy a car. If you save$320per month starting one month from now at an inferest rate of9%, how much will you be able to spend on the car after saving for 5 years? A.$24,136B.$28,963C. 514,481 D. 533,790