there's an error message on susan's computer saying that the bootmgr is corrupted. what tool can be used to fix the problem?

Answers

Answer 1

The tool to be used to fix the corrupted bootmgr is 'DCDEedit'.

Boot Configuration Data (BCD) files deliver a store that is used to define boot applications and boot application settings. And BCDEdit is a command-line tool that is used to manage BCD. BCDEdit serves a variety of purposes, including adding boot menu options, creating new stores, and modifying existing stores.

According to the given scenario where Susan encounters a problem of corrupted bootmgr in her computer that needs to be fixed. In order to resolve the issue of corrupted bootmgr, the tool named 'DCDEedit' will be used.

You can learn more about boot manager at

https://brainly.com/question/29220833

#SPJ4


Related Questions

write both the iterative and recursive fibonacci functions in assembly code. the values are stored in short datatype.

Answers

Fibonacci functions in assembly language, both iterative and recursive. In short datatype, the values are kept.

both solution methods

#include<iostream>

using namespace std;  /* Fibonacci: recursive version */ int Fibonacci_R(int n) {         if(n<=0) return 0;         else if(n==1) return 1;         else return Fibonacci_R(n-1)+Fibonacci_R(n-2);   }  // iterative version int Fibonacci_I(int n) {         int fib[] = {0,1,1};         for(int i=2; i<=n; i++)         {                 fib[i%3] = fib[(i-1)%3] + fib[(i-2)%3];                 cout << "fib(" << i << ") = " << fib[i%3] << endl;         }         return fib[n%3]; }  int main(void) {   int a;cout << "a = ";         cin>>a;        

// calculate the fib(i) from scratch for each i <= a using your recursive function         cout << endl << "From recursive function" << endl;         for(int i=1; i<=a; ++i)                 cout << "fib(" << i << ") = " << Fibonacci_R(i) << endl;         cout << endl;          // or calculate fib(a) once and output the intermediate results from the looping version         cout << "From iterative function" << endl;         Fibonacci_I(a);          cout << endl;         return 0; }

complexity O(2^n)

A data type, often known as a type, is a collection of potential values and permitted actions in computer science and computer programming. The data type informs the compiler or interpreter of the programmer's intended use. Integer numbers (of various sizes), floating-point numbers (which resemble real numbers), characters, and Booleans are the fundamental data types that are supported by the majority of computer languages. An expression, such as a variable or function, is limited in what values it can have by its data type. The meaning of the data, the operations that may be performed on it, and the methods for storing items of that type are all defined by the data type.

Learn more about datatype here:

https://brainly.com/question/14213941

#SPJ4

Which of the following is considered true regarding the future of technology?

It is constantly changing.
It will cause communication to decrease across the globe.
Only programmers will work in the computer science industry.
The modern workplace will remain the same.

Answers

Answer:

Explanation:

In the future, the most high-value work will be cognitive in nature. Employees will have to apply creativity, critical thinking and constant digital upskilling to solve complex problems. The digital economy demands new ideas, information and business models that continually expand, combine and shift into new ventures

a subroutine was called using a conditional branch (br) instruction. the subroutine ends, as usual, with a ret instruction. what will happen when the subroutine terminates?

Answers

Using the conditional branch (BR) instruction, a subroutine was called. As is customary, the subroutine finishes with a RET instruction.

The software will either crash or provide unexpected effects when control is returned to an unknown instruction. The fundamental selection construct is the first control structure we'll look at. It chooses one of two (or perhaps more) blocks of code to run based on a condition, which is why it is named selection. In its most general form, the condition could be calculated in a number of different ways, although it is typically the outcome of a comparison operation or the result of a Boolean expression evaluation. Programmers can alter the address of the next instruction to be executed using branch instructions.

Learn more about software here-

https://brainly.com/question/11973901

#SPJ4

how to boot to a local account win 7 open administrator account in windows 7 without password open administrator account in windows 7 without password

Answers

When Windows 7 restarts, hold down the F8 key to reach Advanced Boot Options and gain access to the Administrator account without a password.

