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

allison w.

Divider

Questions asked

BEST MATCH

How can a mesylate be prepared? An alcohol and $CF_3SO_2OSO_2CF_3$ An alcohol and $CH_3SO_2Cl$ An alcohol and $CH_3-C_6H_4-SO_2Cl$ An alcohol and $SOCl_2$

View Answer
divider
BEST MATCH

What test of significance would you use for this case of bivariate or multivariate analysis? Assume that each variable is measured at its most detailed possible level of measurement. Meaning, for instance, that age is always ratio (0, 1, 2, 3, 4, 5, ... infinite), not ordinal (i.e., age categories). College major by gender and race ANOVA Chi-square Regression T-test

View Answer
divider
BEST MATCH

Which of these are the advantages of deploying a private cloud?

View Answer
divider
BEST MATCH

Texts: Please write in Java The third programming project involves writing a program that allows the user to enter a binary tree in a parenthesized prefix format and then allows it to be categorized and allows various features of that tree to be displayed. An example of a tree written in the input format is the following: AG(j1z(5) In the above example, data in each node of the tree contains a single alphanumeric character. No spaces are permitted. Each tree is enclosed in parentheses. Inside those parentheses, after the single character are either zero, one, or two subtrees also enclosed in parentheses. When only one subtree is present, it is the left subtree, and when two are present, they represent the left and right subtrees. So the above string represents the following binary tree: The various categorizations include the following: 1. Whether the binary tree is balanced, which means for each node in the tree, the absolute difference between the height of its left and right subtrees is at most 1. The above binary tree is balanced. 2. Whether the binary tree is full. A full binary tree has the maximum number of nodes for a tree of its height. The above tree is not full because a tree of that height can contain 7 nodes, but the above tree only has 6. 3. Whether the binary tree is proper. In a proper binary tree, every node has either 0 or 2 children. The above tree is not proper because the node containing z has only one child. In addition, the program should allow the user to request that each of the following features of the tree be displayed: 1. The height of the tree. The height of a tree is the maximum level of all of its nodes. The root node containing A is at level 0. Because all three leaf nodes in the above tree are at level 2, its height is 2. 2. The number of nodes in the tree. As previously mentioned, the above tree has 6 nodes. 3. A fully parenthesized inorder traversal of the tree. The following should be displayed as the inorder traversal of the above tree: (G1A(5)z) This project should consist of three classes. The main class should create a GUI that allows the user to input a tree in the above-described format and then construct the tree once the "Make Tree" button is clicked. The GUI should look as follows: Binary Tree Categorizer Enter Tree: AG1z5 Make Tree Is Balanced? Is Full? Is Proper? Inorder Output: (jG1A(5z) The GUI must be generated by code that you write. You may not use a drag-and-drop GUI generator. The second class should be the BinaryTree class, which should contain a static nested class to define the nodes of the binary tree, together with a constructor that is called when the "Make Tree" button is clicked and is have public methods that are called when each of the remaining six buttons are clicked. All of those public methods should have corresponding private methods that accomplish their tasks using recursion. The third class should be named InvalidTreeSyntax, which defines a checked exception. It should be thrown when an invalid string is supplied and the "Make Tree" button is clicked. It should be caught in the main class, and a JOptionPane window should be displayed that describes the reason for the invalid syntax.

View Answer
divider
BEST MATCH

Solve the following pair of ODEs over the interval from $t = 0$ to $0.4$ using a step size of $0.2$. $\frac{dy}{dt} = -2y + 5e^{-t}$ $\frac{dz}{dt} = -\frac{yz^2}{2}$ y(0) = 2 z(0) = 4 a) Obtain your solution with Euler's method. Show your calculations. b) Solve the system of differential equations by calling the MATLAB function ode45.

View Answer
divider
BEST MATCH

Question 14 4 pts Zhang Industries sells a product for $890. Unit sales for May were 500 and each month's sales are expected to exceed the prior month's results by 2%. Compute the total budgeted sales dollars for the month ended June 30. ? $445,000. ? $445,300. ? $436,100. ? $453,900. ? $534,000.

View Answer
divider
BEST MATCH

2. Discuss the difference between client/server architecture and P2P architecture. Draw the architectures to support your answer

View Answer
divider
BEST MATCH

Question 2 0.5 / 2.5 pts Match the molecule with the organ that starts its significant chemical digestion: (same organ can be used more than once) nucleic acid esophagus lipid oral cavity starch oral cavity lactose stomach protein pharynx

View Answer
divider
BEST MATCH

3. Write the following expression in both minimal and canonical Sum of Products (SOP) form. $(b + d)(a' + b' + c)$ 10 pts Minimal: Canonical:

View Answer
divider
BEST MATCH

A transcription factor recruits histone methyltransferase to target genes. Predict what the most likely function of this transcription factor will be. (A) The transcription factor will activate the expression of target genes by recruitment of bromodomain-containing proteins. (B) The transcription factor will repress the expression of target genes because nearby histones will be methylated. (C) The transcription factor will activate the expression of target genes because nearby DNA will be methylated. (D) The transcription factor will repress the expression of target genes because nearby DNA will be methylated. (E) The transcription factor will activate the expression of target genes because nearby histones will be methylated.

View Answer
divider