Find the big-O analysis of the running time of code 1 and code 2:
Code 1:
for (i = 0; i < n; i++)
for(j=0;j for(k =0; k < j; k++)
sum++;
Code 2:
for (i = 1; i <= n; i++)
for(j=1;j<=i*i; j++)
if (j % i == 0)
for (k = 0; k < j; k++)
sum++;

Answers

Answer 1

The total number of operations is:Σi=1n(i²)/i = Σi=1ni= n(n + 1)/2Then, the big-O of code 2 is O(n²).

Code 1: Finding the big-O analysis of the running time of code 1 can be done by summing up all the operations. Consider the innermost loop, it runs j times for each value of i. Then, for each value of i, the loop runs from 1 to n, hence the big-O of code 1 is O(n³).

Code 2: The innermost loop of code 2 runs for every value of j that is a multiple of i. There are i² such values of j. So, the loop runs i² times for each value of i.

To know more about operations visit:

brainly.com/question/32790916

#SPJ11


Related Questions

More if-else In this program, you MUST use the C-style printf/scanf functions to write/read. You need to compute the bonus for a salesperson based on the following conditions. - The minimum bonus is 100.00, irrespective of the amount of sales. 1 - If the number of years of experience is >=10 years, the bonus is 3% of the sales, otherwise it is 2% of the sales. - If the amount of sales if over $100000.00, there is additional bonus of $500.00 Write a program that inputs the total amount of sales by a salesperson and compute their bonus. Then display the computed bonus with a suitable message. There must be EXACTLY 2 numbers after the decimal point and a $ sign in front of the bonus value. Once you complete your program, save the file as Lab4B. pp, making sure it compiles and that it outputs the correct output. Note that you will submit this file to Canvas. C. Switch-Case switch statements are commonly, and easily, compared to if-else statements. They both hold similar tree branching logic, but their syntax and usability are different. switch statements are powerful when you are considering one variable, especially when there are several different outcomes for that variable. It is important to understand that a break statement should be used for each case that requires a different outcome, or the code may "leak" into the other cases. However, be sure to note that the outcome for different cases may be shared by omitting the break. Write a complete C++ program called Lab4C. app that prompts the user to enter a character to represent the season: 'S' for Summer, ' F ' for fall, ' W ' for winter and ' G ' for spring. Declare an enumeration constant with the following set of values: Summer, Fall, Winter and Spring and assign letters ' S ', ' F ', ' W ' and ' G ' to them, respectively. You will use these seasons as case constants in your switch-case block. Ask the user for their choice of season using a suitable message. Then, using a switch-case block, display the following: - If the user enters sor S, display: It is rather hot outside. - If the user enters for F, display: The weather looks good. - If the user enters w or W, display: It is rather cold outside. - If the user enters, g or G display: The flowers are blooming. - If the user enters anything else, display: Wrong choice. You must write this program using a switch-case block. Use the toupper() fuction to convert the character to uppercase, so that your program works for both lowercase and uppercase inputs.

Answers

The code has been written in the space that we have below

How to write the code

#include <stdio.h>

int main() {

   float sales, bonus;

   int years;

   printf("Enter the total amount of sales: ");

   scanf("%f", &sales);

   printf("Enter the number of years of experience: ");

   scanf("%d", &years);

  bonus = (sales > 100000.00) ? 500.00 : 0.00;

   bonus += (years >= 10) ? (0.03 * sales) : (0.02 * sales);

   if (bonus < 100.00) {

       bonus = 100.00;

   }

   printf("The computed bonus is: $%.2f\n", bonus);

   return 0;

}

Read more on Python codes here https://brainly.com/question/30113981

#SPJ4

A certain computer has two identical processors that are able to run in parallel. Each processor can run only one process at a time, and each process must be executed on a single processor. The following list indicates the amount of time it takes to execute each of four processes on a single processors:

Process A takes 10 seconds to execute on either processor.
Process B takes 15 seconds to execute on either processor.
Process C takes 20 seconds to execute on either processor.
Process D takes 25 seconds to execute on either processor.
Which of the following parallel computing solutions would minimize the amount of time it takes to execute all four processes?


A

Running processes A and D on one processor and processes B and C on the other processor

B

Running processes A and C on one processor and processes B and D on the other processor

C

Running processes A and B on one processor and processes C and D on the other processor

D

Running process D on one processor and processes A, B, and C on the other processor

Answers

The best answer to the question is option B: Running processes A and C on one processor and processes B and D on the other processor.

The parallel computing solution that would minimize the amount of time it takes to execute all four processes is running processes A and C on one processor and processes B and D on the other processor. The time it will take to execute all four processes on two identical processors that run in parallel is calculated as follows:For processes A and C, the total time is 20 seconds (10 + 20). For processes B and D, the total time is 40 seconds (15 + 25).Therefore, the total time is 60 seconds when adding the two values obtained from the parallel execution of A and C, and that of B and D. No other parallel solution will yield a total time lower than 60 seconds. Therefore, option B is the correct answer.

To know more about processor visit:

brainly.com/question/30255354

#SPJ11

Find the Hexadecimal number for Binary number 11111011110.please show steps,

Answers

The hexadecimal number for the given binary number 11111011110 is FBE in hexadecimal notation.

To convert a binary number to its hexadecimal equivalent, you can group the binary digits into sets of four from right to left and then find the hexadecimal representation for each group. Here are the steps to convert the binary number 11111011110 to hexadecimal:

Step 1: Group the binary number into sets of four digits from right to left:

  1  1  1  1  1  0  1  1  1  1  0

 │   │   │   │   │   │   │   │

 1   1   1   1   0   1   1   1   1   0

Step 2: Convert each group of four binary digits to its corresponding hexadecimal digit:

  1111   1011   1110

  │         │        │

   F        B        E

Step 3: Concatenate the hexadecimal digits obtained from each group:

  FBE

Therefore, the hexadecimal representation of the binary number 11111011110 is FBE.

To know more about binary, visit:

https://brainly.com/question/33333942

#SPJ11

a user cannot access a server in the domain. after troubleshooting, you determine that the user cannot access the server by name but can access the server by ip address. what is the most likely problem?

Answers

The most likely problem is a DNS (Domain Name System) resolution issue, where the user cannot access the server by its name but can access it by its IP address.

When a user tries to access a server by its name (e.g., server.domain.com), the computer needs to resolve the name to its corresponding IP address using DNS. DNS is responsible for translating human-readable domain names into IP addresses that computers can understand.

If a user can access the server by its IP address but not by its name, it indicates that there might be a problem with the DNS configuration. There could be a misconfiguration in the DNS server, causing it to not resolve the server's name correctly. This could be due to an incorrect DNS record, a DNS server outage, or network connectivity issues between the user and the DNS server.

To resolve this issue, the DNS configuration needs to be checked and corrected if necessary. This involves verifying the DNS records for the server and ensuring that they are correctly set up. Additionally, the DNS server itself should be checked for any issues or connectivity problems.

Alternatively, the problem could be related to the client's DNS cache. Clearing the DNS cache on the client machine can help in refreshing the DNS resolution process and resolving any potential conflicts or outdated records.

In summary, the inability to access a server by name but being able to access it by IP address is likely caused by a DNS resolution problem. Checking and correcting the DNS configuration, resolving DNS server issues, or clearing the DNS cache on the client can help resolve the issue.

Learn more about  DNS (Domain Name System)

brainly.com/question/32984447

#SPJ11

a single device that integrates a variety of approaches to dealing with network-based attacks is referred to as a __________ system.

Answers

The answer to this question is Intrusion Detection and Prevention System (IDPS).

Intrusion Detection and Prevention System (IDPS) is a single device that integrates a variety of approaches to dealing with network-based attacks. A network-based attack is an attack carried out through a network, whether the attacker is an insider or an outsider. IDPSs are useful in protecting networks against potential attacks. IDPSs provide real-time monitoring of network traffic to identify security events and anomalous network behavior. IDPSs are used in conjunction with firewalls, antivirus software, and other security devices to provide a comprehensive security solution. Intrusion Detection and Prevention System is also referred to as Intrusion Detection System (IDS).

IDPS (Intrusion Detection and Prevention System) is a single device that integrates a variety of approaches to dealing with network-based attacks.

To know more about the network visit:

brainly.com/question/15002514

#SPJ11

Integers outerRange and innerRange are read from input. Complete the inner loop so the inner loop executes (outerRange + 1) * (innerRange + 1) times. Ex: If the input is 6 2, then the output is: Inner loop ran 21 times

Answers

Here is the solution to your question:Java code for the given problem statement:import java.util.Scanner;public class Main{ public static void main(String[] args) {  Scanner scan = new Scanner(System.in);  int outerRange = scan.nextInt();  int innerRange = scan.nextInt();  int count = 0;  for (int i = 0; i <= outerRange; i++) {   for (int j = 0; j <= innerRange; j++) {    count++;   }  }  System.out.println("Inner loop ran " + count + " times"); }}

In the above code, we are taking input from the user using the Scanner class. We are taking two integers, outerRange and innerRange, as input from the user. In the next line, we are initializing a variable count to store the number of times the inner loop runs.

We are using two nested loops to run the inner loop (outerRange + 1) * (innerRange + 1) times. We are incrementing the count variable in the inner loop for each iteration of the inner loop. Finally, we are printing the number of times the inner loop runs in the output statement.

For more such questions solution,Click on

https://brainly.com/question/30130277

#SPJ8

Inlnant the iava emirre rode file to Framnie class. Create a player and a few enemies. Create the basic movements Below is an example screen print showing the player, Orcs, Trolls, armor and weapons. The main program will be rather simple since many things are handled in the classes. mpert java.util,4i public class gare public atatic po1d ma1n axga) filie perimeter of world wath trees 'g' For {1πtx=1;x<=40;x++} \{ World [x][]= K ′
; Norld [x][20]= ′
[] ′
;} Below is an example screen print showing the player, Orcs, Trolls, amor and weapons. The main program will be rather simple since many things are handled in the classes. mpors java.util. 7 public clase game public statio vord main (stringll arga) scanner in = new Scanner(system.1n); string Chotce =" " Hereating the player will tnitialize the norld Flayer = new player ( "R1rk", 'r' ); If ereate rome enemien in random locationa Enemy I 1

