Ace - AI Tutor
Ask Our Educators
Textbooks
My Library
Flashcards
Scribe - AI Notes
Notes & Exams
Download App
jason webster

jason w.

Divider

Questions asked

BEST MATCH

21 Multiple Choice 2 points Hydrogen bonds could form between hydrogen and helium. hydrogen. oxygen. carbon. Previous

View Answer
divider
BEST MATCH

Score on last try: 0 of 1 pts. See Details for more. > Next question Get a similar question You ca For the following exercise, find the domain of the function f(x) = \sqrt[3]{4 - 7x} 0 ? invalid interval notation.

View Answer
divider
BEST MATCH

Use the fact that the derivative of the function f(x) = (1)/(x) is f'(x) = (-1)/(x^(2)) to find the equation of the tangent line to the graph of f(x) at the point x = -6. The equation of the tangent line to the graph of f(x) at the point x = -6 is: Use the fact that the derivative of the function f(x) = (1)/(x) is f'(x) = (-1)/(x^(2)) to find the equation of the tangent line to the graph of f(x) at the point x = -6. The equation of the tangent line to the graph of f(x) at the point x = -6 is:

View Answer
divider
BEST MATCH

You have risen through the ranks of a coffee company, from the lowly green-apron barista to the coveted black apron, and all the way to CFO. A quick internet check shows that your company's beta is 0.61. The risk-free rate is 5.6% and you believe the market risk premium to be 5.3%. What is your best estimate of investors' expected return on your company's stock (its cost of equity capital)? The expected return is %. (Round to two decimal places)

View Answer
divider
BEST MATCH

Task 1A: Activation/Deactivation of Output Devices by NUCLEO-F411RE Board a) Using GPIOB_BSRR, illuminate an external (red) LED using Port B - to be called as LED2. Note: LED2 is to be active low. [10 points] b) Using GPIOB_ODR, illuminate the active low red LED (LED2) in part (a). [10 points] c) Using GPIOB_BSRR, blink LED2 in part (a) using a suitable time delay. [10 points]

View Answer
divider
BEST MATCH

How is the polymerization initiated? Heat will break the peroxide into radicals. The peroxide oxidizes the double bond of styrene. Light will break the peroxide into radicals. The peroxide adds across the double bond of styrene and makes a carbocation.

View Answer
divider
BEST MATCH

modify base on the code blow in c++#include <iostream>#include <vector>#include <fstream>#include <string> #define DEFAULT_DICT "dictionary1.txt"#define DEFAULT_OUTPUT_FILE "dict-updated.txt" int max_menu_option = 11;int max_dict_option = 5; // Function prototypesint getMenuChoice();void openAndLoadDictionary(std::vector<std::string> &dictionary, const std::string &filename);void printWordsToScreen(const std::vector<std::string> &dictionary); int main(){ std::vector<std::string> dictionary; // Create a vector to store words // Load the default dictionary openAndLoadDictionary(dictionary, DEFAULT_DICT); int choice; do { choice = getMenuChoice(); switch (choice) { case 1: printWordsToScreen(dictionary); std::cout << std::endl; break; case 2: std::cout << "Coming soon!" << std::endl; std::cout << std::endl; std::cout << std::endl; break; case 3: // Implement Find word, delete if found break; case 4: // Implement Swap two words break; case 5: // Implement Sort words (Bubble Sort) break; case 6: // Implement Sort words (Selection Sort) break; case 7: // Implement Find a word - Binary Search (assuming words are sorted alphabetically) break; case 8: // Implement Find word, insert if not found (assuming words are sorted alphabetically) break; case 9: // Implement Merge two dictionaries (will sort first) break; case 10: // Implement Load a dictionary (closes current dictionary) break; case 11: // Implement Write current dictionary to file break; default: std::cout << "Thank you! Bye!" << std::endl; break; } } while (choice != 0); return 0;} int getMenuChoice(){ int choice; do { std::cout << "--------------------------------------------" << std::endl; std::cout << "Options menu: " << std::endl; // Print menu options (1 to max_menu_option) for (int i = 1; i <= max_menu_option; i++) { if (i < 10) { std::cout << " (" << i << ") "; } else { std::cout << "(" << i << ") "; } switch (i) { case 1: std::cout << "Print words to screen"; break; case 2: std::cout << "Find a word (Linear Search)"; break; case 3: std::cout << "Find word, delete if found "; break; case 4: std::cout << "Swap two words"; break; case 5: std::cout << "Sort words (Bubble Sort)"; break; case 6: std::cout << "Sort words (Selection Sort)"; break; case 7: std::cout << "Find a word - Binary Search (assumes words are sorted alphabetically)"; break; case 8: std::cout << "Find word, insert if not found (assumes words are sorted alphabetically)"; break; case 9: std::cout << "Merge two dictionaries (will sort first)"; break; case 10: std::cout << "Load a dictionary (closes current dictionary)"; break; case 11: std::cout << "Write current dictionary to file"; break; default: break; } std::cout << std::endl; } std::cout << "Enter a number from 1 to " << max_menu_option << ", or 0 to exit: " << std::endl; std::cin >> choice; if (choice < 0 || choice > max_menu_option) { std::cout << "Error! Input must be a number between 1 and " << max_menu_option << ", or 0 to exit." << std::endl; } } while (choice < 0 || choice > max_menu_option); return choice;} void openAndLoadDictionary(std::vector<std::string> &dictionary, const std::string &filename){ // Open the file, read words into the dictionary vector std::ifstream file(filename); if (file.is_open()) { std::string word; while (std::getline(file, word)) { dictionary.push_back(word); } file.close(); std::cout << std::endl; } else { std::cerr << "Error: Unable to open the dictionary file." << std::endl; }} void printWordsToScreen(const std::vector<std::string> &dictionary){ for (const std::string &word : dictionary) { std::cout << word << std::endl; }} Part II In this stage, we will implement menu items (10) & (11) - opening a different dictionary, and writing the current dictionary to a new file To open a different dictionary, prompt the user to enter the number of the dictionary: where the global variable int max_dict_option should be used rather than hard-coding 5. I recommend writing a prompt function to get this info, both to keep main() clutter-free and because we will use this idea again in Code Lab #4, so you will more easily be able to reuse the code. The same function used to open and read in the default dictionary at the start of the program should be used here to open the new dictionary once the name is chosen. Note that it will have to clear the previous dictionary from the vector first. The main() function should be keeping track of which dictionary is currently open, so if the user tries to open a new dictionary that is Options menu: (i) Print words to screen (2) Find a word (Linear Search) (3) Find word, delete if found (4) SPIOM OMI dEMS (5) Sort words (Bubble Sort) (6) Sort words (Selection Sort) (7) (8) (9) Merge two dictionaries (will sort first) (10) Load a dictionary (closes current dictionary) (11) Write current dictionary to file Enter a number from i to ii, or 0 to exit: ++i0** That dictionary is already open! Pick another. Dictionary 2 is open. The menu would then be displayed again. Note: The user input is also shown, which is not part of the program output. Next, for menu item (11), the program outputs the vector contents (the open dictionary) to a new file, first checking if the file exists - dont overwrite any existing files! At this stage, the program will end up making an exact copy of the file just opened. In later stages, we will be updating the dictionary. The file will be a .txt file, with one word per line, such as below: apple banana cherry There is a default output file name already in the template. Otherwise, append .txt* to whatever name is given. From the end of the menu, it would look like: Enter a number from 1 to il, or 0 to exit: il short_dict Writing to file ...Done! Given the input above, the program would save the data in a file named short_dict.txt.