What is Administrator account ?An administrator is someone who has the authority to make modifications to a computer that will impact other users. The ability to modify other user accounts, install software and hardware, access all files on the computer, and adjust security settings are all available to administrators.You cannot log on as an administrator if your account type is not Administrator unless you are aware of the user name and password for another account on the computer that has administrative privileges. You can request a change in your account type if you are not an administrator.Special Administrator accounts with an appropriate level of network access should be created to enable users to do administrative activities, and the credentials for these accounts should be provided to the users who occasionally need Administrator access.

To learn more about Administrator account refer :

https://brainly.com/question/28494209

#SPJ4

Complete the sentence.

Career and technology student organizations hold events to raise money for a charity. This is called __________

O conference
O competition
O networking
O philanthropy

Answers

The answers is D. Philanthropy

what is a method of delivering ads from one central source, or server, across multiple web domains, allowing advertisers the ability to manage the rotation and distribution of their advertisements?

Answers

Third-party ad servers allow advertisers to control the rotation and distribution of their adverts by distributing them from a single central source, or server, across a number of different web domains.

A servers in computing is a piece of hardware or software (computer program) that offers functionality to other programs or devices, often known as "clients." The client-server model is the name given to this architecture. The functions that servers can offer are frequently referred to as "services," such as executing computation for a client or distributing data or resources among several clients. A single client can use several servers, and a single server can serve many different clients. A client process may operate on the same device or it may establish a network connection with a server running on a different device. Database servers, file servers, mail servers, print servers, web servers, game servers, and application servers are examples of typical servers.

The request-response model is typically the one that implements client-server systems the most frequently (and is generally associated with it).

Learn more about servers here:

https://brainly.com/question/3211240

#SPJ4

what is the best capacity of the rom for the realization of the adder and adding 3 numbers (a, b, c) simultaneously, all of the inputs are 2-bit binary numbers?

Answers

A binary decoder converts "n" binary input signals into an equivalent code using 2n outputs. The term "decoder" indicates to translate or decode coded information from one format into another.

Another form of digital logic device is a binary decoder, which accepts inputs with 2-, 3-, or 4-bit codes depending on the number of data input lines. A decoder with a set of two or more bits is referred to as having an n-bit code since it may represent 2n different possible values. In order to convert a binary value into a non-binary one, a decoder typically sets exactly one of its n outputs to logic "1."

Learn more about binary here-

https://brainly.com/question/19802955

#SPJ4

How to make 4k quality in cc

Answers

Answer:

become professional

Explanation:

it is essential that you do practice hard

the sql command that allows a user to list the contents of a table is . a. insert b. select c. commit d. update

Answers

Select is the sql command that allows a user to list the contents of a table. Than any other commands.

Structured Query Language is referred to as SQL. When a database has to be contacted in order to carry out operations, functions, or queries with data, SQL commands are utilised as the communication protocol.

The database may be searched using SQL commands, and they can also be used to create, add, change, and drop tables, as well as to create and add data to them.

If you plan to work with SQL, you should be familiar with the fundamental SQL instructions listed below (also known as clauses).

Selecting and from

Which data columns to display in the results is decided by a query's SELECT section. You may use other choices to display data that isn't in a table column as well.

The sample below displays one computed column along with three columns that were Selected From the "student" database.

Learn more about SQL here:

https://brainly.com/question/13068613

#SPJ4

when near-monopolies, like in internet search and amazon in online shopping, start infringing on each other's turf, what kind of competition results?

Answers

A monopolistic competitor's demand curve that slopes downward.

Why does the demand curve under monopolistic competition have a downward slope?

A demand curve with a negative slope suggests that the only way to sell more product is to reduce the price. Because there is product differentiation and near substitutability under monopolistic competition, the demand curve is downward sloping and elastic.

What precisely is a downward-sloping demand curve?

When a commodity's price drops, more buyers come onto the market and begin buying it. This is due to the fact that they can now afford it even though they were unable to buy it while the prices were high. When a result, as the price declines, the demand increases and the demand curve slopes downward.

To know more about monopolistic competitor's visit:-

https://brainly.com/question/28187802