- new Enemy("Drayon"); while (tchosce. equala ("q")) 1 Kirk. PrintHorld(); syatem. out.println("Enter your coamand: "); Cho1ee =1n, nexttine (); If cal1 move methodig - you can uge the atandard gaming directions −a 0

,ε r

,w if (Chosee equals (a ′′
) ) Kirk. Moveleft (];

Answers

The code can be used to create a player and some enemies and create the basic movements in Java. We can create the object of the player and enemies in the main method and use the move() method to make them move.

Use the printWorld() method to print the world with all the objects in it.The Player class contains the methods moveLeft(), moveRight(), moveUp(), moveDown(), and printWorld().The Enemy class contains only the properties name, symbol, x, and y. The x and y properties are initialized randomly using the Random class.We have also created a world variable of type char[][] to store the objects in the game. We have initialized the border of the world with the 'g' character in a for loop.

Then we have created the objects of the player and enemy classes in the main method. We have used a while loop to take input from the user and move the player accordingly. The loop continues until the user enters 'q'.We have used if statements to check the user input and call the respective method. In each method, we have checked if the new position of the player is valid. If it is, we have updated the world variable and the position of the player in the object. We have also used the printWorld() method of the player to print the world with all the objects in it.

To know more about code visit:

https://brainly.com/question/32727832

#SPJ11

If we use ['How are you'] as the iterator in a for loop, how many times the code block inside the for loop will be executed? Ans: A/ 1 B/ 2 C/ 3 D/ 4 Q15. What is the final value of " x " after running below program? for x in range(5): break Ans: A/ 0 B/ 5 C/20 D/ There is syntax error. Q12. What will be the final line of output printed by the following program? num =[1,2] letter =[′a ’, ’b’] for xin num: for y in letter: print(x,y) Ans: A/ 1 a B/ 1 b C/ 2 a D/2 b Q7. If we use ['How', 'are', 'you'] as the iterator in a for loop, how many times the code block inside the for loop will be executed? Ans: A/ 1 B/ 2 C/ 3 D/4 Q5. What is a good description of the following bit of Python code? n=0 for num in [9,41,12,3,74,15] : n=n+numprint('After', n ) Ans: A/ Sum all the elements of a list B / Count all of the elements in a list C/ Find the largest item in a list E/ Find the smallest item in a list

Answers

C/ 3 is the iterator in a for loop and can be any iterable such as a list, tuple, string, or range. The for loop runs until the loop has exhausted all of the items in the sequence. The code block within the for loop executes as many times as there are elements in the sequence.

So, if we use ['How', 'are', 'you'] as the iterator in a for loop, the code block inside the for loop will be executed three times because the list has three elements. Therefore, the answer is C/ 3. Answer more than 100 words: n=0 for num in [9,41,12,3,74,15]: n=n+numprint('After', n ). In the above bit of Python code, we declare a variable n, which is assigned a value of 0. Then we create a for loop, in which we iterate over each element in the list [9, 41, 12, 3, 74, 15]. The loop adds each element of the list to the variable n.

Finally, after each iteration, we print the value of n. The code adds the value of each element in the list to n variable. Therefore, after the first iteration, the value of n will be 9. After the second iteration, the value of n will be 50 (9+41). After the third iteration, the value of n will be 62 (50+12). After the fourth iteration, the value of n will be 65 (62+3). After the fifth iteration, the value of n will be 139 (65+74). After the sixth iteration, the value of n will be 154 (139+15). Therefore, the final output of the above code is 'After 154'.

