Home
Ask directory
AP CS
February 2025
6
AP CS
Q&A Archive of
February 6, 2025
Select Question
February 6 of 2025
Which of the following IP address ranges is reserved for Automatic Private IP Addressing (APIPA)? answer 169.192.0.0 - 169.192.254.255 169.254.1.1 - 169.254.254.254 169.168.0.1 - 169.168.255.255 192.168.0.0 - 192.168.255.254
Variable myPassword is assigned with a string read from input. A for loop iterates through the characters of myPassword. For each numeric digit, increment digitCount. Ex: If the input is 3d4721, then the output is: Valid count: 5
If thorough and consistent data backup and storage methods have been followed, which of the following efforts should be minimal? Group of answer choices Data reintegration Software maintenance Data recovery Impact analysis
How are numeric characters represented in ASCII? They start with the binary digits 0011 0000 They start with the binary digits 0100 0000 They start with the binary digits 0000 0000 They start with the binary digits 0110 0000
The efficiency of an Ethernet is the ratio of the number of packets transmitted successfully as a proportion of the theoretical maximum number that could be transmitted without collisions. Question 1 options: True False
Question Mode Multiple Choice Question In order to maintain accreditation, an organization must undergo an on-site survey at what frequency? Multiple choice question. Yearly Every 5 years At least every 39 months Every 2 years
1) Language is A) the only way we can communicate with each other. B) the code we use to communicate with each other. C) the expression of thought through gesture. D) the dictionary meaning of words.
What variables would be most useful to have default arguments for? Give an example of a built-in Python function that uses default arguments. Describe what the function does and what purpose the default arguments serve.
15. A is 3 by 5, B is 5 by 3, C is 5 by 1, and D is 3 by 1. All entries are 1. Which of the following matrix operations are allowed, and what are the results: (a) BA (b) AB (c) ABD (d) DBA (e) A(B + C)
The key was revoked before it expired. Exam takes the revoked key out of the revocation state and reactivate it to extract and decrypt old messages from an email archival system. What is this type of key reactivation called?
Given the following section of code, what is the time complexity in Big O Notation: (2 points)int i, j, k = 0;for (i = n / 2; i <= n; i++) {for (j = 2; j <= n; j = j * 2) {k = k + n / 2; }}a. O(2n)b. O(n log n)
Integer cupsRequested is read from input representing the number of cups. Output: "Medium carton", if there are 60 - 70 cups inclusive. "Large carton", if there are 130 - 150 cups inclusive. End each output with a newline.
Consider binary classification with Y = {−1, 1} with the loss function ℓ(−1, −1) = ℓ(1, 1) = 0 and ℓ(−1, 1) = c− > 0 (cost of a false positive), ℓ(1, −1) = c+ > 0 (cost of a false negative). Compue
In the coaxial pattern, where would you expect there to be no voltage? Group of answer choices In both the inner circle and beyond the outer circle Between the two circles Outside the outer circle inside the inner circle
The 24% tax bracket applies to salary_num in the range 43000 - 85000 inclusive. Write an if statement that outputs 'Different tax bracket' if the input salary_num is not in this range. Otherwise, output '24% tax bracket'.
Which of the following is a key feature of a web application? It runs on a local machine without internet access It is accessible via a web browser It is only installed on a user's device It cannot interact with databases
Summarize the Salt typhoon Cyberattack and identify the category that best describes what viruses or malicious code was involved. If you were a hacker, would you choose to infect with a virus or malicious code, and why?
If you owned a small/medium sized business; would you belong to your local Chamber of Commerce and would you be active and think it would be important to get involved or just joining would be enough?
Prove that T(n) = 2T(⌊(n/2)⌋ + 9) + n = O(nlgn) using the substitution method. Find constants c and n0. Start with an initial guess of T(n) <= c(n-d)lg(n-d), where d is a lower order term
Create a correlation matrix for the relations between calories, total_(f)at, sugar, and calcium for all items at Sonic, Subway, and Taco Bell, omitting missing values with `na.omit()`. - Assign the matrix to Q1.
Assume that values and ptr are defined as follows: int values[4] = {15, 88, 75, 99}; int *ptr; ptr = values; Which statements will display the contents of the last element of the values array? [Check all that apply]
give asymptotic upper and lower bounds for T (n) = 4T (n/4) + n2, assuming T (n) is constant for sufficiently small n. Make your bounds as tight as possible. Prove that your bounds are correct
Another model for a growth function for a limited population is given by the Gompertz function, which is a solution to the differential equation (dP)/(dt)= cln((k)/(P))P
Write code that iterates while userNum is less than 12. Each iteration: Put userNum to output. Then, put "/" to output. Then, assign userNum with userNum multiplied by 3. Ex: If input is 1, then output is: 1/3/9/
Which of the following are specific threats mentioned in the NIST standard to a Zero Trust Architecture? 1. Use of non-person entities (NPE) in ZTA 2. Phishing 3. Increased levels of spam-like traffic 4. Loss of control
In 2010, there were 235.4 million cell phone subscribers in the United States. By 2020, the number of subscribers increased to 279.9 million. What is the geometric mean annual percent increase for the period?
Which expression for YYY correctly outputs "x is between 50-100"? Group of answer choices (x >= 50) || (x <= 100) 50 >= x <= 100 50 <= x <= 100 (x >= 50) && (x <= 100)
Select all that apply Which of the following is a topological ordering for the following DAG? Group of answer choices 9,1,2,3,6,4,5,7,8 9,1,6,2,3,4,7,5,8 4, 2, 5, 6, 7, 8, 1, 9, 3 1, 9, 4, 2, 6, 5, 7, 3, 8
Joni develops an app to encrypt short messages. He runs the encryption program, but it is designed to deliberately introduce a 5 to 15 second delay before encryption begins. What type of data is Johnny about to encrypt
A portfolio's value increases by 20% during a financial boom and by 6% during normal times. It decreases by 11% during a recession. What is the expected return on this portfolio if each scenario is equally likely?
In some cases, neither of the two equations in the system will contain a variable with a coefficient of 1, so we must take a further step to isolate it. Let's say we now have 3C+4D=53C+4D=5 2C+5D=2
Which of the following is TRUE? Question 3 options: static variables get relative address non static variables get absolute address non static variables get relative address static variables get absolute address
A hacktivist is angry with the carbon footprint of a company that works with fossil fuels. Which type of attack would the hacktivist most likely perform against the company to overwhelm its network?
Write a query that returns the artist (or several artists) with the highest count of different countries with customers for their music. Your query should return artist.name and the count of countries.
In Windows Server 2016, a ___________ is a point-in-time capture of the state of a VM, which gives you the ability to revert the VM to an earlier state. Group of answer choices checkpoint checkoff snapshot snapchat
Which action is part of configuring virtual networking in Hyper-V? Question 8 options: Enabling Hyper-V Running Hyper-V Manager Choosing the type of network (external, internal, or private) Starting the virtual machine
Which of the following increases total production? Question 6 options: a) Reducing the amount of input used. b) Increasing the amount of input used. c) Keeping input constant while changing technology.
Write a 2-3 page paper that discusses your experience with it. What are your thoughts on the future with tools like this getting better. Try to leverage 2 resources when writing your paper.
What do I need to change in the code for it to calculate the correct maximal points? The first image is what I need the code to make, but the code given in the answer is making the third image instead.
Required information Skip to question Consider the following function: f(x)=2x+3xfx=2x+3x The result of the parabolic interpolation converges very slowly on the true value of f(x). Group startsTrue or False
Find a regular expression for each of the following languages over = {a; b}. (a) The set of strings that do not contain the substring bbb (b) {w > w has both ab and ba as substrings}:
Which of the following set of instructions can set (to '1') bits 3 and reset (to '0') bits 4 of register R1 without changing its other bits? Correct! ORR R1,R1,#0x0008 ; AND R1,R1,#0xFFFF FFEF;
suppose thqt s.a is stored at memory address 0, s.b is stored at memory address 1, s.c is stored at memory address 16 and s.d is stored at memory address 24, what could be the type of struct member a?
In the Contestant class, complete the public method definition for setHeight() with the double parameter customHeight. Ex: If the input is Haru 6.5, then the output is: Name: Haru Height: 6.5
Double massGrams is read from input representing a mass in grams. If the mass is lighter than 35.5 grams or heavier than 60.5 grams, output "Reject". Otherwise, output "Accept". End each output with a newline
You observe the following 5 data points: 3 3 7 10 12. Using uniform kernel smoothing with a bandwidth of 4, what is the median of the smoothed distribution?
Which term refers to the design and operation of elements to ensure the proper functional environment of a system? A. layered security B. configuration management C. diversity of defense D. session management
A discrete memoryless source produces {𝐴, 𝐵, 𝐶}, the corresponding output probabilities are {0.5,0.25,0.25}. Use arithmetic algorithm to encode the string “𝐵𝐴𝐴𝐴”.
Which of the following terms describes a global system of interconnected hypertext documents and files that can be accessed through a browser? answer World Wide Web Wide Area Network Intranet Internet
What should you do before you turn on a laptop for the first time? Question 17 options: Plug the laptop into a power outlet. Call the manufacturer for instructions. Fully charge the battery. Remove the battery.
The Active Directory Forest or Domain mode you choose is based on the _____ server operating system version on any domain controller in your forest or domain respectively. Question 6Select one: a. newest b. oldest
What is the primary goal of requirements engineering? To design the system architecture To implement the system To gather and define the functionalities and constraints of a software system To test the software
Without using a Python interpreter, what is the precise output from the following code? bar = 13 foo = 23 - 45 // 10 foo += 6 bar = foo % bar print (foo * 2) print (foo + bar) print (foo, bar)
Hassana enters information on a compromise website, which does a poor job sanitizing the input. As a result, the Web server sounds back a response that affects your system. What type of attack is this?
In the Yoruba World what is the name given to the spirts of ancestors / identified as departed but not deceased - can be contacted for support and guidance Group of answer choices ARA ORUN OSOOSI EYNILE AYE
There are tools that can be used to calculate a contrast ratio between two colors in an effort to help designers choose text and background colors that are easy on the eye. Group of answer choices True False
Zero Trust assumes? 1. none of the above 2. that all users are automatically trustworthy 3. that all devices on the network are authenticated by default 4. that there is no traditional network edge
A polynomial is given by h=9.0c2+3.0c+7.0. Read c from input as a float. Then, compute h using the polynomial. Ex: If the input is 3.7, then the output is: 141.310 Note: c2 can be computed using c * c.
Which of the following bit patterns (represented in hexadecimal notation) represents a positive number in two's complement notation? Question 10 options: A8 F7 8A 7F
If you calculate stress and the leading significant digit is a ''2'' through ''9'', the convention of this book, and most engineering applications, is to report the answer with _()_(_())_( s)ignificant digits.
Let F be a secure PRF with λ-bit outputs, and let G be a PRG with stretch 4. Define F j(k, r ) = G(F (k, r )). So F jhas outputs of length λ + 4. Prove that F jis a secure PRF
Axel, whose username is axelp99, is not able to log into a legacy system running an older application in the mycompany domain using his UPN. What username will allow him to sign in successfully?
A large water tank is filled to a depth of 19.3 m. A leak develops in the side of the tank and water shoots out at a speed of 8.5( m)/(s). At what height h above the bottom is the leak?
The mouse pointer will turn into a black plus sign when it is dragged over the: Fill Handle. edge of a highlighted range of cells. the lower left corner of any activated cell. Formula Bar. Status Bar.
Construct a query algorithm that produces an incremental number of changes in real time. The Python code will require the use of a streaming library of your choosing.
Which of the following Group Policy Security Option setting categories is designed to require a smart card as an additional security measure? answer Interactive logon Accounts Devices Network security
2. If centrifugation of a cell suspension at a rotation speed of 1,500 rpm takes 3 min, how much time will be required to reach the same sedimentation distance at a rotation speed of 500 rpm?
Which four 32-bit general purpose registers of the x86 Processor have overlapping 16-bit and 8-bit registers. Give the names of the 16-bit and 8-bit components for each 32-bit register.
Recreate your procCategories stored procedure so that the stored procedure will return all Categories or only specific Categories an input parameter for categoryName. * use the same columns.
A and B are two points on a sphere of radius R specified by their longitude and latitude. Specify the algorithm to compute the shortest distance between A and B traveling on the sphere.
A user retrieves, the 2/2 of a key from two different parties and combines them to create a copy of the key. Which of the following terms best describes the process being used to manage the keys?
Multiply each element in origList with the corresponding value in offsetAmount. Print each product followed by a space. Ex: If the input is: 4 5 10 12 2 4 7 3 then output is: 8 20 70 36
At t =0 the athlete releases the shot at velocity 16m/s. (a) What are the velocity and acceleration of the shot in terms of2(b) Use the relation a = v >r to determine the instantaneous
A +1 C charge is placed at the origin. Calculate the electrostatic force on a +2 C charge placed at x=10 m. Please choose the closest answer. The answers are given in Newtons [N].
Which of the following is used to identify specific hypertext resources on the World Wide Web? answer Uniform Resource Locator Internet Protocol Transmission Control Protocol Hyperlink
One way to determine the resources needed for an investigation is based on the OS of the suspect computer, list the software needed for the examination. True False
Assuming an unsigned number format, what is the largest integer expressible in 8 binary digits? Give the value of this integer in decimal, binary, octal and hexadecimal
Question 8 In which swapping algorithms is the M bit value used? Select one or more: a. clock b. LFU c. second chance d. FIFO e. no algorithm LRU g. NRU h. working set i. optimal
A negative two's complement value when cast to an unsigned value becomes Question 3Answer a. a large positive number b. a small positive number c. zero d. the same (its value does not change)
When building the Web site for a multinational company, a programmer indicates that the website will require several different versions in different languages. This is an example of __________.
Write down the Google query that allows you to locate sites that use the WordPress REST API interface, which allows external applications to access the data and functionality of WordPress CMS.
Which of the following orientation features does not qualify a system as using true database technology? a. Relational b. Object c. Network navigation d. File orientation e. None of the above
According to ACSM guidelines, an individual with a restong blood pressure of 126/88 falls into what classification? Elevated Normal Stage I hypertension Stage II hypertension
Why did the incidence of sepsis go up between 2012-2016? A. morre people got sepsis B. The NTDB TQIP database became mandatory C. CME implemented the SEP-1 measure D. Coding improved
A(n) _____ for an Active Directory object represents the complete LDAP path to an object from the domain. Question 5Select one: a. distinguished name b. GivenName c. SurName d. display name
Which is not a benefit for the cloud consumer. Perception of having unlimited resources Having fine-grained control over resources Having total control over resources Pay-as-you-go computing
Complete the program to output 'Area is ' followed by the value of circle_area to four digits after the decimal point.Ex: If the input is 3.200, then the output is:Area is 32.1699
3. What is a cybersecurity advantage of the centralized architecture? a) It is easier to control. b) It is more dynamic. c) It is significantly cheaper. d) It is the most commonly used.
If the question listed in the problem above is data driven, which category does it best fit into? (What are the favorite food items of the Manhattan (part of New York City) customer base?)
Examining the entries in `bus`, is the `bid` unique for each record (i.e., each row of data)? Your code should compute the answer, i.e., don't just hard code `True` or `False`.
Change the Zipcode in Cell B7 to be 30088. What is the value in Cell B4? Question 8 options: a) Fulton County b) Cobb County c) DeKalb County d) Stone Mountain e) Alpharetta f) Marietta
The conversion of temperature readings from \deg F to the several scales \deg C, \deg R, and K is sought. Write a computer program that will permit this operation.
Non-functional requirements are also referred to as: Question 2 options: 1) User Interface requirements 2) Quality of Service requirements 3) Process requirements 4) Usage requirements
A variable is: Question 5 options: something that always has the same value. something that can take on different values. something that cannot be measured. something that varies over time.
4. Which piece of software makes it possible to run one or more virtual machines in parallel? a) The database b) The hypervisor c) The operating system d) The resource monitor
Which security principle states that if you have not specifically been allowed access, then it should be denied? complete mediation implicit deny least privilege security through obscurity
Although he tries hard, Alton is not sure whether the documentation in his files is adequate. What test might he use to determine whether the files are, in fact, adequate?
4. Symbolic Text Constants Write a program that defines symbolic names for several string literals (characters between quotes). Use each symbolic name in a variable definition
What is the primary benefit of using RoCE in data centers? increased network speed enhanced memory-to-memory communication improved data encryption reduced hardware costs
(10 points) Solve the following recurrences: (up to big O estimates are enough) (a) T(n) = 8T(n/2) + n, T(1) = 1 (b) T(n) = T(n − 1) + n, T(1) = 1
Symbolic Integer Constants Write a program that defines symbolic constants for all seven days of the week. Create an array variable that uses the symbols as initializers.
Column names, abbreviation legends, and other data that helps to interpret the contents of a database would be an example of: Group of answer choices a database metadata data information
5.2 Write a program that repeatedly prompts a user for integer numbers until the user enters ‘done’. Once ‘done’ is entered, print out the largest and smallest of the numbers.
6. According to the CIA Triad, which of the below-mentioned element is not considered in the triad? a) Confidentiality b) Integrity c) Authenticity d) Availability e) I don’t know
2-83. If the direction of the resultant force acting on the eyebolt is defined by the unit vector determine the coordinate direction angles of and the magnitude of .
of the sound. The lowest frequency that causes resonance in the tube is f = 449 Hz. Assuming that the speed of sound is 346( m)/(s), what is the length (in cm) of the tube?
Solve the following two recurrences. Assume T(1) = Θ(1) for both the recurrences. (a) T(n) = T(n/2) + n (b) T(n) = 2T(n/2) + n
To implement a model-based AI agent to carry out the pattern recognition task which can detect the pattern of 1001 with overlapping in a given string consisting of 0s and 1s.
A __________________________ is a sequence of bits that can be accessed as a unit by the central processing unit of a computer. A. Byte B. Bit C. Word D. Nibble E. Register
Which type of DNS server accepts recursive queries? answer The servers listed in a client's TCP/IP configuration Root servers Internet-accessible DNS servers .net name servers
The portion of a computer’s memory in which the startup program is stored called ______________ memory. A. Read only memory B. Random access memory C. Register D. Byte E. Word
Consider the linear transformation T from R3 to R2 with T ⎡ ⎣ 1 0 0 ⎤ ⎦ = 7 11 , T ⎡ ⎣ 0 1 0 ⎤ ⎦ = 6 9 , and T ⎡ ⎣ Find the matrix A of T.
Construct an attribute scale with at least five different levels, ranked from best to worst, for some aspect of an apartment that is important to you but has no natural scale
In a charged capacitor with vacuum between the plates, the electric field is E. What happens to this electric field when a slab of insulator is placed between the plates?
Which term refers to the invocation of conditions that fall outside the normal sequence of operation? exceptions least privilege economy of mechanism fail-safe defaults
What is the output of the following code? #print("Hello") print("My") #print("Friend") Question 4 options: a) Hello My Friend b) Hello My Friend c) nothing is printed d) My
Which of the following statements correctly declares and initializes an integer variable named age in C? int age = 25; age = 25; int *age = 25; age = int(25);
When a new object is created in Java, it is allocated in the _______________ part of the JVM's memory management system. Group of answer choices stack memory heap memory
The _____________________________ of a computer is the hardware component that coordinates operations within the computer and coordinates communication with peripheral devices.
Match each of the given IPC types in the left column to a correct statement about them available in the right column. Shared memory Synchronous IPC Asynchronous IPC
A web application firewall is a network security system that filters and block unwanted HTTP or HTTPS traffic based on pretty fine rules to and from a web server true or false
SECURITY MANAGEMENT FOR HEALTHCARE Proactive Event Prevention and Effective Resolution Bernard J. Scaglione, CPP, CHPA, and CHSP Routledge PRODUCTIVITY PRESS BOOK
What will be the result of following conditional statement? x = 4 < 5 and 9 > 8 Question 4 options: x is TRUE x is FALSE The statement will result an error. None of above
If you are interested in finding what products people buy when they buy coffee, you would employ data warehousing techniques on supermarket sales data. TrueFalse
The cloud computing model has serval unique and essential characteristics that distinguish cloud computing from and in hosue infrastructure one of these characteristics is
. Use the UNION keyword to return two columns , CompanyName and Location. If the Country is USA the Location value should be “Inside USA”and if the Country is not USA,
Handshaking programmed data transfer is also known as Group of answer choices Synchronous transfer Both (a) and (c) Asynchronous transfer Interrupt driver transfer
Of the following spelling pattern progressions, which moves from simple to more complex? A)wr to ea to pic/nic B)ea to oi to ar C)sh to ft to cl D)ou to er to igh
Which load-balancing method optimizes AI/ML workloads in an Ethernet environment? stateless ECMP load based on link congestion packet spray and reorder round-robin
Question 5 options: Establishing change management as part of risk management strategies also requires a useful system that all partners in the project can access.
The ciphertext text ENLI was encrypted by a Hill cipher with a 2 × 2 matrix. The plaintext is dont. Find the encryption matrix.
Windows Server 2016 Hyper-V introduces the ability to move running VMs to a host running an earlier version of Windows Server. Group of answer choices True False
Which of the following terms describes an organization that connects users to the Internet? answer Web Server Data Center Internet Service Provider Network Server
True or False? The World Wide Web was initially created by NATO as a means to efficiently communicate between membership governments. Question 1 options: A) TrueB) False
A large operator of timeshare complexes requires anyone interested In making a purchase to first visit the site of interest historical data indicates that 20%
Which of the following is a typical Cloud Option? Firewall as a service (FAAS) Printing as a service (PAAS) Platform as a service (PAAS) Malware as a service (MAAS)
How are Satellites identified? Group of answer choices a) Pseudo Random Noise Number b) Standard Positioning Service c) Satellite Vehicle Number d) Both (a) and (c)
You have two fair, six-sides dice. However, the dice have been modified so that instead or 1,2,3,4,5,6 the sides are numbered 1,2,2,2,3,4.
write coral code language Declare an integer array named myVals with 2 elements. Then, assign each element with the next input. Finally, put each element to output.
Demonstrate by analytical calculations the inversion, commutation, and triple-product rules for the function of two variables.
Once the requirements are documented, a review with the users/customers is done before the design of the software. Group of answer choices True False Next
Identify which CSS selector is used in each question. 1) li ~ img Universal selector Multiple selector Child selector General sibling selector Adjacent sibling selector
You can display a list of all the built-in shell commands by running which of the following commands? Question 8 options: 1) help -s 2) h -s 3) help -S 4) h -S
A person takes a trip, driving with a constant speed of 99.5 k(m)/(h), except for a 20.0-min rest stop. The person's average speed is 60.2 k(m)/(h).
A language such as SQL allowing the user to specify the parts of a database rather than to code a complex procedure is called a nonprocedural database language
At-least how many CPU cores are needed to increase the speed of a process by a factor of 5. Assume that 90% of the process can be executed in parallel.
Computers use DNS _____ locator records to locate Kerberos servers and LDAP servers for a Windows domain. Question 8Select one: a. pointer b. AAAA c. A d. service
A security policy must define what behavior is and is not allowed, by whom and in what circumstances. Explain the natural weaknesses of a security policy.
1. What rotation rate in rpm is required to achieve RCF (Relative Centrifugal Field) of 500 g’s in a centrifuge with a rotor radius of 12 cm?
A storage device that can be used as the alternative to the OS in the event the computer is having trouble with the hard disk is called a ______________ disk.
3. Elasticity Review: Matrices 1. Given the row vector 𝑎⃗ = (2, 4,1) and the column vector 𝑏⃗ = (3, 5, 9)𝑇, compute: (1) 𝑏⃗ and (2) 𝑏⃗ 𝑎⃗ .
. All medical reports must be reviewed and initialed (or signed) by the physician before they are permanently added to a patient's record. 2 points A) True B) False
Write a program that prompts the user to enter a letter grade A/a, B/b, C/c, D/d, or F/f and displays its corresponding numeric value 4, 3, 2, 1, or 0.
Describe the role of social media in local SEO and provide two examples of how businesses can use social platforms to boost their local search visibility
suppose that we are using Go-Back-N ARQ with a window size of 3, with the minimal set of sequence numbers {0, 1, 2, 3}. If an ACK has not been received
The _____ partition in Active Directory contains information for replication and AD aware services. Question 4Select one: a. domain b. schema c. configuration
Compute the fractal dimension D for this object. Considering the black squares to have unit area, calculate the area fraction for the nth generation
If two independent and comparable sources report different data on the same industry with more than 20% difference. You can still trust the data True or false
Question Mode Multiple Choice Question A "Black Swan" event, such as the COVID-19 pandemic, can create large negative consequences in the economy even though
Identify the statements that best describe the differences between the Administrator and Guest accounts on a computer where only one domain exists. Select two.
How are investments in cybersecurity essential in exploiting opportunities and safeguarding against threats from the external environment?
A network attacker wants to know IP addresses used on a network, remote access procedures, and weaknesses in network systems. Group of answer choices True False
Why do we bother setting the key of the inserted node to 1 in line 2 of MAX HEAP-INSERT when the next thing we do is increase its key to the desired value
Examining open ports on a server is important to what concept? compgen -u When a user has privileges they should not have. Exposed Endpoints getent group sudo
Which type of proxy server allows external client access to internal servers? Group of answer choices Routing proxy Reverse proxy Caching proxy Forward proxy
Write down at least one thing that you liked or found useful about On Writing by Stephen King. How does it compare to the reading by Anne Lamott, Bird by Bird?
) Find, with proof, the set of numbers x ∈ R such that the three vectors 1 3 2 , 0 1 1 , x + 1 0 x are linearly independent.
With Windows Server 2016, you no longer need to plan for downtime to upgrade or downgrade memory on VMs hosted on Hyper-V. Group of answer choices True False
What is the command for locating all files that are larger than 20 blocks in size under the directory /etc? (Please also include a few lines of the output)
Which security principle is characterized by the use of multiple, different defense mechanisms with a goal of improving the defensive response to an attack?
A particle moves along the x axis. Its position as a function of time is given by x = 6.8t + 4.5t2, where t is in seconds and x is in meters.
Which layer of a fog computing system is responsible for local data processing and is closest to the data sources? cloud layer core layer edge layer fog layer
Define a function square root that receives a number as a parameter and returns the square root of that number. Determine the square root of 6.25 (in Python)
The combination of two 50-muF capacitors is connected in series across a 100-V battery. What is the potential difference across each capacitor?
Which range of port numbers is designated for private or dynamic use? answer 0 through 1,023 49,152 through 65,535 32,768 through 60,999 1,024 through 49,151
What would be the result if you sorted the following dates in ascending order: December 25, 2000; January 1, 2015; January 16, 1957; December 26, 1959?
27. How does ISO/IEC 15443 classify assurance methods based on both the assurance approach and life cycle focus?
Sequenced Query Language (SQL) is an internationally recognized standard language that is understood by all commercial database management system products.
A _________ is a private network that utilizes the same technologies as the Internet. answer World Wide Web Intranet Local Area Network Wide Area Network
Your company wants to deploy an AWS RDS database in the cloud. What cloud services can be used? (Choose all that apply) CaaS PaaS IaaS SaaS
What is an ICMP request? 2. From a security perspective, what is the rationale for blocking ICMP requests? Cite your source(s) in APA format.
Show how to extend the Rabin-Karp method to handle the problem of looking for a given m×m pattern in an n×n array of characters
In the reaction, AProducts, the initial concentration of A is 1.60 M, and 45 s later it is1.20 M.What is the averagerate of this reaction in M*s-1?
2. Which technology has been a key driver of cloud computing? a) Client/server b) Microprocessors c) TCP/IP networking d) Virtualization e) I don’t know
what is the return on a price-wtd index from time 1 to time 2? P0 Q0 P1 Q1 P2 Q2 A 90 100 95 100 95 100 B 50 200 45 200 45 200 C 100 200 110 200 55 400
________ systems are older transaction processing systems, usually created for mainframes. Question 20 options: Cloud Networked Database Legacy Software
Reduce the width of the text box controls to approximately half of their original size (about 3.4"). Delete the Products subform control from the form
Which factor is a challenge for isolated networks? high scalability high reliability complete control over the network infrastructure maximum security
Windows Server 2016 introduces a new concept of taking checkpoints for production VMs; that is, production checkpoints. Group of answer choices True False
Suppose that S(n) is O(f(n)) and T(n) is O(g(n)). Assume none of these functions is negative for any n. Prove that S(n)T(n) is O(g(n)f(n)).
If the number of dies per wafer is increased by 20% and the defects per area unit increases by 30%, find the die area and yield.
Multiple Choice Question Chemicals that carry messages across the synapse to the dendrite (and sometimes the cell body) of a receiver neuron are called
Give me a synopsis of A10:2021, how it is exploited, an example incident scenario, how it can be mitigated and why it should be mitigated.
What layer of the OSI model does the User Datagram Protocol (UDP) operate at? answer Presentation Layer Network Layer Application Layer Transport Layer
Does resting lactate differ by sex? Why might this be the case? Explain. (This is NOT based upon our data, but generally…do they differ by sex?)
Fix print_result() to print results correctly and in the same order as the words were specified on the command line. Explain your solution.
The NIST Standard for Zero Trust Architecture is? 1. NIST 800-207 2. NIST ZTA 101 3. NIST 404 4. There is no NIST standard covering ZTA at this point
AD integrated DNS zones allow assigning _____ to each record in the zone. Question 10Select one: a. pointers b. permissions c. SRV names d. clients
based on achieving the goal, which presentation software should you use? What features will make your presentation effective for your audience?
Given you have a sorted array of 16 integers, in a worst case scenario, how many times will you have you split the array to find the smallest number?
Which of the following IP address ranges is reserved for Automatic Private IP Addressing (APIPA)? answer 169.192.0.0 - 169.192.254.255 169.254.1.1 - 169.254.254.254 169.168.0.1 - 169.168.255.255 192.168.0.0 - 192.168.255.254
Variable myPassword is assigned with a string read from input. A for loop iterates through the characters of myPassword. For each numeric digit, increment digitCount. Ex: If the input is 3d4721, then the output is: Valid count: 5
If thorough and consistent data backup and storage methods have been followed, which of the following efforts should be minimal? Group of answer choices Data reintegration Software maintenance Data recovery Impact analysis
How are numeric characters represented in ASCII? They start with the binary digits 0011 0000 They start with the binary digits 0100 0000 They start with the binary digits 0000 0000 They start with the binary digits 0110 0000
The efficiency of an Ethernet is the ratio of the number of packets transmitted successfully as a proportion of the theoretical maximum number that could be transmitted without collisions. Question 1 options: True False
Question Mode Multiple Choice Question In order to maintain accreditation, an organization must undergo an on-site survey at what frequency? Multiple choice question. Yearly Every 5 years At least every 39 months Every 2 years
1) Language is A) the only way we can communicate with each other. B) the code we use to communicate with each other. C) the expression of thought through gesture. D) the dictionary meaning of words.
What variables would be most useful to have default arguments for? Give an example of a built-in Python function that uses default arguments. Describe what the function does and what purpose the default arguments serve.
15. A is 3 by 5, B is 5 by 3, C is 5 by 1, and D is 3 by 1. All entries are 1. Which of the following matrix operations are allowed, and what are the results: (a) BA (b) AB (c) ABD (d) DBA (e) A(B + C)
The key was revoked before it expired. Exam takes the revoked key out of the revocation state and reactivate it to extract and decrypt old messages from an email archival system. What is this type of key reactivation called?
Given the following section of code, what is the time complexity in Big O Notation: (2 points)int i, j, k = 0;for (i = n / 2; i <= n; i++) {for (j = 2; j <= n; j = j * 2) {k = k + n / 2; }}a. O(2n)b. O(n log n)
Integer cupsRequested is read from input representing the number of cups. Output: "Medium carton", if there are 60 - 70 cups inclusive. "Large carton", if there are 130 - 150 cups inclusive. End each output with a newline.
Consider binary classification with Y = {−1, 1} with the loss function ℓ(−1, −1) = ℓ(1, 1) = 0 and ℓ(−1, 1) = c− > 0 (cost of a false positive), ℓ(1, −1) = c+ > 0 (cost of a false negative). Compue
In the coaxial pattern, where would you expect there to be no voltage? Group of answer choices In both the inner circle and beyond the outer circle Between the two circles Outside the outer circle inside the inner circle
The 24% tax bracket applies to salary_num in the range 43000 - 85000 inclusive. Write an if statement that outputs 'Different tax bracket' if the input salary_num is not in this range. Otherwise, output '24% tax bracket'.
Which of the following is a key feature of a web application? It runs on a local machine without internet access It is accessible via a web browser It is only installed on a user's device It cannot interact with databases
Summarize the Salt typhoon Cyberattack and identify the category that best describes what viruses or malicious code was involved. If you were a hacker, would you choose to infect with a virus or malicious code, and why?
If you owned a small/medium sized business; would you belong to your local Chamber of Commerce and would you be active and think it would be important to get involved or just joining would be enough?
Prove that T(n) = 2T(⌊(n/2)⌋ + 9) + n = O(nlgn) using the substitution method. Find constants c and n0. Start with an initial guess of T(n) <= c(n-d)lg(n-d), where d is a lower order term
Create a correlation matrix for the relations between calories, total_(f)at, sugar, and calcium for all items at Sonic, Subway, and Taco Bell, omitting missing values with `na.omit()`. - Assign the matrix to Q1.
Assume that values and ptr are defined as follows: int values[4] = {15, 88, 75, 99}; int *ptr; ptr = values; Which statements will display the contents of the last element of the values array? [Check all that apply]
give asymptotic upper and lower bounds for T (n) = 4T (n/4) + n2, assuming T (n) is constant for sufficiently small n. Make your bounds as tight as possible. Prove that your bounds are correct
Another model for a growth function for a limited population is given by the Gompertz function, which is a solution to the differential equation (dP)/(dt)= cln((k)/(P))P
Write code that iterates while userNum is less than 12. Each iteration: Put userNum to output. Then, put "/" to output. Then, assign userNum with userNum multiplied by 3. Ex: If input is 1, then output is: 1/3/9/
Which of the following are specific threats mentioned in the NIST standard to a Zero Trust Architecture? 1. Use of non-person entities (NPE) in ZTA 2. Phishing 3. Increased levels of spam-like traffic 4. Loss of control
In 2010, there were 235.4 million cell phone subscribers in the United States. By 2020, the number of subscribers increased to 279.9 million. What is the geometric mean annual percent increase for the period?
Which expression for YYY correctly outputs "x is between 50-100"? Group of answer choices (x >= 50) || (x <= 100) 50 >= x <= 100 50 <= x <= 100 (x >= 50) && (x <= 100)
Select all that apply Which of the following is a topological ordering for the following DAG? Group of answer choices 9,1,2,3,6,4,5,7,8 9,1,6,2,3,4,7,5,8 4, 2, 5, 6, 7, 8, 1, 9, 3 1, 9, 4, 2, 6, 5, 7, 3, 8
Joni develops an app to encrypt short messages. He runs the encryption program, but it is designed to deliberately introduce a 5 to 15 second delay before encryption begins. What type of data is Johnny about to encrypt
A portfolio's value increases by 20% during a financial boom and by 6% during normal times. It decreases by 11% during a recession. What is the expected return on this portfolio if each scenario is equally likely?
In some cases, neither of the two equations in the system will contain a variable with a coefficient of 1, so we must take a further step to isolate it. Let's say we now have 3C+4D=53C+4D=5 2C+5D=2
Which of the following is TRUE? Question 3 options: static variables get relative address non static variables get absolute address non static variables get relative address static variables get absolute address
A hacktivist is angry with the carbon footprint of a company that works with fossil fuels. Which type of attack would the hacktivist most likely perform against the company to overwhelm its network?
Write a query that returns the artist (or several artists) with the highest count of different countries with customers for their music. Your query should return artist.name and the count of countries.
In Windows Server 2016, a ___________ is a point-in-time capture of the state of a VM, which gives you the ability to revert the VM to an earlier state. Group of answer choices checkpoint checkoff snapshot snapchat
Which action is part of configuring virtual networking in Hyper-V? Question 8 options: Enabling Hyper-V Running Hyper-V Manager Choosing the type of network (external, internal, or private) Starting the virtual machine
Which of the following increases total production? Question 6 options: a) Reducing the amount of input used. b) Increasing the amount of input used. c) Keeping input constant while changing technology.
Write a 2-3 page paper that discusses your experience with it. What are your thoughts on the future with tools like this getting better. Try to leverage 2 resources when writing your paper.
What do I need to change in the code for it to calculate the correct maximal points? The first image is what I need the code to make, but the code given in the answer is making the third image instead.
Required information Skip to question Consider the following function: f(x)=2x+3xfx=2x+3x The result of the parabolic interpolation converges very slowly on the true value of f(x). Group startsTrue or False
Find a regular expression for each of the following languages over = {a; b}. (a) The set of strings that do not contain the substring bbb (b) {w > w has both ab and ba as substrings}:
Which of the following set of instructions can set (to '1') bits 3 and reset (to '0') bits 4 of register R1 without changing its other bits? Correct! ORR R1,R1,#0x0008 ; AND R1,R1,#0xFFFF FFEF;
suppose thqt s.a is stored at memory address 0, s.b is stored at memory address 1, s.c is stored at memory address 16 and s.d is stored at memory address 24, what could be the type of struct member a?
In the Contestant class, complete the public method definition for setHeight() with the double parameter customHeight. Ex: If the input is Haru 6.5, then the output is: Name: Haru Height: 6.5
Double massGrams is read from input representing a mass in grams. If the mass is lighter than 35.5 grams or heavier than 60.5 grams, output "Reject". Otherwise, output "Accept". End each output with a newline
You observe the following 5 data points: 3 3 7 10 12. Using uniform kernel smoothing with a bandwidth of 4, what is the median of the smoothed distribution?
Which term refers to the design and operation of elements to ensure the proper functional environment of a system? A. layered security B. configuration management C. diversity of defense D. session management
A discrete memoryless source produces {𝐴, 𝐵, 𝐶}, the corresponding output probabilities are {0.5,0.25,0.25}. Use arithmetic algorithm to encode the string “𝐵𝐴𝐴𝐴”.
Which of the following terms describes a global system of interconnected hypertext documents and files that can be accessed through a browser? answer World Wide Web Wide Area Network Intranet Internet
What should you do before you turn on a laptop for the first time? Question 17 options: Plug the laptop into a power outlet. Call the manufacturer for instructions. Fully charge the battery. Remove the battery.
The Active Directory Forest or Domain mode you choose is based on the _____ server operating system version on any domain controller in your forest or domain respectively. Question 6Select one: a. newest b. oldest
What is the primary goal of requirements engineering? To design the system architecture To implement the system To gather and define the functionalities and constraints of a software system To test the software
Without using a Python interpreter, what is the precise output from the following code? bar = 13 foo = 23 - 45 // 10 foo += 6 bar = foo % bar print (foo * 2) print (foo + bar) print (foo, bar)
Hassana enters information on a compromise website, which does a poor job sanitizing the input. As a result, the Web server sounds back a response that affects your system. What type of attack is this?
In the Yoruba World what is the name given to the spirts of ancestors / identified as departed but not deceased - can be contacted for support and guidance Group of answer choices ARA ORUN OSOOSI EYNILE AYE
There are tools that can be used to calculate a contrast ratio between two colors in an effort to help designers choose text and background colors that are easy on the eye. Group of answer choices True False
Zero Trust assumes? 1. none of the above 2. that all users are automatically trustworthy 3. that all devices on the network are authenticated by default 4. that there is no traditional network edge
A polynomial is given by h=9.0c2+3.0c+7.0. Read c from input as a float. Then, compute h using the polynomial. Ex: If the input is 3.7, then the output is: 141.310 Note: c2 can be computed using c * c.
Which of the following bit patterns (represented in hexadecimal notation) represents a positive number in two's complement notation? Question 10 options: A8 F7 8A 7F
If you calculate stress and the leading significant digit is a ''2'' through ''9'', the convention of this book, and most engineering applications, is to report the answer with _()_(_())_( s)ignificant digits.
Let F be a secure PRF with λ-bit outputs, and let G be a PRG with stretch 4. Define F j(k, r ) = G(F (k, r )). So F jhas outputs of length λ + 4. Prove that F jis a secure PRF
Axel, whose username is axelp99, is not able to log into a legacy system running an older application in the mycompany domain using his UPN. What username will allow him to sign in successfully?
A large water tank is filled to a depth of 19.3 m. A leak develops in the side of the tank and water shoots out at a speed of 8.5( m)/(s). At what height h above the bottom is the leak?
The mouse pointer will turn into a black plus sign when it is dragged over the: Fill Handle. edge of a highlighted range of cells. the lower left corner of any activated cell. Formula Bar. Status Bar.
Construct a query algorithm that produces an incremental number of changes in real time. The Python code will require the use of a streaming library of your choosing.
Which of the following Group Policy Security Option setting categories is designed to require a smart card as an additional security measure? answer Interactive logon Accounts Devices Network security
2. If centrifugation of a cell suspension at a rotation speed of 1,500 rpm takes 3 min, how much time will be required to reach the same sedimentation distance at a rotation speed of 500 rpm?
Which four 32-bit general purpose registers of the x86 Processor have overlapping 16-bit and 8-bit registers. Give the names of the 16-bit and 8-bit components for each 32-bit register.
Recreate your procCategories stored procedure so that the stored procedure will return all Categories or only specific Categories an input parameter for categoryName. * use the same columns.
A and B are two points on a sphere of radius R specified by their longitude and latitude. Specify the algorithm to compute the shortest distance between A and B traveling on the sphere.
A user retrieves, the 2/2 of a key from two different parties and combines them to create a copy of the key. Which of the following terms best describes the process being used to manage the keys?
Multiply each element in origList with the corresponding value in offsetAmount. Print each product followed by a space. Ex: If the input is: 4 5 10 12 2 4 7 3 then output is: 8 20 70 36
At t =0 the athlete releases the shot at velocity 16m/s. (a) What are the velocity and acceleration of the shot in terms of2(b) Use the relation a = v >r to determine the instantaneous
A +1 C charge is placed at the origin. Calculate the electrostatic force on a +2 C charge placed at x=10 m. Please choose the closest answer. The answers are given in Newtons [N].
Which of the following is used to identify specific hypertext resources on the World Wide Web? answer Uniform Resource Locator Internet Protocol Transmission Control Protocol Hyperlink
One way to determine the resources needed for an investigation is based on the OS of the suspect computer, list the software needed for the examination. True False
Assuming an unsigned number format, what is the largest integer expressible in 8 binary digits? Give the value of this integer in decimal, binary, octal and hexadecimal
Question 8 In which swapping algorithms is the M bit value used? Select one or more: a. clock b. LFU c. second chance d. FIFO e. no algorithm LRU g. NRU h. working set i. optimal
A negative two's complement value when cast to an unsigned value becomes Question 3Answer a. a large positive number b. a small positive number c. zero d. the same (its value does not change)
When building the Web site for a multinational company, a programmer indicates that the website will require several different versions in different languages. This is an example of __________.
Write down the Google query that allows you to locate sites that use the WordPress REST API interface, which allows external applications to access the data and functionality of WordPress CMS.
Which of the following orientation features does not qualify a system as using true database technology? a. Relational b. Object c. Network navigation d. File orientation e. None of the above
According to ACSM guidelines, an individual with a restong blood pressure of 126/88 falls into what classification? Elevated Normal Stage I hypertension Stage II hypertension
Why did the incidence of sepsis go up between 2012-2016? A. morre people got sepsis B. The NTDB TQIP database became mandatory C. CME implemented the SEP-1 measure D. Coding improved
A(n) _____ for an Active Directory object represents the complete LDAP path to an object from the domain. Question 5Select one: a. distinguished name b. GivenName c. SurName d. display name
Which is not a benefit for the cloud consumer. Perception of having unlimited resources Having fine-grained control over resources Having total control over resources Pay-as-you-go computing
Complete the program to output 'Area is ' followed by the value of circle_area to four digits after the decimal point.Ex: If the input is 3.200, then the output is:Area is 32.1699
3. What is a cybersecurity advantage of the centralized architecture? a) It is easier to control. b) It is more dynamic. c) It is significantly cheaper. d) It is the most commonly used.
If the question listed in the problem above is data driven, which category does it best fit into? (What are the favorite food items of the Manhattan (part of New York City) customer base?)
Examining the entries in `bus`, is the `bid` unique for each record (i.e., each row of data)? Your code should compute the answer, i.e., don't just hard code `True` or `False`.
Change the Zipcode in Cell B7 to be 30088. What is the value in Cell B4? Question 8 options: a) Fulton County b) Cobb County c) DeKalb County d) Stone Mountain e) Alpharetta f) Marietta
The conversion of temperature readings from \deg F to the several scales \deg C, \deg R, and K is sought. Write a computer program that will permit this operation.
Non-functional requirements are also referred to as: Question 2 options: 1) User Interface requirements 2) Quality of Service requirements 3) Process requirements 4) Usage requirements
A variable is: Question 5 options: something that always has the same value. something that can take on different values. something that cannot be measured. something that varies over time.
4. Which piece of software makes it possible to run one or more virtual machines in parallel? a) The database b) The hypervisor c) The operating system d) The resource monitor
Which security principle states that if you have not specifically been allowed access, then it should be denied? complete mediation implicit deny least privilege security through obscurity
Although he tries hard, Alton is not sure whether the documentation in his files is adequate. What test might he use to determine whether the files are, in fact, adequate?
4. Symbolic Text Constants Write a program that defines symbolic names for several string literals (characters between quotes). Use each symbolic name in a variable definition
What is the primary benefit of using RoCE in data centers? increased network speed enhanced memory-to-memory communication improved data encryption reduced hardware costs
(10 points) Solve the following recurrences: (up to big O estimates are enough) (a) T(n) = 8T(n/2) + n, T(1) = 1 (b) T(n) = T(n − 1) + n, T(1) = 1
Symbolic Integer Constants Write a program that defines symbolic constants for all seven days of the week. Create an array variable that uses the symbols as initializers.
Column names, abbreviation legends, and other data that helps to interpret the contents of a database would be an example of: Group of answer choices a database metadata data information
5.2 Write a program that repeatedly prompts a user for integer numbers until the user enters ‘done’. Once ‘done’ is entered, print out the largest and smallest of the numbers.
6. According to the CIA Triad, which of the below-mentioned element is not considered in the triad? a) Confidentiality b) Integrity c) Authenticity d) Availability e) I don’t know
2-83. If the direction of the resultant force acting on the eyebolt is defined by the unit vector determine the coordinate direction angles of and the magnitude of .
of the sound. The lowest frequency that causes resonance in the tube is f = 449 Hz. Assuming that the speed of sound is 346( m)/(s), what is the length (in cm) of the tube?
Solve the following two recurrences. Assume T(1) = Θ(1) for both the recurrences. (a) T(n) = T(n/2) + n (b) T(n) = 2T(n/2) + n
To implement a model-based AI agent to carry out the pattern recognition task which can detect the pattern of 1001 with overlapping in a given string consisting of 0s and 1s.
A __________________________ is a sequence of bits that can be accessed as a unit by the central processing unit of a computer. A. Byte B. Bit C. Word D. Nibble E. Register
Which type of DNS server accepts recursive queries? answer The servers listed in a client's TCP/IP configuration Root servers Internet-accessible DNS servers .net name servers
The portion of a computer’s memory in which the startup program is stored called ______________ memory. A. Read only memory B. Random access memory C. Register D. Byte E. Word
Consider the linear transformation T from R3 to R2 with T ⎡ ⎣ 1 0 0 ⎤ ⎦ = 7 11 , T ⎡ ⎣ 0 1 0 ⎤ ⎦ = 6 9 , and T ⎡ ⎣ Find the matrix A of T.
Construct an attribute scale with at least five different levels, ranked from best to worst, for some aspect of an apartment that is important to you but has no natural scale
In a charged capacitor with vacuum between the plates, the electric field is E. What happens to this electric field when a slab of insulator is placed between the plates?
Which term refers to the invocation of conditions that fall outside the normal sequence of operation? exceptions least privilege economy of mechanism fail-safe defaults
What is the output of the following code? #print("Hello") print("My") #print("Friend") Question 4 options: a) Hello My Friend b) Hello My Friend c) nothing is printed d) My
Which of the following statements correctly declares and initializes an integer variable named age in C? int age = 25; age = 25; int *age = 25; age = int(25);
When a new object is created in Java, it is allocated in the _______________ part of the JVM's memory management system. Group of answer choices stack memory heap memory
The _____________________________ of a computer is the hardware component that coordinates operations within the computer and coordinates communication with peripheral devices.
Match each of the given IPC types in the left column to a correct statement about them available in the right column. Shared memory Synchronous IPC Asynchronous IPC
A web application firewall is a network security system that filters and block unwanted HTTP or HTTPS traffic based on pretty fine rules to and from a web server true or false
SECURITY MANAGEMENT FOR HEALTHCARE Proactive Event Prevention and Effective Resolution Bernard J. Scaglione, CPP, CHPA, and CHSP Routledge PRODUCTIVITY PRESS BOOK
What will be the result of following conditional statement? x = 4 < 5 and 9 > 8 Question 4 options: x is TRUE x is FALSE The statement will result an error. None of above
If you are interested in finding what products people buy when they buy coffee, you would employ data warehousing techniques on supermarket sales data. TrueFalse
The cloud computing model has serval unique and essential characteristics that distinguish cloud computing from and in hosue infrastructure one of these characteristics is
. Use the UNION keyword to return two columns , CompanyName and Location. If the Country is USA the Location value should be “Inside USA”and if the Country is not USA,
Handshaking programmed data transfer is also known as Group of answer choices Synchronous transfer Both (a) and (c) Asynchronous transfer Interrupt driver transfer
Of the following spelling pattern progressions, which moves from simple to more complex? A)wr to ea to pic/nic B)ea to oi to ar C)sh to ft to cl D)ou to er to igh
Which load-balancing method optimizes AI/ML workloads in an Ethernet environment? stateless ECMP load based on link congestion packet spray and reorder round-robin
Question 5 options: Establishing change management as part of risk management strategies also requires a useful system that all partners in the project can access.
The ciphertext text ENLI was encrypted by a Hill cipher with a 2 × 2 matrix. The plaintext is dont. Find the encryption matrix.
Windows Server 2016 Hyper-V introduces the ability to move running VMs to a host running an earlier version of Windows Server. Group of answer choices True False
Which of the following terms describes an organization that connects users to the Internet? answer Web Server Data Center Internet Service Provider Network Server
True or False? The World Wide Web was initially created by NATO as a means to efficiently communicate between membership governments. Question 1 options: A) TrueB) False
A large operator of timeshare complexes requires anyone interested In making a purchase to first visit the site of interest historical data indicates that 20%
Which of the following is a typical Cloud Option? Firewall as a service (FAAS) Printing as a service (PAAS) Platform as a service (PAAS) Malware as a service (MAAS)
How are Satellites identified? Group of answer choices a) Pseudo Random Noise Number b) Standard Positioning Service c) Satellite Vehicle Number d) Both (a) and (c)
You have two fair, six-sides dice. However, the dice have been modified so that instead or 1,2,3,4,5,6 the sides are numbered 1,2,2,2,3,4.
write coral code language Declare an integer array named myVals with 2 elements. Then, assign each element with the next input. Finally, put each element to output.
Demonstrate by analytical calculations the inversion, commutation, and triple-product rules for the function of two variables.
Once the requirements are documented, a review with the users/customers is done before the design of the software. Group of answer choices True False Next
Identify which CSS selector is used in each question. 1) li ~ img Universal selector Multiple selector Child selector General sibling selector Adjacent sibling selector
You can display a list of all the built-in shell commands by running which of the following commands? Question 8 options: 1) help -s 2) h -s 3) help -S 4) h -S
A person takes a trip, driving with a constant speed of 99.5 k(m)/(h), except for a 20.0-min rest stop. The person's average speed is 60.2 k(m)/(h).
A language such as SQL allowing the user to specify the parts of a database rather than to code a complex procedure is called a nonprocedural database language
At-least how many CPU cores are needed to increase the speed of a process by a factor of 5. Assume that 90% of the process can be executed in parallel.
Computers use DNS _____ locator records to locate Kerberos servers and LDAP servers for a Windows domain. Question 8Select one: a. pointer b. AAAA c. A d. service
A security policy must define what behavior is and is not allowed, by whom and in what circumstances. Explain the natural weaknesses of a security policy.
1. What rotation rate in rpm is required to achieve RCF (Relative Centrifugal Field) of 500 g’s in a centrifuge with a rotor radius of 12 cm?
A storage device that can be used as the alternative to the OS in the event the computer is having trouble with the hard disk is called a ______________ disk.
3. Elasticity Review: Matrices 1. Given the row vector 𝑎⃗ = (2, 4,1) and the column vector 𝑏⃗ = (3, 5, 9)𝑇, compute: (1) 𝑏⃗ and (2) 𝑏⃗ 𝑎⃗ .
. All medical reports must be reviewed and initialed (or signed) by the physician before they are permanently added to a patient's record. 2 points A) True B) False
Write a program that prompts the user to enter a letter grade A/a, B/b, C/c, D/d, or F/f and displays its corresponding numeric value 4, 3, 2, 1, or 0.
Describe the role of social media in local SEO and provide two examples of how businesses can use social platforms to boost their local search visibility
suppose that we are using Go-Back-N ARQ with a window size of 3, with the minimal set of sequence numbers {0, 1, 2, 3}. If an ACK has not been received
The _____ partition in Active Directory contains information for replication and AD aware services. Question 4Select one: a. domain b. schema c. configuration
Compute the fractal dimension D for this object. Considering the black squares to have unit area, calculate the area fraction for the nth generation
If two independent and comparable sources report different data on the same industry with more than 20% difference. You can still trust the data True or false
Question Mode Multiple Choice Question A "Black Swan" event, such as the COVID-19 pandemic, can create large negative consequences in the economy even though
Identify the statements that best describe the differences between the Administrator and Guest accounts on a computer where only one domain exists. Select two.
How are investments in cybersecurity essential in exploiting opportunities and safeguarding against threats from the external environment?
A network attacker wants to know IP addresses used on a network, remote access procedures, and weaknesses in network systems. Group of answer choices True False
Why do we bother setting the key of the inserted node to 1 in line 2 of MAX HEAP-INSERT when the next thing we do is increase its key to the desired value
Examining open ports on a server is important to what concept? compgen -u When a user has privileges they should not have. Exposed Endpoints getent group sudo
Which type of proxy server allows external client access to internal servers? Group of answer choices Routing proxy Reverse proxy Caching proxy Forward proxy
Write down at least one thing that you liked or found useful about On Writing by Stephen King. How does it compare to the reading by Anne Lamott, Bird by Bird?
) Find, with proof, the set of numbers x ∈ R such that the three vectors 1 3 2 , 0 1 1 , x + 1 0 x are linearly independent.
With Windows Server 2016, you no longer need to plan for downtime to upgrade or downgrade memory on VMs hosted on Hyper-V. Group of answer choices True False
What is the command for locating all files that are larger than 20 blocks in size under the directory /etc? (Please also include a few lines of the output)
Which security principle is characterized by the use of multiple, different defense mechanisms with a goal of improving the defensive response to an attack?
A particle moves along the x axis. Its position as a function of time is given by x = 6.8t + 4.5t2, where t is in seconds and x is in meters.
Which layer of a fog computing system is responsible for local data processing and is closest to the data sources? cloud layer core layer edge layer fog layer
Define a function square root that receives a number as a parameter and returns the square root of that number. Determine the square root of 6.25 (in Python)
The combination of two 50-muF capacitors is connected in series across a 100-V battery. What is the potential difference across each capacitor?
Which range of port numbers is designated for private or dynamic use? answer 0 through 1,023 49,152 through 65,535 32,768 through 60,999 1,024 through 49,151
What would be the result if you sorted the following dates in ascending order: December 25, 2000; January 1, 2015; January 16, 1957; December 26, 1959?
27. How does ISO/IEC 15443 classify assurance methods based on both the assurance approach and life cycle focus?
Sequenced Query Language (SQL) is an internationally recognized standard language that is understood by all commercial database management system products.
A _________ is a private network that utilizes the same technologies as the Internet. answer World Wide Web Intranet Local Area Network Wide Area Network
Your company wants to deploy an AWS RDS database in the cloud. What cloud services can be used? (Choose all that apply) CaaS PaaS IaaS SaaS
What is an ICMP request? 2. From a security perspective, what is the rationale for blocking ICMP requests? Cite your source(s) in APA format.
Show how to extend the Rabin-Karp method to handle the problem of looking for a given m×m pattern in an n×n array of characters
In the reaction, AProducts, the initial concentration of A is 1.60 M, and 45 s later it is1.20 M.What is the averagerate of this reaction in M*s-1?
2. Which technology has been a key driver of cloud computing? a) Client/server b) Microprocessors c) TCP/IP networking d) Virtualization e) I don’t know
what is the return on a price-wtd index from time 1 to time 2? P0 Q0 P1 Q1 P2 Q2 A 90 100 95 100 95 100 B 50 200 45 200 45 200 C 100 200 110 200 55 400
________ systems are older transaction processing systems, usually created for mainframes. Question 20 options: Cloud Networked Database Legacy Software
Reduce the width of the text box controls to approximately half of their original size (about 3.4"). Delete the Products subform control from the form
Which factor is a challenge for isolated networks? high scalability high reliability complete control over the network infrastructure maximum security
Windows Server 2016 introduces a new concept of taking checkpoints for production VMs; that is, production checkpoints. Group of answer choices True False
Suppose that S(n) is O(f(n)) and T(n) is O(g(n)). Assume none of these functions is negative for any n. Prove that S(n)T(n) is O(g(n)f(n)).
If the number of dies per wafer is increased by 20% and the defects per area unit increases by 30%, find the die area and yield.
Multiple Choice Question Chemicals that carry messages across the synapse to the dendrite (and sometimes the cell body) of a receiver neuron are called
Give me a synopsis of A10:2021, how it is exploited, an example incident scenario, how it can be mitigated and why it should be mitigated.
What layer of the OSI model does the User Datagram Protocol (UDP) operate at? answer Presentation Layer Network Layer Application Layer Transport Layer
Does resting lactate differ by sex? Why might this be the case? Explain. (This is NOT based upon our data, but generally…do they differ by sex?)
Fix print_result() to print results correctly and in the same order as the words were specified on the command line. Explain your solution.
The NIST Standard for Zero Trust Architecture is? 1. NIST 800-207 2. NIST ZTA 101 3. NIST 404 4. There is no NIST standard covering ZTA at this point
AD integrated DNS zones allow assigning _____ to each record in the zone. Question 10Select one: a. pointers b. permissions c. SRV names d. clients
based on achieving the goal, which presentation software should you use? What features will make your presentation effective for your audience?
Given you have a sorted array of 16 integers, in a worst case scenario, how many times will you have you split the array to find the smallest number?
1
2
3
4
5
...
8