View Answer
divider
BEST MATCH

A researcher has cross-sectional data on the average annual rate of growth of developing and 23 developed countries for the period 1985-1995.S/he defines a dummy variable D1 which is equal to 1 for the developing countries and 0 for the others.The researcher defines a slope dummy variable XD1 as the product of X and D1 and estimates the following equations: 1whole sample E=-1.44+0.20X-0.87XD1 0.36)(0.05 0.10 R=0.60.SSR=50 S/he estimates the following equations for the following samples (2)whole sample E=-0.50+0.24X (0.05(0.08) R=0.05,SSR=150 I (3) developed countries E=-2.74+0.60X 0.58)0.15 R=0.35.SSR=20 (4)developing countries E=-0.85+0.90X (0.020.15) R=0.50,SSR=25 Explain mathematically and graphically the role of the variable XD1 in this model. -What is the maintained hypothesis of the researcher in formulating the model? -Suppose that the researcher had included D1 as well as XD1 as an explanatory variable in the model: 0 What would the coefficients of the regression have been?il) (ii What would the t statistic for the coefficient of D1 have been? Test the hypothesis that the employment equations of the developed and developing countries are not statistically different from each other. - Test the hypothesis that the slope coefficients for the developed and developing countries are not significantly different from each other.

View Answer
divider
BEST MATCH

5 0/1 point Which of the following is true of the Neanderthal skull relative to an anatomically modern human skull? X It has a more developed chin. The supraorbital ridges are poorly developed or absent altogether. It has a higher forehead. It has greater mid facial prognathism.

View Answer
divider
BEST MATCH

FINC 3350 Financial Institutions and Markets Fall 2019 11. Money market securities exhibit which of the following? I. Large denomination II. Maturity is one year or less III. No interest rate risk IV. Contractually determined cash flows A) I, II, and III B) I, III, and IV C) I, II, III, and IV D) I, II and IV 12. In the T-bill auction process, the competitive bidder is guaranteed a ______ and a noncompetitive bidder is guaranteed a ______. A) minimum price; maximum price. B) maximum price; minimum price. C) maximum price; given quantity. D) minimum price; maximum quantity. 13. The most liquid of the money market securities are A) commercial paper. B) banker's acceptances. C) T-bills. D) Fed Funds and repurchase agreements. 14. A Treasury security in which periodic coupon interest payments can be separated from each other and from the principal payment is called a A) STRIP. B) T-note. C) T-bond. E) Revenue bond 15. Which of the following is/are true about callable bonds? I. Must always be called at par II. Will normally be called after interest rates drop III. Can be called by either the bondholder or the bond issuer IV. Have higher required returns than non-callable bonds A) I and II only B) II and IV only C) II and III only D) I, II, and III only 3

View Answer
divider