In conclusion, the final line of output printed by the given program is D/ 2 b.

To know more about Iterator visit:

brainly.com/question/32403345

#SPJ11

o show data values on your pivot chart you need to add:
A.
Data values
B.
Data labels
C.
Data names
D.
Data series

Answers

The answer to the question is B. Data labels. Data labels are used to add data values to a chart.

To show data values on your pivot chart you need to add data labels. Here is an explanation on how to add data labels to your pivot chart:To add data labels, you can follow these steps:

1. Choose the chart type that you want to create.

2. Click the Pivot Chart button in the Charts group on the Analyze tab under the PivotChart Tools contextual tab to create a pivot chart based on the pivot table.

3. Select a data series by clicking one of the bars or columns in the pivot chart.

4. Click the Add Chart Element button in the Chart Tools Design tab under the Chart Tools contextual tab to open a drop-down menu.

5. Choose the Data Labels option in the Labels group on the drop-down menu. The drop-down menu contains the None, Center, Inside End, Outside End, Best Fit, and More Data Label Options options.

6. Click the More Data Label Options option to open the Format Data Labels dialog box. This dialog box contains the following tabs: Label Options, Fill & Line, Shadow, Glow & Soft Edges, and Size & Properties.

7. Choose a format for the data labels.

8. Click the Close button to close the dialog box.

9. Review the pivot chart to verify that the data labels are displayed.

10. Save the pivot chart as a template for future use. This will help to avoid repeating these steps in the future.

To know more about Data labels visit:

brainly.com/question/28390262

#SPJ11

determine whether the record counts in the three tables are consistent with the information you received from the it department.

Answers

To determine whether the record counts in the three tables are consistent with the information you received from the IT department, you can follow these steps:

1. Identify the three tables that you need to compare with the information from the IT department. Let's call them Table A, Table B, and Table C.

2. Obtain the record counts for each table. This can typically be done by running a query or using a database management tool. For example, you might find that Table A has 100 records, Table B has 150 records, and Table C has 200 records.

3. Consult the information you received from the IT department. They should have provided you with the expected record counts for each table. Let's say they stated that Table A should have 120 records, Table B should have 140 records, and Table C should have 180 records.

4. Compare the actual record counts with the expected record counts for each table. In this case, you can see that Table A has fewer records than expected, Table B has more records than expected, and Table C has more records than expected.

5. Analyze the discrepancies. Look for potential reasons why the record counts differ from the expected values. For example, there could be data quality issues, missing or duplicate records, or incorrect data entry.

6. Take appropriate actions based on your analysis. This may involve investigating further, correcting data inconsistencies, or consulting with the IT department for clarification.

Remember to document your findings and any actions taken for future reference. It's important to maintain accurate and consistent record counts to ensure data integrity and reliability.


Learn more about Record Counts here:

https://brainly.com/question/29285278

#SPJ11

Design: Create the pseudocode to design the process for a program that simulates flipping a coin two millions times and counts the occurrences of heads and tails, then displays the counts. 2. Implementation: Write the program designed in your pseudocode. Please submit the following: 1. Click the Write Submission button and enter your pseudocode 2. A captured image of your screen showing your program's output 3. The compressed (zipped) folder containing your entire project

Answers

Simulate flipping a coin 2 million times, count the occurrences of heads and tails, and display the counts.

Pseudocode:

1. Initialize a variable 'headsCount' to 0 to store the count of heads.

2. Initialize a variable 'tailsCount' to 0 to store the count of tails.

3. Repeat the following steps 2 million times:

  a. Generate a random number (0 or 1) to simulate a coin flip.

  b. If the random number is 0, increment 'headsCount' by 1.

  c. If the random number is 1, increment 'tailsCount' by 1.

4. Display the value of 'headsCount' as the count of heads.

5. Display the value of 'tailsCount' as the count of tails.

Implementation (in Python):

import random

headsCount = 0

tailsCount = 0

for i in range(2000000):

   coin = random.randint(0, 1)

   if coin == 0:

       headsCount += 1

   else:

       tailsCount += 1

print("Heads count:", headsCount)

print("Tails count:", tailsCount)

Output:

Heads count: 1000232

Tails count: 999768

The output counts may vary slightly due to the random nature of the coin flips.

Learn more about pseudocode: https://brainly.com/question/24953880

#SPJ11

We will write a method that takes the head of a linked list as an argument and returns the number of elements/items/nodes that are there in the linked list. So, the return type is integer. Complete the following method.
public static int countNodes(Node head){
}

Answers

//java

public static int countNodes(Node head) {

   int count = 0;

   Node current = head;

   while (current != null) {

       count++;

       current = current.next;

   }

   return count;

}

The given method counts the number of elements in a linked list. It takes the head of the linked list as an argument. We initialize a variable `count` to keep track of the number of nodes. We also create a `current` node and assign it the value of the head node.

Next, we enter a while loop that continues until the `current` node becomes null. Within the loop, we increment the `count` variable to count the current node, and then we move the `current` node to the next node in the list using the `next` pointer. This process continues until we reach the end of the list, indicated by the `current` node becoming null.

Finally, we return the `count` variable, which represents the total number of nodes in the linked list.

Learn more about Linked lists in java

brainly.com/question/30884540

#SPJ11

program, think carefully about how many variables you will need.
2. Name your variables carefully in a manner that makes it easy for someone reading the program to understand what’s going on.
3. Use comments. In fact, write down the logic of the program in comments first, and then "fill out" the program.

Answers

A program, it is critical to think carefully about the variables that will be required, the importance of variables, the program can not function without variables

The variables are what store the data that is used by the program to make decisions.To ensure that variables are comprehensible, they should be named appropriately in a way that makes it easier for someone reading the program to understand what is going on. If the program is written by a group, this becomes particularly critical because a poor variable name will be confusing to anyone who reads the code.

Thirdly, using comments is essential. The logic of the program should be written in comments before the program is filled out. This approach assists in ensuring that the program's logic is comprehensible and that it functions as intended. As a result, when designing a program, ensure that you include variables, name them carefully, and utilize comments to make the program more manageable to understand and work with.

To know more about program visit:

https://brainly.com/question/14618533

#SPJ11

Write a C++ program to sort a list of N integers using Heap sort algorithm.

Answers

Here's a C++ program that implements the Heap sort algorithm to sort a list of N integers:

#include <iostream>

using namespace std;

// Function to heapify a subtree rooted at index i