#SPJ4

Sheila makes the To-Do list below.
To Do:
-Go to stores
Grocery
Clothing
Shoe
-Clean home
Bathrooms
Dust
Vacuum
-Cook dinner
-Send birthday card
She then makes some changes and revises the To-Do
list.
Mark this and return
Which actions did Sheila have to take to make the
changes observed? Check all that apply.
use outline view
promote "To Do" to Level 1
promote four lines to Level 2
export formatting
import formatting
promote six lines to Level 3
convert tables to text
convert tables to graphs
Next
Submit

Answers

The thing that Sheila have to take to make the changes observed are options A, B and C:

promote "To Do" to Level 1promote four lines to Level 2promote six lines to Level 3

What is  revised To-Do list.

A revised To-Do list is a modified version of an original To-Do list. It may include changes such as adding or removing tasks, reordering tasks, or adjusting the formatting of the list.

The revised To-Do list in the example you provided includes changes to the formatting, with some tasks being promoted to different levels in an outline structure.

Therefore, in the above question, the other options listed (use outline view, export formatting, import formatting, convert tables to text, convert tables to graphs) do not seem to be related to the changes observed in the revised To-Do list.

Learn more about To-Do list from

https://brainly.com/question/3795486
#SPJ1

when the size of an array increases by a factor of 100, the selection sorting time increases by a factor of

Answers

The correct answer is 2,000 the size of an array increases by a factor of 100.

An array is a collection of comparable types of data. For instance, if we need to store the names of 100 distinct people, we may construct an array of the string type that can carry 100 names. string collection = new In this instance, the array above can only contain 100 names. An array is a collection of elements with the same kind that are kept in contiguous memory areas and may be referenced to individually using an index to a unique identifier. Declaring an array of five int values eliminates the need to declare five different variables (each with its own identifier).

To learn more about array click the link below:

brainly.com/question/13107940

#SPJ4

2. (10 points) (both csce423 and csce 823) in the approx-tsp-tour(g,c) algorithm, why do we recommend to use mst-prim to generate minimum spanning tree, comparing to mst-kruskal?

Answers

APPROX-TSP-TOUR(G,c) algorithm: Consider 0 be the starting and ending point, Construct MST by using Prim’s Algorithm. List all vertices visited in preorder by Depth First Search of the constructed MST and then add the source vertex at the end.

An algorithm is a finite sequence of precise instructions that is often used to solve a class of particular issues or to carry out a calculation (/aelrm/ (listen)). For carrying out calculations and data processing, algorithms are utilized as specifications. In order to reroute the code execution along different paths, more sophisticated algorithms can carry out automatic deductions (also known as automated reasoning) and apply tests that are based on logic and math. Alan Turing already used concepts like "memory," "search," and "stimulus" to describe machines in a metaphorical manner by evoking aspects of human nature.

In contrast, a heuristic is a problem-solving method that may not be fully detailed or may not provide accurate or ideal solutions, particularly in issue domains where there isn't a clearly defined correct or ideal conclusion.

Learn more about Algorithm here:

https://brainly.com/question/22984934

#SPJ4

The key light needs to be dimmer and less punctuated than any other light source in the picture true or false 

Answers

The statement "The key light needs to be dimmer and less punctuated than any other light source in the picture" is false.

What is light?

Electromagnetic radiation that can be seen by the human eye is known as light or visible light. There are various kinds of light based on their wavelength. Your photos' impression of shape and texture is greatly influenced by the direction of the light.

To be more specific, the width of the shadows is determined by the light's direction.  And it's the shadows that give your photos a feeling of shape and character.

Therefore, the statement is false.

To learn more about light, refer to the link:

https://brainly.com/question/28545096

#SPJ1

explain the variety of transforms that are used to convert from object coordinates to 2d screen coordinates

Answers

In computer graphics, 2D transformation is the process of changing and repositioning the already-existing visuals in two dimensions. There are three primary rigid transformations: reflections, rotations, and translations. Transformations aid in changing an object's location, size, orientation, shape, and other attributes.

