• Home
  • Ask directory
  • AP CS
  • December 2024
  • 22

AP CS Q&A Archive of December 22, 2024

Select Question

December 22 of 2024

1. Create or Use a Text File Create or use a text file input.txt with some lines of text. Ensure it contains at least 3-4 lines. 2. Program Requirements Write a Java program that does the following: a. Read the content: Read all the lines from input.txt and display them on the console. b. Count…
Analyze the following code: int matrix[5][5]; for (int column = 0; column < 5; column++) matrix[4][column] = 10; After the loop, the last row of matrix 0, 0, 0, 0, 10. After the loop, the last row of matrix 10, 10, 10, 10, 10. After the loop, the last column of matrix 10, 10, 10, 10, 10. After…
Management is concerned that users may be inadvertently transmitting sensitive data outside the organization. They want to implement a method to detect and prevent this from happening. Which of the following can detect outgoing, sensitive data based on specific data patterns and is the best…
Consider a physical memory with 3-page frames; using each replacement policy, determine for which memory reference a page fault can happen. For LRU: Frame Reference 1 2 1 3 2 1 4 3 1 1 2 4 1 5 6 2 1 0 1 2 Fault? Y Y N Y N N Y Y N N Y Y Y Y Y Y The total number of faults is 11. For…
Consider a 5-layer neural network with the following architecture: $n^{[0]} = 1024, n^{[1]} = 256, n^{[2]} = 128, n^{[3]} = 32, n^{[4]} = 8, n^{[5]} = 3$ Which layer should be assigned a higher dropout probability when using dropout regularization? 3 1 4 2
Using common taxonomy, name at least three types of threat agents. (Brief Response, name only)
(e) Consider the following code fragment: if (fork() == 0) { a = a + 5; printf("%d %d\n", a, &a); } else { a = a - 5; printf("%d %d\n", a, &a); } Let u, v be the values printed by the parent process, and x, y be the values printed by the child process. Which one of the following is TRUE? A. u =…
Which of the following film techniques would not be considered "chiaroscuro", or "light-dark"? A Black-and-white film noir B Sequences of emerging from a covered area towards daylight C Science fiction shots of space transposed against a planet or star D Stop-motion clay animation E A…
2. Express the Boolean function $F(X, Y, Z) = Y \cdot (X + X') \cdot (Y + Z)$ as a product of maxterms using the Boolean algebra laws.
When you set up systems and automations to prevent issues before they occur, you are implementing \_\_\_\_ ops. proactive reactive systemic display
c) Last, consider the example below that shows both the payload bits (in plain text) and the two-dimensional parity bits (in bold), and where exactly two of the payload or parity bits shown has been corrupted. In this example, odd parity is used. 01011101 $\bf{1}$01100011 10101100…
In C++, the null character is represented as _____. a. "0" b. "\0" c. '\0' d. '0'
21) The ______ refers to the memory address that used by a software to communicate with a hardware. A) I/O port B) stack C) subroutine D) A&C E) None of the above 22) As an example of I/O ports in HCS 12 are ______. A) PORTB B) PORTH C) PORTJ D) PORTP E) All the above
1. a. Design a star schema for a data warehouse for income tax and income analytics of Bangladesh. b. Perform rollup operations on your developed schema for the dimensional table time (date, day, month, year) and explain. c. Perform cube operations on your developed schema for the dimensional…
Part 3. Rely on the following sentences to elaborate a UML class diagram in order to manage the students' final projects. [7 Marks] For each relationship specify the name, multiplicity, and constraints if any. 1) Students prepare their final projects under the supervision of supervisors. 2)…
Cloud storage is separated into physical storage and logical storage. What does physical storage architecture involve? architecture decisions that must be completed before you consider the logical storage architecture designing the application schema for storing the necessary data the…
Which is a data warehouse that integrates data from databases across an entire enterprise? Enterprise structured data mart (ESDM) Enterprise active warehouse (EAW) Enterprise data warehouse (EDW) Enterprise data mart (EDM)
True or False? Once a recipient reads an email, the message resides only in the recipient's email box. O True O False
QUESTION 1 $\cdot$ 1 POINT You have 10 businesses that you are researching. 4 businesses only have an online shop option, 2 businesses are strictly store front and 4 businesses offer both an online shop and store front option. Given events A and B, are the two events mutually exclusive? Explain…
What typifies directed acyclic directory hierarchies? ORich metadata OMultiple parent directories OBlock journaling OTrim support
Which of the following is NOT true about securing a network? In a home network, the hardware firewall is established by protocols. In a network, the first layer of defense is the hardware at the access point to the network. A firewall prevents unauthorized access to a network. There are both…
Analyze the following code. public class Test { public static void main(String[] args) { int n = 2; xMethod(n); System.out.println("n is " + n); } void xMethod(int n) { n++; } } The code prints n is 3. The code prints n is 2. The code has a compile error because xMethod does not return a…
Question 20 1 pts Semantic technologies are powering another major evolution of the web, which some call Web 3.0. True False
True or False? When transmitting an email or other message, the number of relay "hops" may be only one if the sender and recipient are on the same network. True False
What hashing function is most effective to securely store credentials? Oa. SHA-256 Ob. MD5 Oc. SHA-1 Od. AES-256
Which of the following are the basic modes of the RPM command? (Choose all that apply.) Upgrade Install Delete Verify
HIPPA law deals with the security of health care information in the United States. What two types of security does HIPPA deal with? security as code security by obfuscation encryption in flight encryption at rest
What is the big O of a sequential search of an array of size 1,024? 32 512 10 1,024
Your company has a SaaS product that requires users to log in over the Internet. To secure usernames and passwords, you are making data entry on the website more secure, while also securing the data that is sent to the application. What is this an example of? security as code encryption as…
30) The goal of ______ is to reduce stress and eliminate injuries and disorders associated with the overuse of muscles, bad posture, and repeated tasks? ergonomics biometrics genomics surveillance
Question 3 For each item, identify whether the component is an offered product or acquired product from the perspective identified. ✓ A15 Bionic Processor as used in the Apple iPhone ✓ Snapdragon 845 SoC as used in the Samsung Galaxy S9 ✓ Google Tensor Processor as used in the Google Pixel 6 ✓…
AC++ compiler produces what kind of file? A C++ compiler produces what kind of file?
12) ______ is the actual speed of data transfer that is achieved between two nodes on a network and is always less than or equal to the data transfer rate. LAN speed Throughput Benchmark Broadband
Consider a 5-layer neural network with the following architecture: $n^{[0]} = 1024, n^{[1]} = 256, n^{[2]} = 128, n^{[3]} = 32, n^{[4]} = 8, n^{[5]} = 3$ Which layer should be assigned a higher dropout probability when using dropout regularization? 3 1 4 2
Question 14 of 50 When creating an architecture for an application, the best architecture decisions are about _____. adjusting business needs to meet the technology available making decisions that your cloud service provider thinks are the best for your use case making the right technology…
2. We are given four matrices with the following dimensions: Matrix A: 3×5 Matrix B: 5×2 Matrix C: 2×4 Matrix D: 4×3 Using dynamic programming, find the optimal parenthesization of the matrix product (i.e., the best way to parenthesize the product of these matrices) such that the total number…
Flash Memory Your flash memory size is 4 Tbytes. Each block contains 128 8K-byte pages. Address mapping uses a page-level address mapping. Read operation takes 50 usec and write operation takes 200 usec. (a) What's the size of address mapping table entry if we want to address using only a page…
In JavaFX, which of the following is used to select an option in a mutually exclusive manner? (in other words, you can only select one option at a time.) buttons checkboxes radio buttons spinners
The decimal numbering system contains digits _____, while the octal numbering system contains digits _____. a.) 0-9, 0-7 b.) 0-6, 0-1 c.) 0-9, 0-8 d.) 0-1, 0-7
Question 41 Which of these chemical equations describes a precipitation reaction? A CaBr$_2$(aq) + H$_2$SO$_4$(aq) → CaSO$_4$(s) + 2HBr(g) B 2KBr(aq) + Cl$_2$(g) → 2KCl(aq) + Br$_2$(l) C 2Al(s) + 3H$_2$SO$_4$(aq) → Al$_2$(SO$_4$)$_3$(aq) + 3H$_2$(g) D 2H$_2$(g) + O$_2$(g) → 2H$_2$O(l) E…
Question 2 [15 marks] a. Briefly describe how Support Vector Machines can classify linearly inseparable data points. b. Briefly describe how the k-means clustering algorithm works. c. What do the terms exploitation and exploration refer to in reinforcement learning?
What protocol is used to resolve a logical (IP) address to a physical (MAC) address? O SNMP O ARP O DNS O ICMP
3. Find all shortest paths between all pairs by using Floyd algorithm. 15 $v_1$ $v_4$ 30 5 5 50 15 5 15 $v_3$ $v_2$
Which of the following statements is correct? ☐ Integer.parseInt(100); ☐ Integer.parseInt("100"); ☐ Integer.parseInt("12", 2); ☐ Integer.parseInt("345", 8); ☐ Integer.parseInt(100, 16);
Cloud computing, in which resources, services, and applications are located remotely instead of on a local server, affects digital forensics in several ways. Which of the following is not true of cloud computing? Cloud computing makes data acquisition impossible. Criminal enterprises often…
What are the limitations of static/classic analytics? Change is not viable Backend is fixed It is inefficient It takes a lot of time to produce the analysis
import numpy as np matrix = np.array([[1, 3, 9], [7, 12, 35], [93, 2, 98]]) e = matrix[1, 2]
Which of these might you want to investigate if you can reach a web server by using its IP address but not its name? A Ο DHCP B Ο DNS C Ο ARP D Ο NTP
Let G be the graph below. The edges are labeled by integers. 1. List the edges of the spanning tree of G obtained by the breadth-first search with the vertex ordering a, b, c,..., l. (The answer should be a list of integers (edge labels). The order in the list does not matter.)…
Explain why should one perform software updates when it becomes available?
Windows uses ______ on each system as a "scratch pad" to write data when additional random access memory (RAM) is needed. an installed operating system a partition metadata a swap file
Assignment: write a class named `RollercoasterQueue` with the following attributes: - `queue_length` that holds the number of people in the queue; - `ride_seats` that holds how many people can board the ride at once; - `ride_length` that holds how long the ride lasts. The class has the…
QUESTION 11 Which CSS declaration makes the child of the paragraph blue?<p>This will be the <span>blue</span> paragraph.</p> O a. p > span { color: blue; } Ob.p~ span { color: blue; } O c. p + span { color: blue; } O d. p < span { color: blue; } CSC-1271-007-Fall 2024-Web Development and Design…
Q3-2) Show the sequence of code writing for the classes of the following diagram: ProductCatalog Store DeliverySchedule Product Inventory Supplier
In a general ______ owners share in the operation of the business and they are financially responsible for its debts. O corporation O contract O service O partnership
Question 6 4 pts Documents stored on the World Wide Web are written and linked together using Extensible Markup Language (XML) Hypertext Markup Language (HTML) computer-aided design (CAD) decision support systems (DSS)
Which of the following is not one of the three primary principles of OOP? inheritance polymorphism composition encapsulation
6.27 Coding Assignment for Module 10 6.27.1: LAB: Word frequencies (JavaScript) Write the function calcWordFrequencies() that has a single words parameter. calcWordFrequencies() is called with a string argument containing a list of words separated by spaces. The function should output those…
Counting up from 010, which of the following list the next three binary numbers? Ο 010, 100, 001, 010 Ο 010, 001, 100, 010 Ο 010, 011, 000, 001 Ο 010, 011, 100, 101
What are two examples of "soft" values of the multicloud? a simplified software architecture increased business agility the ability to use "best of breed" cloud technologies being able to hire knowledgeable talent
You should be able to answer this question after you have studied up to Chapter 4. This question tests the following learning outcomes: Understand the common general-purpose data structures, algorithmic techniques and complexity classes. Develop and apply algorithms and data structures to solve…
IV. Evaluation (10 pts) Suppose that you are working for a phone company that wants to predict churn. Churn is when customers cancel their subscriptions. Let "actual" be a binary random variable meaning that the customer actually churns, and let "flag" be a binary random variable meaning that a…
Question 2. Consider the square shown below. The left face is maintained at 100°C and the top face at 500°C, while the other faces are exposed to an environment at 100°C. By applying a numerical method known as the finite difference, the temperature at the various nodes is given from the…
Cloud storage is separated into physical storage and logical storage. What does logical storage architecture involve? determining the best location for storing your data conceptualizing the storage needed for a particular application's requirements, ideally before physical storage is…
Index the LastName field in the Participants table and allow duplicate values.
Which computer generation led to the development of the personal computer? O 2nd O 3rd O 4th O 5th
2. 첫번째로 입력 받은 수 만큼 반복하여 과일의 개수와 과일 이름을 입력 받아 구조체 포인터 배열에 저장할 것. 이후 과일 개수를 기준으로 오름차순으로 정렬한 다음 정렬된 데이터를 아래와 같이 출력하는 프로그램을 작성하여 final########_02.c 파일명으로 제출할 것 ① 정렬하는 부분(어떤 알고리즘이던지 OK, 정렬관련 내장함수 사용 금지)과 출력하는 부분은 함수로 구현 : void prn_Fruit(fruit**, int); void Sorting(fruit**, int); ② 위 함수 첫번째 매개변수는…
Which statement about bad actors that have access to your control plane is true? They can't do much harm because they don't have access to customers' personally identifiable information (PII). They have complete access to employee data, but not necessarily customer data. They can manipulate…
Input: blockSize[] = {100, 500, 200, 300, 600}; processSize[] = {212, 417, 112, 426};
S1 S0 MUX3 3 2 1 0 D3 D2 D1 D0 RD CLK MUX2 3 2 1 0 C3 C2 C1 C0 RC CLK MUX1 3 2 1 0 B3 B2 B1 B0 RB CLK MUX0 3 2 1 0 A3 A2 A1 A0 RA CLK 1/0 SEL (4) 74LS157 (2X1) 1 0 1 0 1 0 1 0 ENTRADA
The ______ standard developed by the European Telecommunications Standards Institute (ETSI) is basically a 2G network. Long Term Evolution (LTE) Universal Mobile Telecommunications System (UMTS) Global System for Mobile (GSM) communications Enhanced Data Rates for GSM Evolution (EDGE)
2. (a) Elliptic curve E: $y^2 = x^3 + 4x + 4$ (mod 2773), P = (1,3), Compute 2P.
How do artificial intelligence (AI) chatbots produce answers to questions? By selecting a correct response from a database written by human experts By recombining information from the internet based on statistical probabilities By summarizing the most recent articles on the internet By…
Consider the data path below for a single cycle 32-bits MIPS processor Assume that we are executing the following instruction ADD $s3, $s0, $s2 What is the value of the element pointed by arrow number 1 by in hexadecimal? Note that the PC and the content of registers are found in bottom left of…
Question 28 of 50 You are migrating an on-premise application to the cloud but you have not captured requirements. What is the consequence of this? There are no immediate consequences. Requirements become important only after several migrations. Your migration will be incomplete, but you can…
12. (1 point) Let's say we use the following as the MAC function: $MAC_k(m) = h(k||m)$ Devise an attack against it (assuming we are using SHA2 as the hash function).
Name: Total Points: 100 Time: 2 hours CSCI 410 Final Exam Term: Fall 2024 University of the District of Columbia Instructor: Dr. Thabet Kacem Part 1: (25 points) 1. Construct the complement FA of the following FA. (5 points) 2. Find the regular expression of the following TG using the state…
Name: Tautology 2 /20 $(\neg (P \lor Q) \land R) \leftrightarrow \neg (\neg R \lor (\neg P \to Q))$ Proof: 1) 2) 3) 4) 5) 6) 7) 8) 9) 10) 11) 12) 13) 14) 15) END OF PAGE 5
What protocol is used for transferring hypertext documents on the World Wide Web? O TCP/IP O FTP O HTTP O HTTPS
Many gas pumps have displays that spin digits (either analog or digital) while the gas is being pumped into your car's gas tank. The display's digits change to indicate the amount of gas in the tank and the current price. Write a program that displays the spinning of the digits. Your…
QUESTION 26 About the following code snippet, after the third statement is executed, the capacity of the list is ____ (Note that the count of a list is an integer). Dim lastNames As New List (Of…
Consider the following undirected graph represented as an adjacency list: 1: [2, 3], 2: [1, 4, 5], 3: [1,6], 4: [2], 5: [2,6], 6: [3,5] If the BFS is used to find the shortest path from node 1 to node 6, trace the process and calculate the length of the path. At each step, explain how the…
The ______ directory in Linux is not really stored on the hard disk. It is created in memory and keeps information about currently running processes. O /dev O /proc O /usr O /var/spool
B D A F C E If node C is observed in the above belief net, which nodes are dependent on A: $B, D, F$ on B: $D, F$ on D: $F$ on E: $F$ on F: $\sim$ If nodes C and D are observed, which nodes are dependent on A: $B$
PaaS public cloud providers are _____. public clouds that deliver applications over the Internet public clouds that provide application development, deployment, and operation as a service public clouds that deliver infrastructure services, such as computation companies that also provide…
The height of the reinforced concrete water tower given in the figure is I=100 m, the inner diameter of the circular column is 2.5 m, and the outer diameter is 3 m. The mass of the tank is m=275000 kg and it is completely filled with water. E=30 GPa. X) Calculate the natural period and natural…
In a single-cloud deployment, why is FinOps easy? There is no cloud to compare expenses to, so there is no need to formalize a FinOps program. Centralized cloud billing simplifies accounting, and the cloud provider often provides FinOps tools that can handle your needs. Rates can be negotiated…
Q2-2) Draw both the collaboration and sequence diagrams that represent a self-message. Q2-3) Draw a sequence diagram that creates an object, send two messages, and then destroy it.
1. (1 point) Consider AES with 128-bit block length and 128-bit key length. What is the output of the first round of AES if the plaintext consists of 128 ones, and the first subkey also consists of 128 ones? Hint for the MixColumn layer calculations: $01 \cdot 63 = 01100011$ $02 \cdot 63 =…
22. 4.00 g of Na3PO4 is added to a 200.0 mL solution of 150.0 mM MgBr2. How many grams of precipitate will form if the limiting reagent is completely consumed? A. 1.22 g B. 2.63 g C. 3.21 g D. 6.41 g E. 7.89…
a gis is a "set of tools for collecting, storing, retrieving
Question 3 [10 Marks]. Some people think TCP with congestion control can ensure the fairness among TCP connections, while other people believe TCP cannot ensure the fairness among end nodes. Which one do you support and why?
Perhaps Casey wasnt QUITE so mighty as he was purported to be! Here are his accumulated lifetime hitting percentages.Out 58.0%Walk 9.7%Single22.0%Double 6.1%Triple 2.5%Home Run 1.7%Based on the above percentages, write a program to simulate Casey stepping up to the plate 1000 times and…
Net neutrality is a set of rules that would require internet service providers to give _________ access to all online internet content providers: Group of answer choices equal unlimited limited free
Assemblers are programs to translate an assembly file into a specific machine language. Most of the compilers and assemblers are written in C language. Since you are familiar with MIPS encoding syntaxes, I designed the following C project: In this project, you will create a simple assembler…
What is a trend in personal computing? Group of answer choices Integrating computing into everyday objects Reducing the use of software applications Increasing use of CDs for storage Decreasing use of mobile devices
What is a role? What is a scope? How does role-based access control (RBAC) provide access to Azure resources by assigning roles at different scopes?
Windows user-mode RootKits shoot their code right into running processes' memory using techniques called ___
Given the declarations int [ ] a = new int[10]; int [ ] b; Which of the following will cause an ArrayIndexOutOfBoundsException? a. a[0] = 10; b. a[6] = 10; c. b[0] = 10; d. b = a; e. none of the above
what worked well in the user test plan on the Best Buywebsite when comparison laptops to purchase
The MapReduce model uses a two-stage process called Map and Reduce to process large datasets. Question 34Answer True False
Bank ABC's vault requires a password from the manager, an access badge from the security head, and the president’s voice authentication to open. Which types of authentication does it belong to? Single-factor authentication Multifactor authentication Two-factor authentication None of the above
in order to store information for more than 30 seconds, the information must have passed through
What is a similarity between a Trojan horse and a piece of spyware? Why? Select answer from the options below Both Trojan horses and spyware create botnets because they both report information to an outside person. Both Trojan horses and spyware are viruses because they are embedded in host…
Which of the following is not an example of multi-factor authentication? a) . using your voice-print to access your phone b). entering a password and a chip card
Describe the wumpus world according to the properties of task environments in terms of percept, agent, environment, state space, performance measure and actions.
Which architectural style enables a wide range of different presentation clients in an application? A. Client-Server B. Peer-to-peer C. Multi-lier D. Four-tier choose one, is it A, B, C, or D?
The ACL statement has the matching criteria specified as 192.168.122.128 0.0.0.63. Which two ipv4 addresses would match the criteria
How many rpm's are installed on your VM? (Hint - You may want to pipe the output of rpm to the wc command) What version of "openssl" is installed on your system? (Hint - Use the rpm command piped into the grep command and look for openssl- "somenumbers") What switch would you use to install a…
Cache Performance Comparison • Cache size: 64 KB • Cache block size: 32 bytes • Cache access time: 2 nanoseconds • Memory access time: 50 nanoseconds • The system cache is direct-mapped, and the CPU generates 32-bit memory addresses. • The cache has a hit ratio of 85%. The CPU reads 10 MB of…
Why are social cyberspaces considered small-world networks? People frequently visit the same sites as other individuals They are not considered small-world networks They are electronic extensions of human social networks They are group-centric societies
Create contacts of your classmates in Microsoft Outlook. Create a contact group with the name “CIMT College Microsoft Outlook Class,” and add your classmates as group members. Send a group email to this group with the subject “Hello Microsoft Outlook Class.” Attach a list SmartArt that lists…
When working with Schema, and your post asks what supports complex (non-normalized) data representations, what type of schema, would you tell your boss to use?
Which of the following Windows network zones is the most secure? Public Home or Work Coffee shop Domain
What is the value of using an automated blood culture system for detecting bacteremia?
In Java, code and make sure to following the program requirements: This program is a "guessing game" program. The program will generate a random integer between 1 and 10000, inclusive. The program should prompt the user to enter a guess. For each guess, the program will output ‘HIGHER’ if the…
Under which of the following circumstances might a direct deployment be a good choice ? Question 27 options: System Downtime cannot be tolerated The new system is not replacing an older system The system contains mission-critical application The system is large and complex, with relatively…
he exact value of the expression cos( \pi )/(6) - sin( \pi )/(3) is
What would be the best device to store a memory dump of a Windows 10 system with 8 GB of ram? Any of the other choices would be good enough. A USB pendrive with 16 GB formatted as NTFS. A USB pendrive with 64 GB formatted as fat 32. The internal drive as far as there are 8 GB of free space.
Which of the following Windows network zones is the most secure? Public Home or Work Coffee shop Domain
What has become of the tuition and fees deduction in 2024?
Why is a public key encryption system based on the RSA algorithm secure?
3- When transforming an E-R data model into a relational database design, the key of the parent entity should be placed as part of the primary key into the child entitya.A- when the child entity is ID-dependentb. b-when the child entity is non-ID-dependentc. c-when the child entity has a 1:1…
Bob is doing payroll this week and wants to create a spreadsheet that’ll automate the process. Each employee’s pay will be based on their pay scale (hourly, piece, salaried) and their level of production. Bob wants the spreadsheet to calculate their gross pay, Social Security withholding (6.2%…
Construct the schedule when the NPCS protocol is applied to control the access to resources. Explain the schedule step by step.
What is a simple and effective way to correlate events? different TCP destination ports different TCP source ports same alert timestamp same alert severity level same IP 5-tuple 1 point 8. Question 8
The role of the is to create working environments where women and minorities can flourish.
Question 8 [10 Marks]. Describe how traceroute finds the route from a source to a destination based on ICMP.
Consider 1kg of a brass with composition 35 wt% Zn-65 wt% Cu. Over what temperature range will the microstructure be completely in the \alpha -phase?
An organization is thinking about moving its ops to a cloud, but they don't have any cloud engineers. What do they need? Managed services skill availability SLA SOW
The effects of antidepressant drugs in the treatment of depression may be partially explained by:
Your company has a web application that makes requests to a backend API service which is behind an Elastic Load Balancer running on Amazon EC2 instances. Most of the backend API service endpoint calls finish very quickly, but one endpoint that makes calls to create objects in an external…
What are the ways Photoshop handles and manipulates original artwork in a non-destructive method? a. Text Tool by default creates a new layer b. original layer of the artwork (when opened) is locked, or c. automatically creates a new layer when pixels are copied and pasted from another file
the gravity g is 9.8 (m)/(s^(2)). what is the minimum of g for this specific value?
Answer Both Questions Q.1 a) How did companies adapt rapidly to continue their operations using information technology as an essential tool for survival and growth (10 marks) b) Education has transformed through online learning platforms and virtual classrooms. Basing on your experience…
Which of the following technologies is best for the attachment of external SATA-based drives? C. eSATA
Why is it generally not recommended to hardcode string values directly into layout XML files? Question 18Select one: a. It prevents the application from running on older Android versions b. It complicates the process of changing the UI layout c. It makes localization of the app more…
Which of the following represents the hierarchy of a warehouse? Group of answer choices Warehouse, storage section, storage type, storage bin Warehouse, storage bin, storage section, storage type Warehouse, storage type, storage section, storage bin Warehouse, storage section, storage bin,…
Write programs to evaluate the following expression. The user should enter the variables, and the program should print back an answer. Prompt the user for all variables in the expression, and print the results in a meaningful manner. x³ +(3x2-4)/2 Copy and paste your code in the box below.
what is the role of an emergency operations center in a disaster recovery plan?
Given an array of size N = 7 , perform the following operation using separate chaining . Draw the abstract representation of the array on a piece of paper. Trace all the changes. Use Multiply-Add-Divide (MAD) for compression method . The MAD method maps an integer i as…
20. If equal volumes of 0.1 M Pb(NO3)2(aq) and 0.2 M KI(aq) are mixed, what reaction, if any, occurs? The value of Ksp for PbI2 is 1.4 x 10-8
In Association Rule Mining, what does a high Lift value indicate about an association rule? Question 24Answer a. The rule occurs very infrequently. b. The rule is independent of item occurrence. c. The rule has a strong association between items. d. The rule occurs exactly as expected.
What is the keyword we use to get a specific number of records back instead of all the records?
The entire process of converting software to operate in a second language is called _______________________.
Assignment Instructions: Task Overview: Based on the information provided regarding the Yahoo 2013 data breach, along with any other additional information you can gather from reliable sources, you will need to complete the following tasks: Create an Incident Report: Using the VERIS WebApp,…
Self-defense consists of four elements: Question 3 options: a) Justification, necessity, last chance doctrine and estoppel. b) Reasonable belief, justification, retreat rule and homestead. c) Necessity; reasonable belief; nonaggressor and proportionality. d) None of the above are correct.
The major components of our 3-tier environment are the: Browser (Safari, Chrome, Firefox, etc) Web server (Apache) PHP processor used by the web server (on our system this is the Zend processor) Database (MySQL database). which can detect a PHP run-time error which can detect a…
STDOUT Select an option: 1. Check if a city exists in the map. 2. Check if a population value exists in the map. 3. Retrieve the population of a specific city. 4. Get the total number of elements in the map. 5. Exit. Enter the city name: Expected STDOUT true true 1423851 9
How does View Binding improve the safety and efficiency of interacting with UI elements in an Android application? Question 1Select one: a. By automatically syncing UI changes across different fragments b. By using reflection to find UI elements dynamically at runtime c. By generating…
Class, as a member of the team at Green Tree Healthcare working on implementing the new EHR you are tasked with providing the team with information about data and EHR integration. Identify what each of these are, how they differ and the importance of each as the team works towards joining a…
Under which of the following circumstances might a direct deployment be a good choice ? Question 27 options: System Downtime cannot be tolerated The new system is not replacing an older system The system contains mission-critical application The system is large and complex, with relatively…
Online learning takes data from online sources at once for training the models. true or false
What is the expected rerouting path in Crowds, given that each node in the middle chooses the next hop to be the final destination with probability p?
Although the neural network model was very popular during early 1990’s, many people became skeptical that this model can replace the information processing approach. Which of the following is one of the problems that the neural network model encountered? Inconsistent output when representations…
With regards to the "ACID" test, atomicity means that either all the changes desired either take effect or none of them do. Group of answer choices True False
(b)A ≤p B, and A ∈P. What can we conclude about the time complexity of B?
is considered an attack on a computer system. Question 1 options: Trojan horse Botnets Sniffers Key loggers All of the above
what will be the overall gpa for 5 courses that has 2 A's, 1 B, and 2 C's
Implement a superclass Person. Make two classes, Student and Instructor, that inherit from Person. A Person has a first name, last name, and ID number. A Student has a major and class (Freshman, Sophomore, Junior, Senior, Graduate) while an Instructor has a title (Professor, Associate…
Why is it generally recommended to use a Standard User account for day-to-day tasks?
Which bran structure is utilized in the behavioral learning system to connect the experiential learning system and the emotional learning system
Which data structure naturally preserves the order of the data added to it? Question 6 options: Queue Singly Linked List Doubly Linked List Regular Array ArrayList Stack The correct answer is not listed
One of the advantages of the neural network model is that missing information or incorrect information does not create interference in your ability to compute. This is known as which of the following? Self-correcting feedback loop Catastrophic interference Spontaneous generalization Graceful…
Construct an NFA that accepts a string with alphabet {0, 1} that ends with 001.
What does the following line of code do to the selected cell?
5.2-1. What’s a “good” path? What is the definition of a “good” path for a routing protocol? Chose the best single answer.
Which two capabilities does NGFW have that a traditional firewall does not have
(Markov Model) · Problem 4 (Random Text Generator) - Accept command-line arguments k (int) and n (int). - Initialize text to text read from standard input using sys.stdin.read(). - Create a Markov model using text and k. - Use the model to generate a random text of length n and starting with…
The first field of an ICMP packet specifies the message types
Consider a processor with a 4-stage pipeline (Fetch, Decode, Execute, Write-back). Each stage takes 10 nanoseconds to complete. Assume the following without pipelining, a single instruction takes 40 nanoseconds to complete (10 nanoseconds for each stage) • Calculate the total time to execute…
The mobile wireless revolution helped to shape the need for a distributed database management system (DDBMS) today. In what manner has the DDBMS made it more efficient and available to access data from any mobile phone?
Add the binary numbers: 10 (a) 10 + 11 (b) 1101 + 1001
The doctor ordered 900 mL of dextrose water to be infused over 2 hours by infusion pump set at a drop factor of 60. Calculate the amount of dextrose water (in mL) the patient should receive every forty dash five minutes.
Write a brief characterization (2-3 sentences) of each of the following concepts: Copernican Revolution:
What is the central focus of AI for the development of machines in business processes such as serving/delivery robots? a. Imitating human thought processes b. Creating machines with emotions c. Designing systems that exhibit rational behavior d. Developing algorithms for complex problem-solving
In terms of a fire hazard, combustible liquids like oil or gas can cause a: Question 17 options: 1) Class A fire 2) Class B fire 3) Class C fire 4) Class D fire
The last statement of the source program should be ______________ Group of answer choices Stop Return OP End
Which of the following settings within printer properties allows print device notifications to be sent to the print server? a. Enable printer pooling b. Enable bidirectional support c. Enable notifications and logs d. Allow printer notifications
Which of the following should you do immediately after a malware infection is confirmed? answer Run a deep malware scan. Boot to a Windows Pre-installation Environment (WinPE). Disable Windows System Restore. Quarantine the infected system.
What was the basis for Babbage’s calculating machine? The spirit of mechanism Automata and clocks The mechanical nature of human mental actions None are true All are true
Project: Performance Analysis of Pipelining in MIPS Architecture This project provides students with the opportunity to apply theoretical concepts practically and deepens their understanding of the challenges involved in processor design. The project description: Design a simple simulator for…
Online learning takes data from online sources at once for training the models. true or false
A data file has 100,000 records of fixed length. The blocking factor of the file is 5. We build an index on field A of the data file which is a key field of the data file. The index blocking factor is 25. Assume that we want to find a record with a specific value for field A which exists in the…
a) A factor in the delay of a store-and-forward packet-switching system is how long it takes to store and forward a packet through a switch. If switching time is (10* MAXIMUM number out of the 5 numbers of your student exam ID which is 45JSU) μ sec, is this likely to be a major factor in the…
Summing Numbers Using While Loop: Write a java program that sums integers entered by the user until the user enters 0. The program should display the total sum of the numbers. Using only While Loop
What is the main goal of software maintenance in the SDLC?
You are the IT administrator for a small corporate network. The person using the Office1 computer has called you and said that they can no longer access the network or internet. You suspect that the user has been adjusting their computer on their own.
A car battery with a 12 V emf and an internal resistance of 0.058 ohms is being charged with a current of 42 A. What are (a) the potential difference across the terminals, (b) the rate P_(r) of energy dissipation inside the battery and (c) the rate P_(emf )of energy conversion to chemical form?…
90 percent of the data that exist in the world today was created within the last two years, and by 2025, it's estimated that the global datasphere will grow to 175 zettabytes. But big data analytics is not considered to be that useful, despite the amount of data that is collected. Group of…
"Artificial intelligence stimulates human thinking and behavior, such as the ability to reason and learn. What is the ultimate goal of Al?" To build an intelligent system To build an intelligent agent To build a system that can mimic human intelligence To build a system that can mimic an expert…
Conflict checks involve both timing conflicts as well as conflict of interest. Question 2 options: a) True b) False
Translate the following MIPS assembly language into MIPS machine code, show the code in both binary and hexdecimal format. sub $t3, $t1, $t2 For full points, you need to show your work in details.
Callahan responds to the argument for voluntary active euthanasia based upon self-determination by saying what?
A polynomial is given by . Read s from input as a float. Then, compute k using the polynomial. Ex: If the input is 3.1, then the output is: 51.760 Note: can be computed using s * s.
Change is a part of the information technology (IT) world and is often feared
Which of the following strings are in the LZW dictionary upon termination of the algorithm? Options: 1. AA 2. AB 3. ABA 4. AC 5. ACA 6. BC 7. CA 8. CAA 9. CAB 10. CABA 11. CABC
Question 19 (10 points) Suppose a researcher is trying to estimate the impact of having a bachelor's degree and gender on wages and has gotten the following regression results from STATA. The correct way to write the estimated regression model…
What is the total number of bonding and nonbonding electron pairs around the central atom for a molecule having a t-shaped molecular geometry, such as BrF_(3.)
The Shuffle phase in MapReduce occurs after the Reduce function is completed. Question 35Answer True False
1. Create or Use a Text File Create or use a text file input.txt with some lines of text. Ensure it contains at least 3-4 lines. 2. Program Requirements Write a Java program that does the following: a. Read the content: Read all the lines from input.txt and display them on the console. b. Count…
Analyze the following code: int matrix[5][5]; for (int column = 0; column < 5; column++) matrix[4][column] = 10; After the loop, the last row of matrix 0, 0, 0, 0, 10. After the loop, the last row of matrix 10, 10, 10, 10, 10. After the loop, the last column of matrix 10, 10, 10, 10, 10. After…
Management is concerned that users may be inadvertently transmitting sensitive data outside the organization. They want to implement a method to detect and prevent this from happening. Which of the following can detect outgoing, sensitive data based on specific data patterns and is the best…
Consider a physical memory with 3-page frames; using each replacement policy, determine for which memory reference a page fault can happen. For LRU: Frame Reference 1 2 1 3 2 1 4 3 1 1 2 4 1 5 6 2 1 0 1 2 Fault? Y Y N Y N N Y Y N N Y Y Y Y Y Y The total number of faults is 11. For…
Consider a 5-layer neural network with the following architecture: $n^{[0]} = 1024, n^{[1]} = 256, n^{[2]} = 128, n^{[3]} = 32, n^{[4]} = 8, n^{[5]} = 3$ Which layer should be assigned a higher dropout probability when using dropout regularization? 3 1 4 2
Using common taxonomy, name at least three types of threat agents. (Brief Response, name only)
(e) Consider the following code fragment: if (fork() == 0) { a = a + 5; printf("%d %d\n", a, &a); } else { a = a - 5; printf("%d %d\n", a, &a); } Let u, v be the values printed by the parent process, and x, y be the values printed by the child process. Which one of the following is TRUE? A. u =…
Which of the following film techniques would not be considered "chiaroscuro", or "light-dark"? A Black-and-white film noir B Sequences of emerging from a covered area towards daylight C Science fiction shots of space transposed against a planet or star D Stop-motion clay animation E A…
2. Express the Boolean function $F(X, Y, Z) = Y \cdot (X + X') \cdot (Y + Z)$ as a product of maxterms using the Boolean algebra laws.
When you set up systems and automations to prevent issues before they occur, you are implementing \_\_\_\_ ops. proactive reactive systemic display
c) Last, consider the example below that shows both the payload bits (in plain text) and the two-dimensional parity bits (in bold), and where exactly two of the payload or parity bits shown has been corrupted. In this example, odd parity is used. 01011101 $\bf{1}$01100011 10101100…
In C++, the null character is represented as _____. a. "0" b. "\0" c. '\0' d. '0'
21) The ______ refers to the memory address that used by a software to communicate with a hardware. A) I/O port B) stack C) subroutine D) A&C E) None of the above 22) As an example of I/O ports in HCS 12 are ______. A) PORTB B) PORTH C) PORTJ D) PORTP E) All the above
1. a. Design a star schema for a data warehouse for income tax and income analytics of Bangladesh. b. Perform rollup operations on your developed schema for the dimensional table time (date, day, month, year) and explain. c. Perform cube operations on your developed schema for the dimensional…
Part 3. Rely on the following sentences to elaborate a UML class diagram in order to manage the students' final projects. [7 Marks] For each relationship specify the name, multiplicity, and constraints if any. 1) Students prepare their final projects under the supervision of supervisors. 2)…
Cloud storage is separated into physical storage and logical storage. What does physical storage architecture involve? architecture decisions that must be completed before you consider the logical storage architecture designing the application schema for storing the necessary data the…
Which is a data warehouse that integrates data from databases across an entire enterprise? Enterprise structured data mart (ESDM) Enterprise active warehouse (EAW) Enterprise data warehouse (EDW) Enterprise data mart (EDM)
True or False? Once a recipient reads an email, the message resides only in the recipient's email box. O True O False
QUESTION 1 $\cdot$ 1 POINT You have 10 businesses that you are researching. 4 businesses only have an online shop option, 2 businesses are strictly store front and 4 businesses offer both an online shop and store front option. Given events A and B, are the two events mutually exclusive? Explain…
What typifies directed acyclic directory hierarchies? ORich metadata OMultiple parent directories OBlock journaling OTrim support
Which of the following is NOT true about securing a network? In a home network, the hardware firewall is established by protocols. In a network, the first layer of defense is the hardware at the access point to the network. A firewall prevents unauthorized access to a network. There are both…
Analyze the following code. public class Test { public static void main(String[] args) { int n = 2; xMethod(n); System.out.println("n is " + n); } void xMethod(int n) { n++; } } The code prints n is 3. The code prints n is 2. The code has a compile error because xMethod does not return a…
Question 20 1 pts Semantic technologies are powering another major evolution of the web, which some call Web 3.0. True False
True or False? When transmitting an email or other message, the number of relay "hops" may be only one if the sender and recipient are on the same network. True False
What hashing function is most effective to securely store credentials? Oa. SHA-256 Ob. MD5 Oc. SHA-1 Od. AES-256
Which of the following are the basic modes of the RPM command? (Choose all that apply.) Upgrade Install Delete Verify
HIPPA law deals with the security of health care information in the United States. What two types of security does HIPPA deal with? security as code security by obfuscation encryption in flight encryption at rest
What is the big O of a sequential search of an array of size 1,024? 32 512 10 1,024
Your company has a SaaS product that requires users to log in over the Internet. To secure usernames and passwords, you are making data entry on the website more secure, while also securing the data that is sent to the application. What is this an example of? security as code encryption as…
30) The goal of ______ is to reduce stress and eliminate injuries and disorders associated with the overuse of muscles, bad posture, and repeated tasks? ergonomics biometrics genomics surveillance
Question 3 For each item, identify whether the component is an offered product or acquired product from the perspective identified. ✓ A15 Bionic Processor as used in the Apple iPhone ✓ Snapdragon 845 SoC as used in the Samsung Galaxy S9 ✓ Google Tensor Processor as used in the Google Pixel 6 ✓…
AC++ compiler produces what kind of file? A C++ compiler produces what kind of file?
12) ______ is the actual speed of data transfer that is achieved between two nodes on a network and is always less than or equal to the data transfer rate. LAN speed Throughput Benchmark Broadband
Consider a 5-layer neural network with the following architecture: $n^{[0]} = 1024, n^{[1]} = 256, n^{[2]} = 128, n^{[3]} = 32, n^{[4]} = 8, n^{[5]} = 3$ Which layer should be assigned a higher dropout probability when using dropout regularization? 3 1 4 2
Question 14 of 50 When creating an architecture for an application, the best architecture decisions are about _____. adjusting business needs to meet the technology available making decisions that your cloud service provider thinks are the best for your use case making the right technology…
2. We are given four matrices with the following dimensions: Matrix A: 3×5 Matrix B: 5×2 Matrix C: 2×4 Matrix D: 4×3 Using dynamic programming, find the optimal parenthesization of the matrix product (i.e., the best way to parenthesize the product of these matrices) such that the total number…
Flash Memory Your flash memory size is 4 Tbytes. Each block contains 128 8K-byte pages. Address mapping uses a page-level address mapping. Read operation takes 50 usec and write operation takes 200 usec. (a) What's the size of address mapping table entry if we want to address using only a page…
In JavaFX, which of the following is used to select an option in a mutually exclusive manner? (in other words, you can only select one option at a time.) buttons checkboxes radio buttons spinners
The decimal numbering system contains digits _____, while the octal numbering system contains digits _____. a.) 0-9, 0-7 b.) 0-6, 0-1 c.) 0-9, 0-8 d.) 0-1, 0-7
Question 41 Which of these chemical equations describes a precipitation reaction? A CaBr$_2$(aq) + H$_2$SO$_4$(aq) → CaSO$_4$(s) + 2HBr(g) B 2KBr(aq) + Cl$_2$(g) → 2KCl(aq) + Br$_2$(l) C 2Al(s) + 3H$_2$SO$_4$(aq) → Al$_2$(SO$_4$)$_3$(aq) + 3H$_2$(g) D 2H$_2$(g) + O$_2$(g) → 2H$_2$O(l) E…
Question 2 [15 marks] a. Briefly describe how Support Vector Machines can classify linearly inseparable data points. b. Briefly describe how the k-means clustering algorithm works. c. What do the terms exploitation and exploration refer to in reinforcement learning?
What protocol is used to resolve a logical (IP) address to a physical (MAC) address? O SNMP O ARP O DNS O ICMP
3. Find all shortest paths between all pairs by using Floyd algorithm. 15 $v_1$ $v_4$ 30 5 5 50 15 5 15 $v_3$ $v_2$
Which of the following statements is correct? ☐ Integer.parseInt(100); ☐ Integer.parseInt("100"); ☐ Integer.parseInt("12", 2); ☐ Integer.parseInt("345", 8); ☐ Integer.parseInt(100, 16);
Cloud computing, in which resources, services, and applications are located remotely instead of on a local server, affects digital forensics in several ways. Which of the following is not true of cloud computing? Cloud computing makes data acquisition impossible. Criminal enterprises often…
What are the limitations of static/classic analytics? Change is not viable Backend is fixed It is inefficient It takes a lot of time to produce the analysis
import numpy as np matrix = np.array([[1, 3, 9], [7, 12, 35], [93, 2, 98]]) e = matrix[1, 2]
Which of these might you want to investigate if you can reach a web server by using its IP address but not its name? A Ο DHCP B Ο DNS C Ο ARP D Ο NTP
Let G be the graph below. The edges are labeled by integers. 1. List the edges of the spanning tree of G obtained by the breadth-first search with the vertex ordering a, b, c,..., l. (The answer should be a list of integers (edge labels). The order in the list does not matter.)…
Explain why should one perform software updates when it becomes available?
Windows uses ______ on each system as a "scratch pad" to write data when additional random access memory (RAM) is needed. an installed operating system a partition metadata a swap file
Assignment: write a class named `RollercoasterQueue` with the following attributes: - `queue_length` that holds the number of people in the queue; - `ride_seats` that holds how many people can board the ride at once; - `ride_length` that holds how long the ride lasts. The class has the…
QUESTION 11 Which CSS declaration makes the child of the paragraph blue?<p>This will be the <span>blue</span> paragraph.</p> O a. p > span { color: blue; } Ob.p~ span { color: blue; } O c. p + span { color: blue; } O d. p < span { color: blue; } CSC-1271-007-Fall 2024-Web Development and Design…
Q3-2) Show the sequence of code writing for the classes of the following diagram: ProductCatalog Store DeliverySchedule Product Inventory Supplier
In a general ______ owners share in the operation of the business and they are financially responsible for its debts. O corporation O contract O service O partnership
Question 6 4 pts Documents stored on the World Wide Web are written and linked together using Extensible Markup Language (XML) Hypertext Markup Language (HTML) computer-aided design (CAD) decision support systems (DSS)
Which of the following is not one of the three primary principles of OOP? inheritance polymorphism composition encapsulation
6.27 Coding Assignment for Module 10 6.27.1: LAB: Word frequencies (JavaScript) Write the function calcWordFrequencies() that has a single words parameter. calcWordFrequencies() is called with a string argument containing a list of words separated by spaces. The function should output those…
Counting up from 010, which of the following list the next three binary numbers? Ο 010, 100, 001, 010 Ο 010, 001, 100, 010 Ο 010, 011, 000, 001 Ο 010, 011, 100, 101
What are two examples of "soft" values of the multicloud? a simplified software architecture increased business agility the ability to use "best of breed" cloud technologies being able to hire knowledgeable talent
You should be able to answer this question after you have studied up to Chapter 4. This question tests the following learning outcomes: Understand the common general-purpose data structures, algorithmic techniques and complexity classes. Develop and apply algorithms and data structures to solve…
IV. Evaluation (10 pts) Suppose that you are working for a phone company that wants to predict churn. Churn is when customers cancel their subscriptions. Let "actual" be a binary random variable meaning that the customer actually churns, and let "flag" be a binary random variable meaning that a…
Question 2. Consider the square shown below. The left face is maintained at 100°C and the top face at 500°C, while the other faces are exposed to an environment at 100°C. By applying a numerical method known as the finite difference, the temperature at the various nodes is given from the…
Cloud storage is separated into physical storage and logical storage. What does logical storage architecture involve? determining the best location for storing your data conceptualizing the storage needed for a particular application's requirements, ideally before physical storage is…
Index the LastName field in the Participants table and allow duplicate values.
Which computer generation led to the development of the personal computer? O 2nd O 3rd O 4th O 5th
2. 첫번째로 입력 받은 수 만큼 반복하여 과일의 개수와 과일 이름을 입력 받아 구조체 포인터 배열에 저장할 것. 이후 과일 개수를 기준으로 오름차순으로 정렬한 다음 정렬된 데이터를 아래와 같이 출력하는 프로그램을 작성하여 final########_02.c 파일명으로 제출할 것 ① 정렬하는 부분(어떤 알고리즘이던지 OK, 정렬관련 내장함수 사용 금지)과 출력하는 부분은 함수로 구현 : void prn_Fruit(fruit**, int); void Sorting(fruit**, int); ② 위 함수 첫번째 매개변수는…
Which statement about bad actors that have access to your control plane is true? They can't do much harm because they don't have access to customers' personally identifiable information (PII). They have complete access to employee data, but not necessarily customer data. They can manipulate…
Input: blockSize[] = {100, 500, 200, 300, 600}; processSize[] = {212, 417, 112, 426};
S1 S0 MUX3 3 2 1 0 D3 D2 D1 D0 RD CLK MUX2 3 2 1 0 C3 C2 C1 C0 RC CLK MUX1 3 2 1 0 B3 B2 B1 B0 RB CLK MUX0 3 2 1 0 A3 A2 A1 A0 RA CLK 1/0 SEL (4) 74LS157 (2X1) 1 0 1 0 1 0 1 0 ENTRADA
The ______ standard developed by the European Telecommunications Standards Institute (ETSI) is basically a 2G network. Long Term Evolution (LTE) Universal Mobile Telecommunications System (UMTS) Global System for Mobile (GSM) communications Enhanced Data Rates for GSM Evolution (EDGE)
2. (a) Elliptic curve E: $y^2 = x^3 + 4x + 4$ (mod 2773), P = (1,3), Compute 2P.
How do artificial intelligence (AI) chatbots produce answers to questions? By selecting a correct response from a database written by human experts By recombining information from the internet based on statistical probabilities By summarizing the most recent articles on the internet By…
Consider the data path below for a single cycle 32-bits MIPS processor Assume that we are executing the following instruction ADD $s3, $s0, $s2 What is the value of the element pointed by arrow number 1 by in hexadecimal? Note that the PC and the content of registers are found in bottom left of…
Question 28 of 50 You are migrating an on-premise application to the cloud but you have not captured requirements. What is the consequence of this? There are no immediate consequences. Requirements become important only after several migrations. Your migration will be incomplete, but you can…
12. (1 point) Let's say we use the following as the MAC function: $MAC_k(m) = h(k||m)$ Devise an attack against it (assuming we are using SHA2 as the hash function).
Name: Total Points: 100 Time: 2 hours CSCI 410 Final Exam Term: Fall 2024 University of the District of Columbia Instructor: Dr. Thabet Kacem Part 1: (25 points) 1. Construct the complement FA of the following FA. (5 points) 2. Find the regular expression of the following TG using the state…
Name: Tautology 2 /20 $(\neg (P \lor Q) \land R) \leftrightarrow \neg (\neg R \lor (\neg P \to Q))$ Proof: 1) 2) 3) 4) 5) 6) 7) 8) 9) 10) 11) 12) 13) 14) 15) END OF PAGE 5
What protocol is used for transferring hypertext documents on the World Wide Web? O TCP/IP O FTP O HTTP O HTTPS
Many gas pumps have displays that spin digits (either analog or digital) while the gas is being pumped into your car's gas tank. The display's digits change to indicate the amount of gas in the tank and the current price. Write a program that displays the spinning of the digits. Your…
QUESTION 26 About the following code snippet, after the third statement is executed, the capacity of the list is ____ (Note that the count of a list is an integer). Dim lastNames As New List (Of…
Consider the following undirected graph represented as an adjacency list: 1: [2, 3], 2: [1, 4, 5], 3: [1,6], 4: [2], 5: [2,6], 6: [3,5] If the BFS is used to find the shortest path from node 1 to node 6, trace the process and calculate the length of the path. At each step, explain how the…
The ______ directory in Linux is not really stored on the hard disk. It is created in memory and keeps information about currently running processes. O /dev O /proc O /usr O /var/spool
B D A F C E If node C is observed in the above belief net, which nodes are dependent on A: $B, D, F$ on B: $D, F$ on D: $F$ on E: $F$ on F: $\sim$ If nodes C and D are observed, which nodes are dependent on A: $B$
PaaS public cloud providers are _____. public clouds that deliver applications over the Internet public clouds that provide application development, deployment, and operation as a service public clouds that deliver infrastructure services, such as computation companies that also provide…
The height of the reinforced concrete water tower given in the figure is I=100 m, the inner diameter of the circular column is 2.5 m, and the outer diameter is 3 m. The mass of the tank is m=275000 kg and it is completely filled with water. E=30 GPa. X) Calculate the natural period and natural…
In a single-cloud deployment, why is FinOps easy? There is no cloud to compare expenses to, so there is no need to formalize a FinOps program. Centralized cloud billing simplifies accounting, and the cloud provider often provides FinOps tools that can handle your needs. Rates can be negotiated…
Q2-2) Draw both the collaboration and sequence diagrams that represent a self-message. Q2-3) Draw a sequence diagram that creates an object, send two messages, and then destroy it.
1. (1 point) Consider AES with 128-bit block length and 128-bit key length. What is the output of the first round of AES if the plaintext consists of 128 ones, and the first subkey also consists of 128 ones? Hint for the MixColumn layer calculations: $01 \cdot 63 = 01100011$ $02 \cdot 63 =…
22. 4.00 g of Na3PO4 is added to a 200.0 mL solution of 150.0 mM MgBr2. How many grams of precipitate will form if the limiting reagent is completely consumed? A. 1.22 g B. 2.63 g C. 3.21 g D. 6.41 g E. 7.89…
a gis is a "set of tools for collecting, storing, retrieving
Question 3 [10 Marks]. Some people think TCP with congestion control can ensure the fairness among TCP connections, while other people believe TCP cannot ensure the fairness among end nodes. Which one do you support and why?
Perhaps Casey wasnt QUITE so mighty as he was purported to be! Here are his accumulated lifetime hitting percentages.Out 58.0%Walk 9.7%Single22.0%Double 6.1%Triple 2.5%Home Run 1.7%Based on the above percentages, write a program to simulate Casey stepping up to the plate 1000 times and…
Net neutrality is a set of rules that would require internet service providers to give _________ access to all online internet content providers: Group of answer choices equal unlimited limited free
Assemblers are programs to translate an assembly file into a specific machine language. Most of the compilers and assemblers are written in C language. Since you are familiar with MIPS encoding syntaxes, I designed the following C project: In this project, you will create a simple assembler…
What is a trend in personal computing? Group of answer choices Integrating computing into everyday objects Reducing the use of software applications Increasing use of CDs for storage Decreasing use of mobile devices
What is a role? What is a scope? How does role-based access control (RBAC) provide access to Azure resources by assigning roles at different scopes?
Windows user-mode RootKits shoot their code right into running processes' memory using techniques called ___
Given the declarations int [ ] a = new int[10]; int [ ] b; Which of the following will cause an ArrayIndexOutOfBoundsException? a. a[0] = 10; b. a[6] = 10; c. b[0] = 10; d. b = a; e. none of the above
what worked well in the user test plan on the Best Buywebsite when comparison laptops to purchase
The MapReduce model uses a two-stage process called Map and Reduce to process large datasets. Question 34Answer True False
Bank ABC's vault requires a password from the manager, an access badge from the security head, and the president’s voice authentication to open. Which types of authentication does it belong to? Single-factor authentication Multifactor authentication Two-factor authentication None of the above
in order to store information for more than 30 seconds, the information must have passed through
What is a similarity between a Trojan horse and a piece of spyware? Why? Select answer from the options below Both Trojan horses and spyware create botnets because they both report information to an outside person. Both Trojan horses and spyware are viruses because they are embedded in host…
Which of the following is not an example of multi-factor authentication? a) . using your voice-print to access your phone b). entering a password and a chip card
Describe the wumpus world according to the properties of task environments in terms of percept, agent, environment, state space, performance measure and actions.
Which architectural style enables a wide range of different presentation clients in an application? A. Client-Server B. Peer-to-peer C. Multi-lier D. Four-tier choose one, is it A, B, C, or D?
The ACL statement has the matching criteria specified as 192.168.122.128 0.0.0.63. Which two ipv4 addresses would match the criteria
How many rpm's are installed on your VM? (Hint - You may want to pipe the output of rpm to the wc command) What version of "openssl" is installed on your system? (Hint - Use the rpm command piped into the grep command and look for openssl- "somenumbers") What switch would you use to install a…
Cache Performance Comparison • Cache size: 64 KB • Cache block size: 32 bytes • Cache access time: 2 nanoseconds • Memory access time: 50 nanoseconds • The system cache is direct-mapped, and the CPU generates 32-bit memory addresses. • The cache has a hit ratio of 85%. The CPU reads 10 MB of…
Why are social cyberspaces considered small-world networks? People frequently visit the same sites as other individuals They are not considered small-world networks They are electronic extensions of human social networks They are group-centric societies
Create contacts of your classmates in Microsoft Outlook. Create a contact group with the name “CIMT College Microsoft Outlook Class,” and add your classmates as group members. Send a group email to this group with the subject “Hello Microsoft Outlook Class.” Attach a list SmartArt that lists…
When working with Schema, and your post asks what supports complex (non-normalized) data representations, what type of schema, would you tell your boss to use?
Which of the following Windows network zones is the most secure? Public Home or Work Coffee shop Domain
What is the value of using an automated blood culture system for detecting bacteremia?
In Java, code and make sure to following the program requirements: This program is a "guessing game" program. The program will generate a random integer between 1 and 10000, inclusive. The program should prompt the user to enter a guess. For each guess, the program will output ‘HIGHER’ if the…
Under which of the following circumstances might a direct deployment be a good choice ? Question 27 options: System Downtime cannot be tolerated The new system is not replacing an older system The system contains mission-critical application The system is large and complex, with relatively…
he exact value of the expression cos( \pi )/(6) - sin( \pi )/(3) is
What would be the best device to store a memory dump of a Windows 10 system with 8 GB of ram? Any of the other choices would be good enough. A USB pendrive with 16 GB formatted as NTFS. A USB pendrive with 64 GB formatted as fat 32. The internal drive as far as there are 8 GB of free space.
Which of the following Windows network zones is the most secure? Public Home or Work Coffee shop Domain
What has become of the tuition and fees deduction in 2024?
Why is a public key encryption system based on the RSA algorithm secure?
3- When transforming an E-R data model into a relational database design, the key of the parent entity should be placed as part of the primary key into the child entitya.A- when the child entity is ID-dependentb. b-when the child entity is non-ID-dependentc. c-when the child entity has a 1:1…
Bob is doing payroll this week and wants to create a spreadsheet that’ll automate the process. Each employee’s pay will be based on their pay scale (hourly, piece, salaried) and their level of production. Bob wants the spreadsheet to calculate their gross pay, Social Security withholding (6.2%…
Construct the schedule when the NPCS protocol is applied to control the access to resources. Explain the schedule step by step.
What is a simple and effective way to correlate events? different TCP destination ports different TCP source ports same alert timestamp same alert severity level same IP 5-tuple 1 point 8. Question 8
The role of the is to create working environments where women and minorities can flourish.
Question 8 [10 Marks]. Describe how traceroute finds the route from a source to a destination based on ICMP.
Consider 1kg of a brass with composition 35 wt% Zn-65 wt% Cu. Over what temperature range will the microstructure be completely in the \alpha -phase?
An organization is thinking about moving its ops to a cloud, but they don't have any cloud engineers. What do they need? Managed services skill availability SLA SOW
The effects of antidepressant drugs in the treatment of depression may be partially explained by:
Your company has a web application that makes requests to a backend API service which is behind an Elastic Load Balancer running on Amazon EC2 instances. Most of the backend API service endpoint calls finish very quickly, but one endpoint that makes calls to create objects in an external…
What are the ways Photoshop handles and manipulates original artwork in a non-destructive method? a. Text Tool by default creates a new layer b. original layer of the artwork (when opened) is locked, or c. automatically creates a new layer when pixels are copied and pasted from another file
the gravity g is 9.8 (m)/(s^(2)). what is the minimum of g for this specific value?
Answer Both Questions Q.1 a) How did companies adapt rapidly to continue their operations using information technology as an essential tool for survival and growth (10 marks) b) Education has transformed through online learning platforms and virtual classrooms. Basing on your experience…
Which of the following technologies is best for the attachment of external SATA-based drives? C. eSATA
Why is it generally not recommended to hardcode string values directly into layout XML files? Question 18Select one: a. It prevents the application from running on older Android versions b. It complicates the process of changing the UI layout c. It makes localization of the app more…
Which of the following represents the hierarchy of a warehouse? Group of answer choices Warehouse, storage section, storage type, storage bin Warehouse, storage bin, storage section, storage type Warehouse, storage type, storage section, storage bin Warehouse, storage section, storage bin,…
Write programs to evaluate the following expression. The user should enter the variables, and the program should print back an answer. Prompt the user for all variables in the expression, and print the results in a meaningful manner. x³ +(3x2-4)/2 Copy and paste your code in the box below.
what is the role of an emergency operations center in a disaster recovery plan?
Given an array of size N = 7 , perform the following operation using separate chaining . Draw the abstract representation of the array on a piece of paper. Trace all the changes. Use Multiply-Add-Divide (MAD) for compression method . The MAD method maps an integer i as…
20. If equal volumes of 0.1 M Pb(NO3)2(aq) and 0.2 M KI(aq) are mixed, what reaction, if any, occurs? The value of Ksp for PbI2 is 1.4 x 10-8
In Association Rule Mining, what does a high Lift value indicate about an association rule? Question 24Answer a. The rule occurs very infrequently. b. The rule is independent of item occurrence. c. The rule has a strong association between items. d. The rule occurs exactly as expected.
What is the keyword we use to get a specific number of records back instead of all the records?
The entire process of converting software to operate in a second language is called _______________________.
Assignment Instructions: Task Overview: Based on the information provided regarding the Yahoo 2013 data breach, along with any other additional information you can gather from reliable sources, you will need to complete the following tasks: Create an Incident Report: Using the VERIS WebApp,…
Self-defense consists of four elements: Question 3 options: a) Justification, necessity, last chance doctrine and estoppel. b) Reasonable belief, justification, retreat rule and homestead. c) Necessity; reasonable belief; nonaggressor and proportionality. d) None of the above are correct.
The major components of our 3-tier environment are the: Browser (Safari, Chrome, Firefox, etc) Web server (Apache) PHP processor used by the web server (on our system this is the Zend processor) Database (MySQL database). which can detect a PHP run-time error which can detect a…
STDOUT Select an option: 1. Check if a city exists in the map. 2. Check if a population value exists in the map. 3. Retrieve the population of a specific city. 4. Get the total number of elements in the map. 5. Exit. Enter the city name: Expected STDOUT true true 1423851 9
How does View Binding improve the safety and efficiency of interacting with UI elements in an Android application? Question 1Select one: a. By automatically syncing UI changes across different fragments b. By using reflection to find UI elements dynamically at runtime c. By generating…
Class, as a member of the team at Green Tree Healthcare working on implementing the new EHR you are tasked with providing the team with information about data and EHR integration. Identify what each of these are, how they differ and the importance of each as the team works towards joining a…
Under which of the following circumstances might a direct deployment be a good choice ? Question 27 options: System Downtime cannot be tolerated The new system is not replacing an older system The system contains mission-critical application The system is large and complex, with relatively…
Online learning takes data from online sources at once for training the models. true or false
What is the expected rerouting path in Crowds, given that each node in the middle chooses the next hop to be the final destination with probability p?
Although the neural network model was very popular during early 1990’s, many people became skeptical that this model can replace the information processing approach. Which of the following is one of the problems that the neural network model encountered? Inconsistent output when representations…
With regards to the "ACID" test, atomicity means that either all the changes desired either take effect or none of them do. Group of answer choices True False
(b)A ≤p B, and A ∈P. What can we conclude about the time complexity of B?
is considered an attack on a computer system. Question 1 options: Trojan horse Botnets Sniffers Key loggers All of the above
what will be the overall gpa for 5 courses that has 2 A's, 1 B, and 2 C's
Implement a superclass Person. Make two classes, Student and Instructor, that inherit from Person. A Person has a first name, last name, and ID number. A Student has a major and class (Freshman, Sophomore, Junior, Senior, Graduate) while an Instructor has a title (Professor, Associate…
Why is it generally recommended to use a Standard User account for day-to-day tasks?
Which bran structure is utilized in the behavioral learning system to connect the experiential learning system and the emotional learning system
Which data structure naturally preserves the order of the data added to it? Question 6 options: Queue Singly Linked List Doubly Linked List Regular Array ArrayList Stack The correct answer is not listed
One of the advantages of the neural network model is that missing information or incorrect information does not create interference in your ability to compute. This is known as which of the following? Self-correcting feedback loop Catastrophic interference Spontaneous generalization Graceful…
Construct an NFA that accepts a string with alphabet {0, 1} that ends with 001.
What does the following line of code do to the selected cell?
5.2-1. What’s a “good” path? What is the definition of a “good” path for a routing protocol? Chose the best single answer.
Which two capabilities does NGFW have that a traditional firewall does not have
(Markov Model) · Problem 4 (Random Text Generator) - Accept command-line arguments k (int) and n (int). - Initialize text to text read from standard input using sys.stdin.read(). - Create a Markov model using text and k. - Use the model to generate a random text of length n and starting with…
The first field of an ICMP packet specifies the message types
Consider a processor with a 4-stage pipeline (Fetch, Decode, Execute, Write-back). Each stage takes 10 nanoseconds to complete. Assume the following without pipelining, a single instruction takes 40 nanoseconds to complete (10 nanoseconds for each stage) • Calculate the total time to execute…
The mobile wireless revolution helped to shape the need for a distributed database management system (DDBMS) today. In what manner has the DDBMS made it more efficient and available to access data from any mobile phone?
Add the binary numbers: 10 (a) 10 + 11 (b) 1101 + 1001
The doctor ordered 900 mL of dextrose water to be infused over 2 hours by infusion pump set at a drop factor of 60. Calculate the amount of dextrose water (in mL) the patient should receive every forty dash five minutes.
Write a brief characterization (2-3 sentences) of each of the following concepts: Copernican Revolution:
What is the central focus of AI for the development of machines in business processes such as serving/delivery robots? a. Imitating human thought processes b. Creating machines with emotions c. Designing systems that exhibit rational behavior d. Developing algorithms for complex problem-solving
In terms of a fire hazard, combustible liquids like oil or gas can cause a: Question 17 options: 1) Class A fire 2) Class B fire 3) Class C fire 4) Class D fire
The last statement of the source program should be ______________ Group of answer choices Stop Return OP End
Which of the following settings within printer properties allows print device notifications to be sent to the print server? a. Enable printer pooling b. Enable bidirectional support c. Enable notifications and logs d. Allow printer notifications
Which of the following should you do immediately after a malware infection is confirmed? answer Run a deep malware scan. Boot to a Windows Pre-installation Environment (WinPE). Disable Windows System Restore. Quarantine the infected system.
What was the basis for Babbage’s calculating machine? The spirit of mechanism Automata and clocks The mechanical nature of human mental actions None are true All are true
Project: Performance Analysis of Pipelining in MIPS Architecture This project provides students with the opportunity to apply theoretical concepts practically and deepens their understanding of the challenges involved in processor design. The project description: Design a simple simulator for…
Online learning takes data from online sources at once for training the models. true or false
A data file has 100,000 records of fixed length. The blocking factor of the file is 5. We build an index on field A of the data file which is a key field of the data file. The index blocking factor is 25. Assume that we want to find a record with a specific value for field A which exists in the…
a) A factor in the delay of a store-and-forward packet-switching system is how long it takes to store and forward a packet through a switch. If switching time is (10* MAXIMUM number out of the 5 numbers of your student exam ID which is 45JSU) μ sec, is this likely to be a major factor in the…
Summing Numbers Using While Loop: Write a java program that sums integers entered by the user until the user enters 0. The program should display the total sum of the numbers. Using only While Loop
What is the main goal of software maintenance in the SDLC?
You are the IT administrator for a small corporate network. The person using the Office1 computer has called you and said that they can no longer access the network or internet. You suspect that the user has been adjusting their computer on their own.
A car battery with a 12 V emf and an internal resistance of 0.058 ohms is being charged with a current of 42 A. What are (a) the potential difference across the terminals, (b) the rate P_(r) of energy dissipation inside the battery and (c) the rate P_(emf )of energy conversion to chemical form?…
90 percent of the data that exist in the world today was created within the last two years, and by 2025, it's estimated that the global datasphere will grow to 175 zettabytes. But big data analytics is not considered to be that useful, despite the amount of data that is collected. Group of…
"Artificial intelligence stimulates human thinking and behavior, such as the ability to reason and learn. What is the ultimate goal of Al?" To build an intelligent system To build an intelligent agent To build a system that can mimic human intelligence To build a system that can mimic an expert…
Conflict checks involve both timing conflicts as well as conflict of interest. Question 2 options: a) True b) False
Translate the following MIPS assembly language into MIPS machine code, show the code in both binary and hexdecimal format. sub $t3, $t1, $t2 For full points, you need to show your work in details.
Callahan responds to the argument for voluntary active euthanasia based upon self-determination by saying what?
A polynomial is given by . Read s from input as a float. Then, compute k using the polynomial. Ex: If the input is 3.1, then the output is: 51.760 Note: can be computed using s * s.
Change is a part of the information technology (IT) world and is often feared
Which of the following strings are in the LZW dictionary upon termination of the algorithm? Options: 1. AA 2. AB 3. ABA 4. AC 5. ACA 6. BC 7. CA 8. CAA 9. CAB 10. CABA 11. CABC
Question 19 (10 points) Suppose a researcher is trying to estimate the impact of having a bachelor's degree and gender on wages and has gotten the following regression results from STATA. The correct way to write the estimated regression model…
What is the total number of bonding and nonbonding electron pairs around the central atom for a molecule having a t-shaped molecular geometry, such as BrF_(3.)
The Shuffle phase in MapReduce occurs after the Reduce function is completed. Question 35Answer True False
1 2 3 4 5 ... 6