void heapify(int arr[], int n, int i) {

   int largest = i;         // Initialize largest as root

   int left = 2 * i + 1;    // Left child

   int right = 2 * i + 2;   // Right child

   // If left child is larger than root

   if (left < n && arr[left] > arr[largest])

       largest = left;

   // If right child is larger than largest so far

   if (right < n && arr[right] > arr[largest])

       largest = right;

   // If largest is not root

   if (largest != i) {

       swap(arr[i], arr[largest]);

       // Recursively heapify the affected sub-tree

       heapify(arr, n, largest);

   }

}

// Function to perform Heap sort

void heapSort(int arr[], int n) {

   // Build heap (rearrange array)

   for (int i = n / 2 - 1; i >= 0; i--)

       heapify(arr, n, i);

   // Extract elements from the heap one by one

   for (int i = n - 1; i > 0; i--) {

       // Move current root to end

       swap(arr[0], arr[i]);

       // Call max heapify on the reduced heap

       heapify(arr, i, 0);

   }

}

// Function to print an array

void printArray(int arr[], int n) {

   for (int i = 0; i < n; ++i)

       cout << arr[i] << " ";

   cout << endl;

}

int main() {

   int arr[] = {64, 25, 12, 22, 11};

   int n = sizeof(arr) / sizeof(arr[0]);

   cout << "Original array: ";

   printArray(arr, n);

   heapSort(arr, n);

   cout << "Sorted array: ";

   printArray(arr, n);

   return 0;

}

The program begins by including the necessary header files and declaring the required functions. The `heapify` function is used to heapify a subtree rooted at a given index. It compares the elements at the current index, left child index, and right child index to determine the largest element and swaps it with the root if necessary. The `heapSort` function builds the initial heap and repeatedly extracts the maximum element from the heap, resulting in a sorted array.

In the `main` function, an example array is initialized and its size is calculated. The original array is printed before applying the heap sort algorithm using the `heapSort` function. Finally, the sorted array is printed using the `printArray` function.

The program demonstrates the implementation of the Heap sort algorithm to sort a list of integers. It showcases the key steps of building the heap and repeatedly extracting the maximum element to obtain a sorted array.

Learn more about integers

brainly.com/question/15276410

#SPJ11

Python...
number = int(input())
values = []
for i in range(number):
values.append(int(input()))
threshold = int(input())
for x in values:
if x <= threshold:
print(x,end=",")

Answers

Given code shows a python program that accepts the integer input from the user and then stores them into a list.

The program then asks the user to input a threshold value. After taking all the inputs, the program checks which of the numbers stored in the list is less than or equal to the threshold value and then prints the resulting values separated by a comma. Here is the solution:

``` number = int(input()) values = []

for i in range(number):    

    values.append(int(input()))

threshold = int(input())

for x in values:    

      if x <= threshold:        

             print(x,end=",")```

Learn more about python visit:

brainly.com/question/30391554

#SPJ11

Assign the value 11 to the variable side. Assign the variable squareAroa according to the formula below. Print the value of squareArea squareArea = side 2

Answers

The value 11 should be assigned to the variable side. The variable squareArea should be assigned according to the formula squareArea = side^2. Afterward, the value of squareArea should be printed.

The code to assign the value 11 to the variable side, assign the variable squareAroa according to the formula below, and print the value of squareArea is as follows:side = 11squareArea

= side ** 2print(squareArea)explanationThe code starts with the statement `side

= 11`, which assigns the value 11 to the variable side.

The next line of code `squareArea = side ** 2` assigns the variable squareAroa according to the formula `squareArea = side^2`, which means `squareArea` is equal to `side` multiplied by itself.The third and last line of code, `print(squareArea)` prints the value of squareArea to the console, which is 121 since side is 11, therefore 11 multiplied by 11 equals 121.

To know more about variable visit:

https://brainly.com/question/32607602

#SPJ11

a) Write a function named concatTuples(t1, t2) that concatenates two tuples t1 and t2 and returns the concatenated tuple. Test your function with tuple1 = (4, 5, 6) and tuple2 = (7,) What happens if tuple2 = 7? Note the name of the error.
b) Write try-except-else-finally to handle the above tuple concatenation problem as follows: If either tuple1 or tuple2 are integers instead of tuples the result of the concatenation would be an empty tuple. Include an appropriate message in the except and else clause to let the user know if the concatenation was successful or not. Print the result of the concatenation in the finally clause. Note: You do not need to take inputs from user for this question. Test your code with: tuple1 = (4, 5, 6) and tuple2 = (7,) and tuple1 = (4, 5, 6) and tuple2 = (7)

Answers

Concatenate two tuples using the function `concatTuples(t1, t2)`, handling errors and printing the result.

def concatTuples(t1, t2):

   try:

       if isinstance(t1, tuple) and isinstance(t2, tuple):

           return t1 + t2

       else:

           return ()

   except TypeError as error:

       print("Error:", error)

   else:

       print("Concatenation successful")

   finally:

       print("Result:", t1 + t2)

# Test case 1

tuple1 = (4, 5, 6)

tuple2 = (7,)

concatenated_tuple = concatTuples(tuple1, tuple2)

# Test case 2

tuple1 = (4, 5, 6)

tuple2 = (7)

concatenated_tuple = concatTuples(tuple1, tuple2)

In the above code, we have a function concatTuples that takes two tuples t1 and t2 as input and concatenates them using the + operator. If either t1 or t2 is not a tuple, the function returns an empty tuple. We handle this scenario using a try-except-else-finally block.

In the try block, we check if both t1 and t2 are tuples using the isinstance() function. If they are, we perform the concatenation and return the result. Otherwise, we return an empty tuple.

If a TypeError occurs during the execution, the except block is executed, and an appropriate error message is printed.

In the else block, we print a message indicating that the concatenation was successful.

Finally, in the 'finally' block, we print the result of the concatenation regardless of whether an error occurred or not.

Learn more about tuples: brainly.com/question/28966371  

#SPJ11

Circuit
switching and packet switching are the two basic methods for
transporting data over a network of links and switches. Which is
the superior option?
i
think packet switching explain why

Answers

Packet switching is the superior option for transporting data over a network of links and switches.

Packet switching involves breaking data into small units called packets and sending them individually across the network. Each packet is labeled with its destination address and is routed independently. This method offers several advantages over circuit switching.

Firstly, packet switching is more efficient in terms of bandwidth utilization. Unlike circuit switching, where a dedicated communication path is established for the entire duration of a transmission, packet switching allows multiple packets from different sources to be interleaved and transmitted simultaneously. This enables better utilization of network resources, as unused bandwidth can be allocated to other packets.

Secondly, packet switching offers better resilience and reliability. In circuit switching, if a link or switch fails, the entire communication path is disrupted. In contrast, with packet switching, each packet can take a different path through the network, dynamically adapting to changes in network conditions. If a particular link or switch fails, packets can be rerouted along alternative paths, ensuring that the data still reaches its destination.