Transformations come in a variety of forms, including translation, rotation, scaling up or down, and shearing. A transformation is referred to as a 2D transformation when it occurs on a 2D plane. The object coordinates that we used to define the object must be converted into the world coordinate system that we are using for the scene before we can place it there. Our required change is referred to as a modeling transformation. When a figure is translated, it is moved in any direction. Flipping a figure over a line is called reflection. Rotation is the process of turning a figure a specific amount around a point. When we dilate a figure, we increase or decrease its size.

To learn more about  2D transformation click the link below:

brainly.com/question/29697407

#SPJ4

unsupervised representation learning with deep convolutional generative adversarial networks. is the meaning of

Answers

In a machine learning (ML) model called a generative adversarial network (GAN), two neural networks fight with one another to make predictions that are more correct.

What unsupervised representation deep convolutional?

For the purpose of using both labeled and unlabeled data to train a classifier model, the semi-supervised GAN is an extension of the GAN architecture. The supervised and unsupervised discriminator models used in the semi-supervised GAN can be implemented in Keras using at least three different methods.

Therefore, GANs have proven helpful for semi-supervised learning, fully supervised learning, and reinforcement learning despite being initially presented as a type of generative model for unsupervised learning.

Learn more about unsupervised here:

https://brainly.com/question/29766531

#SPJ1

how many local variable declarations, excluding parameters, are required for the method/function (i.e., do not consider themain program)?

Answers

The required local variable declaration for function is 1.

What is variable?

Variable in programming is a value that can change over time depending on conditions, statement, or function in program.

In the given pseudocode is consist two part, the main program and the function of FutureValue. There are only three variables in the main program called global variable, namely amount, newAmount, and interestRate.

Local variable are variables that only exist in one function, not in the main program. In the function FutureValue only declare one variable which is finalAmount, excluding parameters that been used.

You question is incomplete, but most probably your full question was (image attached)

Learn more about local variable here:

brainly.com/question/28274892

#SPJ4

http status codes are codes or numbers that indicate some sort of error or info message that occurred when trying to access a web resource. when a website is having issues on the server side, what number does the http status code start with?

Answers

When attempting to visit a web resource, HTTP status codes are codes or numbers that represent some kind of error or information message.

The World Wide Web was built on the Hypertext Transfer Protocol (HTTP), which is used to load webpages with hypertext links. Running on top of other layers of the network protocol stack, HTTP is an application layer protocol created to transport data between networked devices. A client machine makes a request to a server, which then sends a response message, in a normal HTTP flow.

An HTTP method, also known as an HTTP verb, specifies the action that the HTTP request anticipates the requested server will take. The two most used HTTP methods, for instance, are GET and POST.

Know more about HTTP here:

https://brainly.com/question/13152961

#SPJ4

what federation system technology uses federation standards to provide sso and exchanging attributes?

Answers

The correct response is d) Shibboleth". The opposing party has turned it into a shibboleth. Participation may be turning into a buzzword, nearly a shibboleth.

A shibboleth is any practice or tradition, typically a term or phrase that sets one group of people apart from another (Biblical Hebrew: romanized: bble). Shibboleths have been employed by numerous communities throughout history as passwords, basic self-identification methods, affinity and loyalty indicators, maintenance of established segregation, or defence against actual or imagined dangers. Shibboleth was a dialect of ancient Hebrew that meaning "ear of grain" (or, according to some, "stream"). Speakers of similar dialects pronunced it with an s, although some tribes gave it a sh sound. The Ephraimites and the Gileadites, two Semitic tribes, engage in a fierce conflict throughout the narrative. For instance, the American term truck was referred to as a lorry in Britain. Such terms were employed by American soldiers as a shibboleth to identify Nazi agents. By using lollapalooza, American troops could tell the Filipinos from the Japanese.

Learn more about Shibboleth here

https://brainly.com/question/14337709

#SPJ4

"What federation system technology uses federation standards to provide SSO and exchanging attributes?

a) OAuth

b) Open ID Connect

c) Windows Live ID

d) Shibboleth"

explain the differnece between a training data set and a variation data set. why are these data sets used routinely with data mining techniqeis in the xl miner

