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

nathan h.

Divider

Questions asked

BEST MATCH

How long will it take to double the $1,000 investment in an account that earns interest at an annual rate of 4% compounded continuously? Answer: 17.33 years

View Answer
divider
BEST MATCH

Normal flora (commensal microbiota) is part of the ______. adaptive immunity second line of defense first line of defense third line of defense humoral immunity

View Answer
divider
BEST MATCH

Question 2 Not yet answered Marked out of 1.00 Flag question If the link lengths are given as 23, 33, 29, 30, according to Grashoff's criteria, then the name of the mechanism is triple rocker and side link is the shortest. One of these is triple rocker and side. Change point and side. Double rocker and coupler. Question Not yet answered Marked out of 1.00 Flag question Mobility of Triple Rocker mechanism is One, Two, Four, Three.

View Answer
divider
BEST MATCH

Write a program that uses a loop with the range of 100. If the number is divisible by three and equals zero, print "black diamond". If the number is divisible by five and equals zero, print "black diamond". If the number is divisible by three and equals zero, print "black". If the number is divisible by five and equals zero, print "diamond". Otherwise, print an empty space. The program should print all numbers from 1 to 100, and the appropriate terms should be printed only after the corresponding number.

View Answer
divider
BEST MATCH

Your program must receive two command line arguments: n and the file name for which checksum is to be computed. The argument n determines how many bytes the checksum will have. Your program must obtain the arguments at invocation time and not on the fly, that is, you will invoke the command as you invoke Linux commands: > checksum -f file_name -n X Your program must deal with error conditions like file not existing or X being larger than 8. If n = 4 and the data bytes in your file are B1, B2, B3, B4, B5, B6....BN, then the checksum should be computed as: B1 B2 B3 B4 + B5 B6 B7 B8 + .... If the bytes in the file are not a multiple of n, pad with zeros. Write a C program.

View Answer
divider
BEST MATCH

In a multi-programmed system, why must the operating system: a) provide memory protection? b) make I/O operations (i.e. access to I/O device control registers) privileged (only accessible when the processor is in kernel (a.k.a. supervisor) mode)? c) and if the I/O operations are privileged, how does user code get access to I/O operations?

View Answer
divider
BEST MATCH

In C# code, please: In this project, you will create your own online shopping store in a console application. You can choose different products to sell in your store (at least 8 products). You will create a product inventory text file. The program will display two options at the beginning of the program: Customer and Manager. Customer: If this is a new customer, the program will let the customer register with their information and assign a unique ID number to the new customer. The customer will enter the customer ID every time when they are shopping in your store, and the program will keep track of the total amount the customer spends each time to determine the discount level. You can create your discount level rule. The program has to keep track of the product inventory. If the customer selects a product that is out of stock, the program has to display a warning message and let the customer continue to shop. After the customer finishes selecting the products, the program will calculate the subtotal, apply the discount, calculate the tax, and calculate the total. The program will display a receipt on the screen and save it to a text file with customer information (just like a receipt). Manager: The manager option has to be password-protected. The program will give the manager two options: 1. Display the inventory: display all the product stock information. 2. Restock the products: add more stock for each product. You have to create different classes and utilize the inheritance features. You have to use text files to keep all the information the program needs. You can check some online stores to get some ideas. Make sure your program does not end unexpectedly and let the user have the option to continue. There can be 8 products in random order, just make sure to add the price of all items and calculate the discount level. TV ($125), Controller ($60), Headset ($75), USB ($30), Phone ($200), Laptop ($150), Wireless Mouse ($80), Watch ($110) Customer discount level: If the customer spends $500, they will get a 5% discount. Customer discount level: If the customer spends $1000 or more, they will get a 10% discount.

View Answer
divider
BEST MATCH

14. In 5% loss, what is the selling price 1 point of the cloth which cost is Tk. 1000? (a) 920 (b) 950 (c) 960 (d) 975

View Answer
divider
BEST MATCH

The translation matrix below represents a translation of 5 units right and 2 units down.\begin{bmatrix} -5 & -5 & -5 \\ 2 & 2 & 2 \end{bmatrix}\newline True\newline False

View Answer
divider
BEST MATCH

4. [10 points] A customer arriving to a system with arrival rate \lambda, joins a single-server queue and after being served is sent back to the beginning of the queue with probability p or leaves then system with probability (1 - p). We have learned the (typical) average number of customers in the queue is $L_q$. How much time does a typical customer spend in the queue?

View Answer
divider