Furthermore, packet switching supports a variety of applications and services. It is well-suited for data transmission, as it can handle different types of data, such as text, images, audio, and video. Additionally, packet switching allows for the integration of various network services, such as voice over IP (VoIP) and video conferencing, enabling more efficient and cost-effective communication.

In conclusion, packet switching is the superior option for transporting data over a network of links and switches. It offers improved bandwidth utilization, enhanced resilience, reliability, and supports a wide range of applications and services.

Learn more about Packet switching

brainly.com/question/32332874

#SPJ11

what are JOINS and joins commands narrate the scenario where the different JOIN command would used

Answers

JOINS command is a SQL statement that allows you to fetch data from one or more tables.

A JOIN in SQL combines the data from two tables, so it creates a new set of data from two sets of data.To generate a JOIN query, there are four different types of JOIN commands, including INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.

The different JOIN commands are used in the following scenarios:INNER JOIN: An INNER JOIN returns only the records from both tables that meet the specified criterion and match each other's data columns. If there are no matching rows in both tables, an inner join will return no results.LEFT JOIN: A LEFT JOIN will return all the data from the left table and only matching data from the right table. A left join retrieves all of the rows from the table on the left and combines the matching rows from the table on the right. When there are no corresponding values in the right table, it fills the gaps with null values.RIGHT JOIN: A RIGHT JOIN is the opposite of a left join. The right join returns all the data from the right table and only matching data from the left table.FULL JOIN: It returns all the rows from the left and right tables. When there are no matching rows in either table, it returns a null value.

JOIN is a SQL command that enables you to combine data from two or more tables into a single result set. The SQL joins come in different types, including INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN, that are used in different scenarios. The most appropriate join to use in each scenario will depend on the relationship between the tables and the data you want to retrieve.

To know more about JOIN visit:

brainly.com/question/31670829

#SPJ11

Write a programme in jupyter. Given the scikit's iris, write a program to convert the feature matrix to categorical data by converting data to integers and then remove uninformative features. You can use scikit's SelectKBest to select three features with highest chisquared statistics.

Answers

Given the scikit's iris, a program is required to convert the feature matrix to categorical data by converting data to integers and then remove uninformative features.

You can use scikit's Select Best to select three features with the highest chisquared statistics. Below is the program in Jupyter notebook for the given task:```# Importing required libraries from sklearn. datasets import loadiris from sklearn. feature selection import Select Best from sk learn .

 After that, we have performed encoding and selecting the three best features and then removed the uninformative features.Then we have used SelectKBest to select the three best features with the highest chisquared statistics and summarizing the scores for each feature. Finally, the feature matrix has been reduced to the top three scores and the feature matrix has been printed after feature selection.

To know more about data visit:

https://brainly.com/question/33626942

#SPJ11

Man-in-the-Middle attack is a common attack which exist in Cyber Physical System for a long time. Describe how Man-in-the-Middle attack formulated during the Email communication.

Answers

Man-in-the-Middle attack is a common type of cyber attack that exists in Cyber Physical Systems for a long time.

The Man-in-the-Middle attack happens when a cybercriminal intrudes on an email conversation between two parties, intercepts the messages and steals information exchanged in the process. This attack is an effective way to steal sensitive information as the attacker can read, modify, or even prevent the information from being delivered, thus making the attack unnoticeable.  

In the case of email communication, the Man-in-the-Middle attack happens when an attacker intercepts email messages as they are being sent between two parties. They do this by inserting themselves into the communication channel, without either party being aware of it, and then begin to monitor the conversation, altering it when they see fit. They may also alter or delete messages that were sent between the two parties.

To know more about attack visit:

https://brainly.com/question/33632033

#SPJ11

Write a program that does the following... (a) Declare a variable. (b) Assign it a value. (c) Declare a pointer variable (d) Assign the pointer to the address of the first variable. (e) Display the values of both variables. (f) Display the addresses of both variables. (g) Display the value of the dereferenced pointer. Run the program, and submit the code and the results through Canvas Assignments.

Answers

Here is the program which is doing the following operations:

a. Declaring a variable

b. Assigning a value to it

c. Declaring a pointer variable

d. Assigning the pointer to the address of the first variable

e. Displaying the values of both variables

f. Displaying the addresses of both variables

g. Displaying the value of the dereferenced pointer.    

#include int main()

{   int a=30;   int *p;   p=&a;   printf("The value of a is : %d \n", a);  

printf("The value of a is : %p \n", &a);  

printf("The value of p is : %p \n", p);  

printf("The value of *p is : %d \n", *p);  

return 0; }

Here, int is the datatype of the variable which we have used in this program. We have used p to store the address of the variable a. And, &a represents the address of the variable a.

Learn more about Program here:

https://brainly.com/question/14368396

#SPJ11

Submitting a text entry box or a file upload Available until Sep 12 at 11:59pm Write a program that reads in a number n and calls a function squareRoot to calculate and output the square root of that number. Output the square root to 3 decimal places. If the number n is negative. I want the square root displayed as an imaginary number. This can be done by adding an if statement to your function that will handle the case where n<0. Sample Output n≥0 n<0 The square root of 8 is 2.828. The square root of −25 is 5.000i. Write a program that reads in the three coefficients of a quadratic equation: a,b, and c. Have the program call a function discriminantCalculator that will compute and output the discriminant ( b∧2−4ac). That function should then call the squareRoot function that you created in Project 3b, except the output should state that "The square root of the discriminant is .... The squareRoot function should still handle the case where the discriminant is negative, outputting the square root in the form of an imaginary number.

Answers

The Python code to write a program that reads in a number n and calls a function squareRoot to calculate and output the square root of that number is as follows:```def squareRoot(n):    if n>=0:        return round(n**(1/2), 3)    else:        return str(round((-n)**(1/2), 3))+'i' if n<0 else ''n = int(input())print(f"The square root of {n} is {squareRoot(n)}.")```

The program starts by defining a function squareRoot that takes an argument n and returns its square root. The function first checks if the number is non-negative. If it is, the function computes the square root of n using the ** operator and returns the result rounded to 3 decimal places using the round function. If the number is negative, the function returns the square root of the absolute value of n in the form of an imaginary number. The function uses the conditional operator to conditionally add the letter i to the end of the string. An empty string is added if the number is non-negative.The function first computes the discriminant using the formula b^2 - 4*a*c and assigns the result to the variable disc.

Then, the function prints out the value of the discriminant using the f-string and calls the squareRoot function with disc as the argument and returns the result. The squareRoot function is the same as in the previous program.Next, the program reads in three integers a, b, and c from the user using the input function and converts them to integers using the int function. Then, the program calls the discriminantCalculator function with a, b, and c as arguments and assigns the result to the variable disc_sqrt.The program checks if the return value of the discriminantCalculator function is a float or a string. If it is a float, the program formats the output string using the f-string and prints out the square root of the discriminant. If it is a string, the program prints out the string.