Answers

Training sets are frequently used to estimate various parameters or to assess the effectiveness of various models.

After the training is complete, the testing data set is used. To ensure that the final model operates properly, the training and test sets of data are compared. The primary distinction between training data and testing data is that the former is a subset of the original data used to train the machine learning model, while the latter is used to assess the model's accuracy. In general, the training data is bigger than the testing dataset. You can reduce the effects of data discrepancies and gain a better understanding of the model's properties by using similar data for training and testing.

Learn more about Data here-

https://brainly.com/question/11941925

#SPJ4

what is the minimum number of paths that would need to be broken to prevent computing device a from connecting with computing device e?

Answers

The minimum number of paths that would need to be broken to prevent computing device a from connecting with computing device E is 3 .

What is computing device?

Computing device refers to, as appropriate, a student-owned computing device used as part of the Bring-Your-Own-Device (BYOD) Program or an Ontario Tech owned computing device that was loaned to the student. This Software Use Agreement ("Agreement"), as it may be updated from time to time by the University, must be accepted without modification in order to use the Software, which is a privilege, not a right.

You ("User") and the University are the parties to this Agreement. You confirm that, as a User, you have read, comprehended, and agree to be bound by the terms and conditions contained in this Agreement by clicking "I agree" below.

Learn more about Computing device

https://brainly.com/question/4774474

#SPJ4

adding one disk to the towers of hanoi problem doubles the number of disk moves required to solve it. group of answer choices true false

Answers

False; (2n -1) is formula for adding one disk to the towers of Hanoi problem doubles the number of disk moves.

Towers of Hanoi has an exponential complexity of 2n - 1, meaning that when n goes up by 1, there are twice as many moves, or an exponential increase in complexity. The Towers of Hanoi solution calls for utilizing the prior technique twice plus an additional move. It only needs one move to be solved for one disk. It requires utilizing the answer for 1 disk twice plus 1, or 1 move + 1 move + 1 move, which is 3 moves, to solve it for 2 disks. In the equation 2n - 1, where n is the number of disks, we can express this. If (n > 0) is initially true, it will continue to be true because in the recursive scenario, the method calls itself with the same parameter. As a result, n does not change.

Learn more about Towers of Hanoi  here:

https://brainly.com/question/28097481

#SPJ4

jannah is working on setting up one of the features on her digital camera because she wants to have a dated analog of the images she takes so that she can see exactly when shots were taken. what feature is jannah setting up?

Answers

The feature Jannah is setting up analog dates of the image is timestamp.

What is timestamp?A timestamp is a token or packet of information used to ensure timeliness; It includes timestamped data, such as a time, as well as a signature generated by a Trusted Timestamp Authority (TTA).Timestamps are used for a variety of synchronization purposes, such as identifying the exact date and time of an event. A timestamp that includes a date in the form of a calendar date and a time in the form of a time of day.The TIMESTAMP data type is used for values that include both a date and a time component. The range of TIMESTAMP is from '1970-01-01 00:00:01' UTC to '2038-01-19 03:14:07' UTC. A DATETIME or TIMESTAMP value can have a trailing fractional seconds part with a precision of up to microseconds (6 digits).

To learn more about timestamp refer to :

https://brainly.com/question/12950658

#SPJ4

question 1 what does tcpdump do? 1 point generates ddos attack traffic brute forces password databases handles packet injection performs packet capture and analysis

Answers

Carries out packet capture and analysis; tcpdump does this for you by deciphering the binary data included in the packets and translating it into a format that is usable by humans.

You can use the extremely well-liked, simple command-line tool Tcpdump to record and examine packets. The open source libpcap library is utilized by tcpdump. Many packet capture and analysis programs make use of that well-liked packet capture library. The "Disseminated" in DDoS refers to the attack traffic being distributed across a large number of hosts, which causes the attack to originate from several different computers. Attack traffic originates from numerous separate hosts.

Learn more about command here-

https://brainly.com/question/3632568

#SPJ4