To know more about code visit:

https://brainly.com/question/32370645

#SPJ11

\begin{tabular}{r|l} 1 & import java.util. Scanner; \\ 2 & \\ 3 & public class OutputTest \{ \\ 4 & public static void main (String [ args) \{ \\ 5 & int numKeys; \\ 6 & \\ 7 & l/ Our tests will run your program with input 2, then run again with input 5. \\ 8 & // Your program should work for any input, though. \\ 9 & Scanner scnr = new Scanner(System. in); \\ 10 & numKeys = scnr. nextInt(); \\ 11 & \\ 12 & \} \end{tabular}

Answers

The given code is a Java program that uses the Scanner class to obtain user input for the variable "numKeys".

What is the purpose of the given Java code that utilizes the Scanner class?

The given code snippet is a Java program that demonstrates the usage of the Scanner class to obtain user input. It starts by importing the java.util.Scanner package.

It defines a public class named OutputTest. Inside the main method, an integer variable named "numKeys" is declared.

The program uses a Scanner object, "scnr", to read an integer input from the user using the nextInt() method.

However, the code is incomplete, missing closing braces, and contains a syntax error in the main method signature.

Learn more about numKeys

brainly.com/question/33436853

#SPJ11

Consider a search ongine which uses an inverted index mapping terms (that occur in the document) to documents but does not use tfidif or any similar relevance measure, or any other type of measure for ranking or fitering. Ranking is done strictly on the basis of PageRank with no reference to the content. What are the drawbacks/demerits of this system. Illustrate the drawbacks/demerits with two diflerent exampies (You may assume that the documents are text-only.]

Answers

That the drawback/demerits of a search engine which uses an inverted index mapping terms (that occur in the document) to documents, but does not use tfidif or any similar relevance measure, or any other type of measure for ranking or filtering, is that it may lead to poor search results.

This is because without any form of measure for ranking or filtering, the search results returned by the search engine may not be the most relevant to the query entered by the user.Here are two different examples that illustrate the drawbacks/demerits of a search engine which uses an inverted index mapping terms to documents, but does not use any relevance measure for ranking or filtering:1. If a user types in the query "car" into the search engine, the search engine may return a list of documents that contains the word "car".

However, some of the documents returned may not be relevant to the user's query. For instance, some of the documents returned may be about "car accidents" or "car parks", which may not be what the user was looking for. This may cause frustration to the user, who may end up abandoning the search engine and looking for other alternatives.2. Another example is if a user types in the query "chocolate cake recipe" into the search engine, the search engine may return a list of documents that contains the words "chocolate", "cake" and "recipe".

To know more about mapping visit:

https://brainly.com/question/13134977

#SPJ11

the order of the input records has what impact on the number of comparisons required by bin sort (as presented in this module)?

Answers

The order of the input records has a significant impact on the number of comparisons required by bin sort.

The bin sort algorithm, also known as bucket sort, divides the input into a set of bins or buckets and distributes the elements based on their values. The number of comparisons needed by bin sort depends on the distribution of values in the input records.

When the input records are already sorted in ascending or descending order, bin sort requires fewer comparisons. In the best-case scenario, where the input records are perfectly sorted, bin sort only needs to perform comparisons to determine the bin each element belongs to. This results in a lower number of comparisons and improves the algorithm's efficiency.

However, when the input records are in a random or unsorted order, bin sort needs to compare each element with other elements in the same bin to ensure they are placed in the correct order within the bin. This leads to a higher number of comparisons and increases the overall computational complexity of the algorithm.

Learn more about records

brainly.com/question/31911487

#SPJ11

Write a shell script to determine the number of occurrences of a substring in the main string. [3 Marks] Sample input = abceddecace Enter substring=cc Sample Output: Number of occurrences =3 2) Write a shell script which reads ATaleofTwoCities.txt and AlicelnWonderfand.tex f 8 marks] a. Count the number of lines across the two text files. b. Count the number of times the word "London" and "Paris" appeared in ATaleofTwoCities.txt I c. Count the number of vowels present in both files. Count how many times the word "the" appears in two files and replace it with "ABC" d. Print all the different types of characters used in the two files. 3) Write a Peri shell script named phone.pl that prompts the user to enter the fint or last of any portion of the person's name, so that ean be found tbe appropriate entry in the phone directory file called "phones". If the person"s entry does NOT exist in the file "phones," then it will be displayed the following message "Name NOT found in the phono dinctory file!" (Where Name is the user's input).

Answers

1) Shell script to determine the number of occurrences of a substring in the main string:To determine the number of occurrences of a substring in the main string, the following shell script can be used:#!/bin/bash
echo -n "Enter the main string: "
read str
echo -n "Enter the substring: "
read substr
echo "Number of occurrences of the substring = "$(echo $str | grep -o $substr | wc -l)In the above script, the user is asked to enter the main string and substring. Then, using the grep command, the substring is matched with the main string and the number of matching lines are counted using wc command.2) Shell script to perform different operations on two text files:To perform the given operations on two text files, the following shell script can be used:#!/bin/bash
file1="ATaleofTwoCities.txt"
file2="AlicelnWonderfand.tex"
echo "a. Number of lines across the two files = "$(cat $file1 $file2 | wc -l)
echo "b. Number of times 'London' appeared in $file1 = "$(grep -o "London" $file1 | wc -l)
echo "   Number of times 'Paris' appeared in $file1 = "$(grep -o "Paris" $file1 | wc -l)
echo "c. Number of vowels present in both files = "$(cat $file1 $file2 | tr -d '\n' | grep -oi "[aeiou]" | wc -l)
echo "   Number of times 'the' appeared in $file1 = "$(grep -o "the" $file1 | wc -l)
echo "   Number of times 'the' appeared in $file2 = "$(grep -o "the" $file2 | wc -l)
echo "   Replacing 'the' with 'ABC' in $file1..."
sed -i 's/the/ABC/g' $file1
echo "   Replacing 'the' with 'ABC' in $file2..."
sed -i 's/the/ABC/g' $file2
echo "d. Different types of characters used in the two files:"
echo "$(cat $file1 $file2 | sed 's/./&\n/g' | sort -u | tr -d '\n')"In the above script, the given operations are performed on two text files using various Linux commands.3) Perl script to search for a name in a phone directory:To search for a name in a phone directory, the following Perl script can be used:#!/usr/bin/perl
print "Enter the name (first or last): ";
$name = <>;
chomp $name;
$file = "phones";
open(DATA, "<$file") or die "Cannot open $file: $!";
$found = 0;
while() {
   if($_ =~ /$name/i) {
       print $_;
       $found = 1;
   }
}
if($found == 0) {
   print "Name NOT found in the phone directory file!\n";
}
close(DATA);In the above Perl script, the user is asked to enter a name. Then, the script searches for the name in the phone directory file. If found, it prints the corresponding entry, otherwise, it displays a message "Name NOT found in the phone directory file!".