you receive an email that pretends to be from a company, bank, or government agency, and they are asking you to enter or confirm your personal information. what is the name of this type of scam?

Answers

This type of scam is Phishing scam. You receive a message that appears to be from someone you know in a phishing scam. Typically, it encourages you to click on a link or contains an urgent request for sensitive information.

Phishing is a sort of online scam that preys on consumers by sending them emails that appear to be from reputable companies, such as banks, mortgage lenders, or internet service providers. Customers of Nordea were targeted by phishing emails with Trojan viruses that installed keyloggers onto the victims' machines and directed them to a phony bank website where hackers stole login details, a crime dubbed the "largest ever online bank theft" by the cyber security firm McAfee. Phishing, sometimes known as "fishing," is an assault that tries to steal your money or your identity by tricking you into disclosing personal information on websites that look official but are actually fraudulent.

Learn more about Phishing scam here

https://brainly.com/question/29220901

#SPJ4

what process allows the restoration of retinal to its original configaration for it to absorb light angain.

Answers

Rods and cones, sometimes referred to as photoreceptors, are a group of light-sensitive cells that are responsible for mapping the light picture on the retina's surface. Light is transformed into electrical impulses by the rods and cones, which are then sent to the brain through nerve fibers.

In humans and other animals, rod and cone cells in the retina of the eye detect light to produce nerve impulses through a sensory transduction process called visual phototransduction. Light sensitivity. To discern items in this backdrop, the eye must quickly adapt to the background lighting due to light adaptation. It takes five minutes for the body to adjust to the light.When rhodopsin levels, which were low due to bleaching in a bright environment, gradually rise, rod cells can become more sensitive to dim light. Rhodopsin regeneration occurs in darkness and is essential for dark adaptation.

To learn more about retina's click the link below:

brainly.com/question/15207568

#SPJ4

true or false: a dma engine is a specific device within a system that can orchestrate transfers between devices and main memory without much cpu intervention. select one: true false

Answers

True, A system's DMA engine is a unique component that manages transfers between hardware and main memory with minimal CPU involvement.

Memory is a system or device used in computing to store data for immediate use in a computer, associated computer hardware, or digital electronic devices. Primary storage and main memory are frequently used interchangeably when referring to one another. The store is a dated word that describes memory.

Compared to storage, which is slower but cheaper and has a bigger capacity, computer memory functions at a high speed. Computer memory also acts as a disc cache and write buffer to speed up reading and writing in addition to storing opened programs. Operating systems use RAM that is not being used by running programs for caching. The computer memory's contents can be moved to the storage if necessary; this is a frequent method.

Learn more about memory here:

https://brainly.com/question/11103360

#SPJ4

the inner loop of insertion sort is designed to put an element into its final position. group of answer choices true false

Answers

The inner loop of insertion sort is designed in a way that puts an element into its final position. Therefore, the given statement is 'true'.

Insertion sort is a simple sorting algorithm that works similarly to the way you sort playing cards in your hands. In the insertion sort, the array is virtually split into a sorted and an unsorted part. Values from the unsorted part of the array are picked and placed at the final position in the sorted part.

So in conclusion, it is stated that in the insertion sort algorithm, the inner loop picks an element and places it into its correct position.

You can learn more about insertion sort at

https://brainly.com/question/12929022

#SPJ4

the first-fit memory allocation algorithm is slower than the best-fit algorithm (on average). select one: true false

Answers

It is false that the first-fit memory allocation algorithm is slower than the best-fit algorithm (on average).

The operating system must maintain a list of each memory location, noting which ones are free and which ones are busy, for both fixed and dynamic memory allocation schemes. The available partitions must then be assigned as new workloads are added to the system.

Allocating Memory First-Fit:

The free/busy list of tasks is maintained using this strategy, which maintains low-ordered to high-ordered memory organization. This method assigns the first work the first memory space that is greater than or equal to its size. Instead of looking for a suitable partition, the operating system simply assigns the task to the closest memory partition that is large enough.

Know more about operating system here:

https://brainly.com/question/6689423

#SPJ4

what is the most suitable scheme primitive for writing a multiple-conditional statement similar to c's switch statement?