Know more about Shell script here,

https://brainly.com/question/31641188

#SPJ11

the binding of virtual functions occur at compile time rather than run time. a) true b) false

Answers

The statement "the binding of virtual functions occurs at compile-time rather than runtime" is incorrect.

The answer is b) false.

In C++, a virtual function is a member function in the base class that is overridden by the derived class, allowing the derived class to use the same name and signature as the base class's version.

The derived class's implementation of the function is selected at runtime using the dynamic dispatch mechanism, regardless of the type of the pointer or reference to the object.So, the binding of virtual functions occurs at runtime, not at compile time. Virtual functions are resolved by the vtable or virtual table mechanism at runtime.

To know more about virtual visit :

https://brainly.com/question/31257788

#SPJ11

RSA Private Kev (PEM) Key Password Messoqe Diqest Alqorithm 5HA=1 RSA Verify RSA Public Kev (PEM)

Answers

RSA is an encryption algorithm and is widely used in securing communication across networks. The RSA algorithm uses two keys, one public and one private, for encrypting and decrypting messages. The public key is used to encrypt the message, while the private key is used to decrypt the message.

RSA Private Key (PEM) Password Message Digest Algorithm SHA=1RSA VerifyRSA Public Key (PEM)The RSA algorithm uses a Password Message Digest Algorithm SHA-1 (Secure Hash Algorithm) to ensure the integrity of the message. The private key is encrypted with the password and then encrypted again using the SHA-1 algorithm. The public key is then used to verify the signature and ensure that the message has not been tampered with.The RSA Verify function is used to verify the digital signature of the message.

The function takes the message and the public key as input and verifies the signature. If the signature is valid, then the message is considered authentic.The RSA Public Key (PEM) is used to encrypt the message. The public key is distributed to the intended recipients and they can use it to encrypt messages that can only be decrypted using the private key owned by the sender.

To know more about The RSA algorithm visit:

https://brainly.com/question/33366142

#SPJ11

Your each answer should fit ENTIRELY one side of this page. SINGLE A4 Sheet equivalent. That is 1 A4 single side sheet for each question.
To clarify, what we are after is your own words to describe/explain of what the three forms of data integrity mean for question 1 and why they are important, and for question 2 describe/explain what each of the ACID properties mean and how they apply to a database transaction
Question 1/task 1: Think the scenarios through about the application of such rules and properties, then write to be more concise. In relational database systems, the three forms of data integrity are:
Entity integrity:.
Domain Integrity:
Referential integrity:
Question 2 task 2: Think the scenarios through about the application of such rules and properties,, then write to be more concise. the four ACID properties (Atomic, Consistent, Isolated, and Durable) of a database transaction.

Answers

The three forms of data integrity in relational databases are entity, domain, and referential integrity.

Entity integrity: Ensures that each row or record in a table has a unique identifier, such as a primary key, and that it cannot be null. This ensures that each entity is uniquely identifiable and that no duplicate or missing values exist.

Domain integrity: Enforces the validity and accuracy of data by defining rules and constraints for the values that can be stored in a particular attribute or column. It ensures that the data conforms to predefined data types, formats, ranges, or other specified constraints.

Referential integrity: Maintains the consistency and relationships between tables by enforcing the validity of foreign key references. It ensures that foreign key values in one table correspond to the primary key values in another table, preventing orphaned or inconsistent data.

These forms of data integrity are crucial for the reliability and accuracy of a database system. Entity integrity ensures that data is uniquely identified and eliminates duplicates or missing values. Domain integrity guarantees the correctness and reliability of data by enforcing data type and constraint rules. Referential integrity maintains the consistency and integrity of relationships between tables, ensuring that data dependencies are maintained.

By upholding these forms of data integrity, organizations can trust the data stored in their databases, make informed decisions based on accurate information, and avoid data inconsistencies or errors that could lead to data corruption or loss.

Learn more about data integrity

brainly.com/question/30075328

#SPJ11

Other Questions
you will write a function which receives three parameters, each being the length of triangle sides p, q, and r respectively. you will test the parameters for various conditions, and provide a return value which indicates the type of triangle: 0 protein (afp) level. after the health care provider leaves the room, the client asks what she should do next. what information should the nurse provide. Convert the below C code snippet to LEGv8 assembly code. Assume variables a, b, and c are stored in registers X20, X21, and X22 respectively. Base address of array d is stored in register X19. Do not use multiply and divide instruction. Comment your assembly code.a = b + c;b = c d[5];d[1] = b + d[c/4];d[b] = c - d[8*a]; A prominent feature in the melody in this selection isa. a downward leaping contourb. a simple two-note motive repeated over and overc. an upward leaping contourd. the absence of melodic repetition Question 1 : Fundraising goals,initial planning and approval In a three-period bargaining game of alternating offers, player 1 makes an offer in period 1. If the offer is rejected, player 2 makes an offer in period 2, and, finally if that offer is rejected player 1 makes an offer in period 3. If the final offer is rejected the game ends with each player obtaining a 0.2 fraction of the pie thats infinitely divisible. The one-period discount factor for either player is equal to 0.5. Find the SPE of this game assuming that either player always accepts an offer in case the payoff of rejecting the offer is the same. (Please expxlain notation) Given f(x)=5x and g(x) = 1/x-5 which value is in the domain of f g? (5x in the problem has that one symbol) (this is platoweb) the successful implementation for change only happens when people accept the need for change and believe that it will improve factors such as productivity and/or customer satisfaction. a) true b) false Multiple sclerosis (MS) involves an immune-mediated process in which an abnormal response of the bodys immune system is directed against the central nervous system (CNS) (i.e. the brain, spinal cord, and optic nerve). A hallmark of MS are lesions within CNS tissues that increase with volume over the lifetime of the patient or model animal. Mesenchymal stem cells (MSCs) have the ability to produce immunomodulatory factors that can alter the immune response in multiple tissues and are currently being investigated for their therapeutic efficacy in treating MS. In a mouse model of MS, a single MSC treatment can reduce the volume of MS lesions by 50% over the course of several months. Based on this study, researchers believe similar treatments can work in human patients.You have been contracted to design a clincal trial for an MSC treatment of MS in partnership with the Mayo Clinic. Mayo has 2,558 patients under their care diagnosed with "mid stage MS" being treated with the current standard of care. The basis of diagnosing MS in these patients and monitoring disease progression is by imaging CNS lesions with MRI. Mid stage MS is defined as having a total lesion volume from 25-100 mm3 in the brain. In the proposed trial, patients will be given a single MSC infusion of 10M cells. Over the course of a year doctors will monitor lesion volume.H0: 1=2colab codinga) Generate a histogram marking the mean and the limits of out to a 95% probability. Include labeled axes and a figure legend denoting mu, sigma and n.b) How would you describe these data? Generate a box plot showing the mean and the median. Include both values in the plot legend.c) As a compromise, the board has asked you to reduce outliers by only considering the inner 90% of all patients for the trial. What would the range of minimum and maximum lesion volumes be using only these patients?d) Plot distribution of the MEAN with lines showing the STANDARD ERROR and include the standard error value in a figure legend.f) Consider the means of the original data and your new measurements. Does the mean of the original data fall within the 90% confidence interval of your new dataset? Show a PDF of the new mean distribution, the 90% confidence intervals and the original mean. Determine the decimal and hexadecimal values of the following unsigned numbers: a. 111011 b. 11100000 Questions 36 (10 marks) A closed economy is currently in its long-run equilibrium. Recently, there is advancement in payment technology such that households have more options to make payments and the importance of money being a medium of exchange falls. Note: Be sure to show the shift(s) of curve(s) and identify the new equilibriums in the diagram below. a) What happens to the short-run equilibrium levels of output and price? Explain. (5 points) b) What happens to the long-run equilibrium levels of output and price? Explain. (5 points) Strengthening the Dominant ImpressionRead "The Late Night Place to Be" below. State what the author wants the dominant impression to be, and then underline any words that you think detract from that dominant impression.Write out the dominant impression for "The Late Night Place to Be":Underline the details that distract from the dominant impression. (Instructors hint: You will find these distracting details clustered together as three contiguous sentences.)The Late Night Place to BeI like being part of all the action in the gym, especially late at night. The bright lights of the place shine through plate glass windows, illuminating the parking lot as I arrive at 1:00 a.m. After checking in, I head to the mezzanine on the left side of the gym, next to the cardiovascular area. As I walk upstairs, I can identify the sounds of the room. I hear the heavy breathing of the sweaty runners as their feet pound strongly against the treadmills, which are lined up against the back wall. The room is carpeted in dark pink and is full of cardiovascular equipment such as NordicTracks, stair steppers, and stationary bicycles, and most of the machines are, surprisingly, in use. The carpet feels good on my feet after a hard night working in the restaurant, and I wonder if the other people here appreciate it too. Management has kept the gym neat: the walls are freshly painted, the mirrors clean, and all the resistance machines look practically new. The fresh look improves my attitude and makes it somehow easier for me to work out harder. Although there are plenty of people, the place doesnt look crowded, but it is noisy. The beeping sound from various machines marks people getting on and off and setting different resistance levels. Looking down to the main area of the gym, across from the reception desk, I can see two girls talking and hear part of their conservation as they work out. Near the back wall about 60 feet away from the reception desk, three men are working with free weights. I can hear the clink and clank of the metal weights as they lay them down. Although it might seem strange to some that all this activity is going on so late at night, to me, and maybe the rest of the people in the gym, this is the best way to relax at the end of a long day. Dont know the answer and dont understand Multiple Choice Debit Cash $9,690; credit Interest Revenue $190; credit Notes Recelvable $9.500. Debit Notes Payable $9,500; credit Cash $9,500. Debit Notes Payable $9,500; credit Interest Expense $190; credit Cash $9,310. Debit Notes Payable $9,500; debit Interest Expense $190; credit Cash $9,690. Debit Notes Payable $9,690; credit Cash $9,690. Form Setup a. You must save your project using your initials in the name** This is required and the project will not be accepted otherwise. b. Design your screen to look like the one below. c. Update the backcolor to the color of your choice. d. Use appropriate naming conventions for controls and variables. i. Txt for textbox ii. Lbl for label iii. Frm for form iv. Lst for listbox e. Tab Control must flow in order from number of hours, lstmissions, Hours, Close. f. All buttons have access keys g. Lock the controls on your form. h. The list box to display the donations must be cleared before written to. i. The amounts will be stored in labels with borders. 2. Code a. Create a comment section at the beginning of the code with the name of the assignment, purpose of the assignment, and your name. Comments must be throughout each sub of the application. b. Remove any subs that are not utilized by the program c. A string array will be created to hold the 5 types of mission entry points. 3. Form Load a. Clear the donation listbox b. Load the mission list array into the listbox c. Display the current Date for the donations d. Display your name 4. Add Donation Button a. The information that was entered should be checked to make sure there are values entered. If the user entry contains null values, the user should be so advised, and the user should be directed to the text box that contains the error. Make sure your error messages are meaningful. b. A static one-dimensional array to hold 4 values is created to hold the number of hours. c. Add the number of hours value into the array in the appropriate place holder based on the selected index d. Display all hour totals in the corresponding labels e. Utilize an input box to get the name from the user. f. Call a function to return just the last name g. Display the name and the amount donated in the listbox which displays a running total of the amounts entered. h. After the display, clear the selected index of the donation listbox, and amount text box. i. Make sure all spacing is accurate 5. Proper Order Function a. Receives the name b. Uses the substring method to parse out the last name c. Returns the last name 6. Close Button a. The application quits when the button is pressed how to find the attributes Attributes x010 Attributes x030 Attributes x080 on the $MFT File Make an abstract class called Shape. It will have two private attributes called shapeName and shapeColor of type String. Must have default and parameter constructor. Do getter and setter for attributes. Make an abstract method called area that will return a double and another called askNumbers of type void. The required reserve ratio is 10 percent, a bank has checkable deposits of $200 million and excess reserves of $100 million. Assuming the bank is meeting its reserve requirement, what amount is the bank holding in reserves? 2. If checkable deposits are $100 million and the required reserve ratio is 7 percent, then what do required reserves equal? 3. Checkable deposits are $50 million, and required reserves are $4 million. What is the required reserve ratio? 4. The required reserve ratio is 9 percent, required reserves are $10 million, and (total) reserves are $50 million. How much do excess reserves equal? How much do checkable deposits equal? 5. A bank currently has $100 million checkable deposits, $4 million in reserves, and $8 million in securities. If the required reserve ratio is 10 percent, is the bank meeting its legal reserve requirements? Explain. 6. If checkable deposits are $20 million and the required reserve ratio is 15 percent, how much do required reserves equal? 7. If excess reserves are $2 million and required reserves are $22 million, then how much do reserves equal? The functions shown to be recursive in class are: FunctionComposition, Multiplication and Exponentiation, Predecessor,Limited Subtraction (Monus), Zero Test, Signature, Absolutedifference, and Min Give the formal primitive recursive definitions of the following functions using only the initial functions and the functions shown to be recursive in class. (c) Identity relation =(x, y)=1 if \ 1. Suppose the demand curve for a product is given by Q=3002P+4I, where I is average income measured in thousands of dollars. The supply curve is Q=3P50. a. If I=25, find the market-clearing price and quantity for the product. b. If I=50, find the market-clearing price and quantity for the product. c. Draw a graph to illustrate your answers.