Answers

The most suitable scheme primitive for writing a multiple-conditional statement similar to c's switch statement is (if ...).

What is switch statement?

Switch statement is a command for control to transfer next to one of statement in switch body statement depending the value of expression.

If statement is the command for control to continue to next statement if meet specific condition, implicitly converted to bool, then evaluates to true.

So, basically switch statement and if statements are similar it require the value meets specific conditions to be able to continue control.

You question is incomplete, but most probably your full question was (image attached)

Learn more about switch here:

brainly.com/question/20228453

#SPJ4

Other Questions
select the tunics that contain the intramural plexus. question 17 options: mucosa muscularis submucosa serosa social security and medicare benefits are typically available (choose best answer) multiple choice question. only to individuals who were not eligible to participate in a 401(k) plan. only to individuals whose income level at retirement falls below the poverty line. to individuals who paid payroll or self-employment tax during their working lives. prisons were originally created to serve what purpose? prisons were originally created to serve what purpose? mental illness rehabilitation punishment religious ritual watch the animation and identify the correct conditions for forming a hydrogen bond. check all that apply. briefly explain why a maclaurin polynomial cannot be created for the function . your answer should only be one or two sentences. which type of assessment informs teachers how to plan upcoming lessons for students to achieve unit goals and objectives? please solve variable expression m+8+6n3 the code segment below uses the procedure isfound (list, item), which returns true if item appears in list and returns false otherwise. the list resultlist is initially empty. seven lines of coding program reads as follows. first line: for each item in input list 1. second line: left curly bracket. third line: indented, if (is found (input list 2, item ). fourth line: indented, left curly bracket. fifth line: indented, append (result list, item ). sixth line: indented, right curly bracket. seventh line: right curly bracket which of the following best describes the contents of resultlist after the code segment is executed? responses all elements in inputlist1 followed by all elements in inputlist2 all elements in inputlist1 followed by all elements in inputlist2 only elements that appear in both inputlist1 and inputlist2 only elements that appear in both inputlist1 and inputlist2 only elements that appear in either inputlist1 or inputlist2 but not in both lists only elements that appear in either inputlist1 or inputlist2 but not in both lists only elements that appear in inputlist1 but not in inputlist2 from a point 1.5 mi from a launcch pad at cape canaveral, an observer sights a space shuttle at an angle of elevation of 10 degrees moments after it is launched. after 10 seconds, the angle of elevation is 50 degrees. how far does the space shuttle travel vertically during the 10 second interval? what is the average speed of the space shuttle during that interval? The Fed's most visible monetary tool is probablya. open market operations.b. change in reserve requirements.c. Reg Z.d. discount rate policy (T/F) Web crawlers or spiders collect information from Web pages in an automated or semi-automated way. Only the text of Web pages is collected by crawlers. which one of the following enzymes, when activated, would indirectly affect the reaction direction of phosphoglucomutase? the late robert blanchard and dixie blanchard derived rich descriptions of rat intraspecific aggression and defense by using performances that mix theatre, visual arts, music, dance, gesture, and rituals are a new type of experimental theatre called . I oppoe Julio' claim that people hould avoid all meat product becaue I aw him eating a hamburger yeterday. Determine which type of logical fallacy i expreed in thi tatement. (1 point) Repone Red Herring Red Herring Slippery Slope Slippery Slope Anecdotal Humor Anecdotal Humor Ad Hominem Ad Hominem according to u.s. law, which of the following is not an element a company/plaintiff is required to prove to win a false advertising lawsuit about an ad containing a comparative claim? members of an attest engagement team and those who can influence attest engagements have to apply certain safeguards if they seek employment from the client. the safeguards, designed to mitigate undue influence and self-interest threats to independence are as follows: TRUE/FALSE. in the human resource department and is responsible for developing criteria for matching prospective employees to available jobs. in the united states, the macro-marketing system receives criticism because it does not help solve which of the following problems? A clothesline rope is 8 feet long. Which of these is another way to express 8 feet?answer choicesa. A/Fb. B/Gc. C/Hd. D/J