when historical data are unavailable or obsolete, it would be appropriate to use a forecasting procedure.

Answers

Answer 1

No, the forecasting procedure is not appropriate to use when the historical data is unavailable

What is the forecasting procedure?

In historical forecasting, sales information from a certain time period is reduced to quantifiable revenue trends. This entails analyzing your progress over a period of months, quarters, or years and assuming that the percentages will remain the same as your profit margins increase going forward.

Various methods under forecasting uses the historical data :

First method is straight-line method

In this method the financial analyst uses the history of the data and gives the statistical results

He also proposes the solutions for the better growth in future

Thus we can conclude that the history of data is must for the forecasting process

To know more on forecasting follow this link:

https://brainly.com/question/14683037

#SPJ4


Related Questions

What function in the secrets module can generate random integers between one and 10, including the possibility of both one and 10?

secrets.random(10)
secrets.random(10)

secrets.randbelow(10)
secrets.randbelow(10)

secrets.random(11)
secrets.random(11)

secrets.randbelow(11)
secrets.randbelow(11)

Answers

In Python, the function secrets.randbelow(11) in the secrets module can generate random integers between one and 10, including the possibility of both one and 10.

What purposes serves Python?

Python is a universal language, which means it may be used to make many various types of applications and isn't tailored for any particular issues.

How is Python practical in the real world?

Python is today among the most well-known and frequently utilized programming languages around the world, despite having its origins as a side project bearing the moniker Monty Python. Python is used for big data, deep learning, and even design in addition to web and software development.

To learn more about Python visit:

https://brainly.com/question/24994224

#SPJ1

which of the following services provides, upon network request, ip addresses to devices that need them?

Answers

(Option B.) The DHCP server is responsible for providing IP addresses to devices on a network when requested. It is used to dynamically assign IP addresses to devices in a local network, allowing the devices to communicate with each other.

Which of the following services provides, upon network request, IP addresses to devices that need them?

Option B. A DHCP (Dynamic Host Configuration Protocol) server.

The DHCP server can also be used to configure additional settings, such as the subnet mask, gateway address, and DNS server information. This allows for efficient management of IP addresses and other network settings.

The DHCP server can be incredibly useful in managing a network, as it allows for efficient assignment of IP addresses and other necessary settings. This automates the process of assigning IP addresses to devices, ensuring that the network is organized and running smoothly. Additionally, the DHCP server allows for easy changes to network settings when needed.

Since the task is not complete, here's the full answer:

Which of the following services provides, upon network request, IP addresses to devices that need them?

A. DNS ServerB. DHCP ServerC. RouterD. Firewall

Learn more about Internet: https://brainly.com/question/27003790

#SPJ4

Secret-key cryptography The following is a simple encryption/decryption scheme for character strings in ASCII code: • The plaintext and the ciphertext are divided into blocks of n ASCII characters. • The encryption/decryption key K is a string of n ASCII characters. • The encryption and decryption functions are both the bitwise exclusive OR function, XOR, applied to the blocks of ASCII characters and the key: E(P, K) = XOR(P, K) and D(C, K) = XOR(C, K), where P is a block of n plaintext characters, C is a block of n ciphertext characters, and K is the key.
b) If one encryption takes 0.01 μs, determine the time needed to try all possible keys on a ciphertext of 30 characters.
c) How long would the key have to be to increase the search time to more than one month?

Answers

To determine the time needed to try all possible keys on a ciphertext of 30 characters, we first need to determine the total number of possible keys.

How long will be the ciphertext?

Since each key is made up of n ASCII characters, and there are 128 possible ASCII characters, the total number of possible keys is 128^n.

If one encryption takes 0.01 microseconds, then the time needed to try all possible keys would be 0.01 * 128^n microseconds.

If we set the time needed to try all possible keys equal to the number of microseconds in one month, we can solve for n in the equation 0.01 * 128^n = 2.63 * 10^12. This yields n = approximately 20.

This means that the key would have to be at least 20 characters long in order to increase the search time to more than one month.

To Know More About ciphertext, Check Out

https://brainly.com/question/9380417

#SPJ4

what button should be clicked to add a record to a table

Answers

Open the table in Datasheet View or the form in Form View to add a record to it. Click New in the Records group on the Home tab, or click New (blank) record, or press Ctrl+Plus Sign (+). In the record picker, look for the record with an asterisk and enter your updated information.

What is the purpose of record on a table?

A table consists of records (rows) and fields (columns). Text, numbers, dates, and hyperlinks are examples of data types found in fields. For the record: Contains specialized data, such as information on a certain employee or product.

A Tuple, Record, or Row is a single entry in a table. In a table, a tuple represents a collection of connected data. As a result, Option 1 is correct.

Learn more about tables:
https://brainly.com/question/22536427?
#SPJ1

By default, if you hide rows or columns that are used in a Sparkline graphic, the hidden data _____.
A)appears in the Sparkline
B) does not appear in the Sparkline
C) sometimes appears in the Sparkline
D) is changed to unhidden data

Answers

By default, if you hide rows or columns that are used in a Sparkline graphic, the hidden data : B) does not appear in the Sparkline.

Sparkline Graphic:

Sparkline charts (or simply Sparkline charts) were introduced by Edward Tufte as small charts that can visualize large amounts of data.

The main feature of this graph his type is its small size. This makes it impossible for the viewer to see the exact values ​​because axes and annotations are missing (or enabled). But Sparkline charts are great for showing the big picture.

There are four types of Sparkline's:

1. Line Sparkline. It is the simplest and most common type of a Sparkline Chart, which consists of points connected by line segments.

2. Area Sparkline. It's basically a line Sparkline chart with the area between the series and the x-axis filled with color.

3. Column Sparkline's. Each point in this type of Sparkline-based data visualization is represented as a vertical rectangle whose height corresponds to the data value it represents.

4. Win or lose Sparkline. This is a variation of the Column Sparkline chart type, where the data points are also plotted as vertical rectangles, but each point in the Win/Loss Sparkline only indicates whether the corresponding value is positive, negative, or zero. increase. As a result, each such graph is visually split in half, with the top containing columns of positive values ​​and the bottom containing columns of negative values.

Learn more about Sparkline Graphic:

brainly.com/question/3308461

#SPJ4

C++ only!Write code to assign name and density properties to currMat, and store currMat in requestedMaterials. Input first receives a name value, then a density value.Input example: Water 993 Tar 1153 quit -1#include #include #include using namespace std;class Material {public:void SetNameAndDensity(string materialName, int materialDensity) {name = materialName;density = materialDensity;}void PrintMaterial() const {cout << name << " - " << density << endl;}string GetName() const { return name; }int GetDensity() const { return density; }private:string name;int density;};int main() {vector requestedMaterials;Material currMat;string currName;int currDensity;unsigned int i;cin >> currName;cin >> currDensity;while ((currName != "quit") && (currDensity > 0)) {/* Your code goes here */cin >> currName;cin >> currDensity;}for (i = 0; i < requestedMaterials.size(); ++i) {currMat = requestedMaterials.at(i);currMat.PrintMaterial();}return 0;}

Answers

A list of tuples containing the names and Density values of the materials are created by the code block. The python 3 program runs as follows;

Array() produces an array of Objects as a result. However, I have no idea how to extract every key/value pair from that object and put them in a new one.

input = name ()

#accepts user name input as [n for n in name.

split()]

Density inputs are accepted as inputs with the formula density = [int(d) for d in density.

split()]

#divide the inputs for density

list(zip(name, density)), currMat)

#creates a list of the requested tuples from the inputs.

Using the formula Material = currMat, assign another variable to print (requestedMaterial)

The program's sample run is attached.

Learn more about program here-

https://brainly.com/question/14618533

#SPJ4

Which of the following is not the correct way to store CUI?

Answers

Personal systems shouldn't be used to store CUI. The amount of printing and hard copy storage should be minimized. CUI must be kept in secure locations that can either detect or prevent illegal access. A cover sheet or a secured container or cabinet must be used as at least one physical barrier to safeguard printed CUI documents.

What is CUI?

Every device that transmits CUI or stores information on a mobile device must encrypt it. As long as it is safeguarded by additional authorized logical or physical safeguards, CUI may be kept at rest on any non-mobile device or in a data center without being encrypted.

If the government building has security for ongoing access monitoring, CUI will be kept in open containers, desks, or cabinets beyond business hours.

To learn more about CUI from the given link:

https://brainly.com/question/29626714

#SPJ4

the autonomic nervous system (ans) plays a crucial role in the stress responses by regulating chiefly the ______and_____systems.

Answers

The autonomic nervous system (ANS) plays a crucial role in the stress responses by regulating chiefly the lymphatic and respiratory systems.

The autonomic nervous system controls the internal body functions and responses which are not under the voluntary control. The functions control by the autonomous nervous system are heart rate, body fluid circulation, respiration, urination, sexual arousal and pupillary response.The lymphatic system is one of the part of the circulatory system, it consists of a network of connected tubes called as lymphatic vessels. These vessels distribute the lymph fluid throughout the body. The lymph fluid consists of white blood cells which provide immunity against the pathogen.The respiratory system is the system which controls the exchange of gases (Carbon dioxide and oxygen) between the body and the environment.Both lymphatic circulation and respiration are the two functions controlled by the autonomic nervous system.

To know more about systems visit:

https://brainly.com/question/28342100

#SPJ4

Select all that apply. Which of the following will cause a counterclockwise rotation of a RotateTransition object, rtrans?rtrans.setFromAngle(60.0);rtrans.setByAngle(15.0);rtrans.setAngle(60.0, 15.0);rtrans.setFromAngle(60.0);rtrans.setByAngle(-15.0);rtrans.setFromAngle(-60.0);rtrans.setByAngle(15.0);

Answers

Over the course of its runtime, this Transition generates a rotating animation. This is accomplished by routinely adjusting the node's rotation variable.

The angle measurement is given in degrees. If a fromAngle is not specified, the rotate value of the node is used instead. If toAngle is specified, it terminates there; otherwise, start value plus byAngle is used. If both toAngle and byAngle are provided, the toAngle takes precedence.

import javafx.scene.shape.*;

import javafx.animation.transition.*;

     Rectangle rect = new Rectangle (100, 40, 100, 100);

    rect.setArcHeight(50);

    rect.setArcWidth(50);

    rect.setFill(Color.VIOLET);

     RotateTransition rt = new RotateTransition(Duration.millis(3000), rect);

    rt.setByAngle(180);

    rt.setCycleCount(4);

    rt.setAutoReverse(true);

     rt.play();

Learn more about variable here-

https://brainly.com/question/13375207

#SPJ4

a. define a function that asks the user for the values of p, i, and n, calculates and print the monthly payment m and the total to be paid t.

Answers

Data Input and Output in Python. generating data. You can employ the print() function to display the contents of the screen.

What does a coding function mean?

Functions are another key idea in programming because they let you put a piece of software that performs a specific purpose inside a specified block and afterwards call that function when you require it with a single, brief command rather than repeatedly typing the same code.

What different kinds of functions are there?

The polynomial functional of degree zero is a constant function. Linear Function: The first-degree polynomial function. Quadratic Function: The degree two polynomial function. Cubic Function: The degree three polynomial function.

To know more about function visit:

https://brainly.com/question/27368526

#SPJ4

which combination of words completes the following statement? unlike , which update a single point at a time and maintain a history buffer of the stored data, display an entire waveform that overwrites the data already displayed.

Answers

Charts update on a regular basis and keep a record of the previous data, in contrast to graphs, which just show the most current array of numbers put to them.

What do cache memory and buffer memory mean?

In order to account for speed differences between two programs that communicate or utilise data, buffers are used. The computer's cache is a more compact and quick memory component. 2. Input and output operations are its main uses. It is employed during disk reading and writing operations.

A memory buffer is where?

The Memory with Random Access (RAM) of a system is where the buffers memory is primarily kept. The data that will be sent to slower power supplies and other auxiliary storage devices can be temporarily stored in this section of the CPU.

To know more about buffer visit:

https://brainly.com/question/29341068

#SPJ4

which of the following authentication tools work locally in linux machines? group of answer choices netbios lass logauth pam ldap

Answers

Correct option:- PAM

The PAM (Pluggable Authentication Modules) tools work locally in Linux machines.

What is PAM and how does it operate?

The functionality, automation, and reporting requirements for managing privileged accounts are met by PAM for administrators. Additionally, it upholds the concept of least privilege since it enables the administration and supervision required to reduce the risk associated with accounts that have more power than the average user.

How does PAM work?

PAM streamlines the authorization and monitoring of privileged users to assist organizations in guarding against unintentional or intentional misuse of privileged access. The best method to stop attacks is to restrict and monitor privileged user access to your most important data and systems

.How does Linux's PAM authentication function?

Depending on how it is configured, PAM requires the user to submit an authentication token, which is often a password but could potentially be a fingerprint. If successful, pam acct mgmt is called by vsftpd. PAM ascertains the legitimacy of the user's account.

To know more about PAM visit:

https://brainly.com/question/29981449

#SPJ4

Print ads for cars are more likely to present a lot of facts than are print ads for clothing. Thus, the car manufacturers are relying on ______ persuasion.

Answers

Print ads for cars are more likely to present a lot of facts than are print ads for clothing. Thus, the car manufacturers are relying on heuristic systematic  persuasion.

What is systematic persuasion ?The technique of using arguments from logic and reason to influence attitudes or opinions is known as systematic persuasion. On the other side, heuristic persuasion refers to the strategy of using habit or emotion to influence attitudes or beliefs.Persuasion is typically thought of as mediated communication practises. Any message intended to mould, reinforce, or alter perceptions, emotions, beliefs, behavioural intentions, and behaviours should be regarded as persuasive communication, according to communication professor Gerald R. Miller (2002).In order to persuade clients, a variety of persuasion strategies are utilised in commercial environments, including low balling, foot in the door, door in the face, and others. The use of heuristic persuasion is common in theoretical models.

To learn more about  systematic persuasion refer to:

https://brainly.com/question/13537776

#SPJ4

servers such as print and database are examples of____ servers that fulfill a specific network function

Answers

The servers such as print and database are examples of dedicated servers that fulfill a specific network function.

A  dedicated server is solely used by one client, one service, or one application. Functionality on a dedicated server, which the backend provider owns, controls, and manages, is comparable to that on an internal server. The user or client connects remotely to the dedicated server through the Internet to access a variety of server-based services.

It can also host applications and/or services, data storage, and backup services. Internally, a dedicated server can also be utilized to host and deliver specialized services, including establishing dedicated file or network servers.

It could be time to move your website to a dedicated server if it is having trouble keeping up with an increase in traffic. This is effectively a server that exclusively hosts your website, and it can boost not just the speed at which pages load but also the security of your website.

To learn more about dedicated servers click here:

brainly.com/question/14302227

#SPJ4

a system administrator is selecting an operating system for use by the company's research and development team. the team requires an os that can be easily modified and changed to meet its requirements. which of the following operating systems will be the best choice for the users?

Answers

The greatest option for users will be (C) Linux operating system.

What is Linux?

A family of open-source Unix-like operating systems known as Linux is based on the Linux kernel, which Linus Torvalds initially made available on September 17, 1991.

The kernel and other system-supporting programs and libraries, many of which are made available by the GNU Project, are often included in Linux distributions, which is how Linux is typically packaged.

Many Linux versions have the word "Linux" in their name, while the Free Software Foundation prefers to refer to their operating system as "GNU/Linux" to stress the significance of GNU software, which has generated some debate.

The company's research and development team is choosing an operating system with the help of a system administrator.

The team needs an OS that can be quickly customized and altered to suit its unique needs. For users, Linux will be the best option.

Therefore, the greatest option for users will be the (C) Linux operating system.

Know more about Linux here:

https://brainly.com/question/25480553

#SPJ4

A system administrator is selecting an operating system for use by the company's research and development team. The team requires an OS that can be easily modified and changed to meet its particular requirements. Which of the following operating systems will be the best choice for the users?

A. Windows 10 Enterprise

B. Mac OS X

C. Linux

D. Windows 7 Professional

Alicia wants a database to open using the frmNavigation object only.To do this,she must disable the ____ option from Backstage View using Options and the Current Database.A)Allow Full MenusB)Display Navigation PaneC)Display Navigation FormD)Enable error checking

Answers

FrmNavigation object is the only one Alicia wants to use to open databases.To accomplish this, she must use Options and the Current Database to disable the Display Navigation Pane.

A database with more than two connected tables. By inserting a primary key from the primary table into the secondary table, the relationship between the two tables is established. tables for databases. Database tables organize rows and records for storage. The four objects that make up a database in Access are tables, queries, forms, and reports. Three operations are used to create sets of data in a relational database: Select: Creates a subset of records that satisfy the specified criteria. A join brings together relational data from various tables. Project: Produces a subset of a table that contains only the designated columns. Multiple users can produce distinct integers from sequences, which are database objects. In order to protect networks from security threats, firewalls are another crucial tool.

Learn more about database here:

https://brainly.com/question/6447559

#SPJ4

What is a hanging indent and how do I create one?

Answers

The initial line of a paragraph is set off by a hanging indent, often referred to as a second line indent, which also indents each consecutive line of the paragraph after the first line.

In Microsoft Word, how can I make a hanging indent?

There is a function in Microsoft Word that may be used to add a "hanging indent."

When producing citations for references pages, this capability is really helpful.

1. Select the text you want to format with a hanging indent and highlight it.

2. Click just on arrow in the bottom right corner of the "Paragraph" portion of the ribbon just at top of the page.

3. Find "Special" in the middle of the newly opened window.

4. Select "Hanging" by using the downward pointing arrow.

5. At the window's bottom, click "OK."

6. Your highlighted text has a hanging indent and the window will vanish.

To know more about the hanging indent, here

https://brainly.com/question/22760170

#SPJ4

TRUE/FALSE. wans connect nodes, such as workstations, servers, printers, and other devices, in a small geographical area on a single network.

Answers

Answer:

True

Explanation:

if a motorcycle class is created as a subclass of a vehicle class, which of the following statements is correct? group of answer choices the motorcycle class can directly use neither the private instance variables nor the public methods of the vehicle class. the motorcycle class can directly use the public methods, but not the private instance variables, of the vehicle class. the motorcycle class can directly use the private instance variables, but not the public methods, of the vehicle class. the motorcycle class can directly use both the private instance variables and the public methods of the vehicle class.

Answers

In the case of creating a motorcycle class as a subclass of a vehicle class, then the correct statement is B: 'the motorcycle class can use the public methods, but not the private instance variables, of the vehicle class'.

In the paradigm of object-oriented programming, inheritance refers to a mechanism whereby one class acquires the property of another class. For example, a child class or subclass inherits the characteristics of its parent class.

For instance, when a motorcycle class is created from a vehicle class, the motorcycle class is known as a subclass and the vehicle class is known as a subclass; In this instance, the motorcycle class can acquire the public methods of the vehicle class, but it is not allowable to it to use the private instance variables of the vehicle class'.

You can learn more about inheritance at

https://brainly.com/question/4560494

#SPJ4

Complete the following tasks on Building B> Floor 1> Network Room > CorpServer2: 1. Add fault tolerance for the System (C:) volume by creating a mirrored volume using Disk 1. • Initialize the disks as either MBR or GPT. Complete the following tasks on Building A > Floor 1> Office1 > Office1: 2. Based on the content of the email messages, delete any emails that have potentially malicious attachments. 3. Delete any items that appear to be spear phishing email messages. 4. Encrypt the D:\Finances folder and all of its contents.

Answers

The completion of the following tasks is as follows:

On Disk 1, create a mirrored volume of the System (C:) volume to add fault tolerance.Using Disk 2, Disk 3, and Disk 4, create a RAID 5 volume that provides both fault tolerance and improved performance using the settings like Volume size: 2 TB, Drive letter: R, Format: NTFS, and Volume label: Data.

What is a mirror of an existing volume?

The mirror of an existing volume may be as follows:

Right-click Start and select Disk Management.Click OK to initialize new disks.Maximize the Disk Management window to better view the volumes.Right-click the System (C:) volume and select Add Mirror.Select Disk 1 which will be used for the mirrored copy.Select Add Mirror.Click Yes to convert the basic disk to a dynamic disk.

In Disk Management, right-click a disk with free space and select New RAID 5 Volume. This makes the function of the system well-oriented and specifically designed for RAID 5 volume.

To learn more about Mirrored volume, refer to the link;

https://brainly.com/question/29848805

#SPJ1

In order to learn a skill, all of the following types of information are abstracted from technical skills except

Answers

In order to learn a skill, all of the following types of information are abstracted from technical skills except mental blueprints of each skill.

What are mental blueprints?Your mental blueprints resembles your expectations' road plan. This is the irrational yardstick by which you judge whether or not something will make you happy.People also have mental and cognitive blueprints, which are founded on their thoughts, feelings, and actions and ultimately influence their behaviours.The term "cognitive" is a fancy term used to describe how each of us thinks, understands, reasons, learns, and retains knowledge and information.Two people will really analyse the same information differently and come to judgments that are impacted by their mental models.According to some experts, some cognitions, mannerisms, and personality traits are innate, much like one's DNA, which is passed down to you from your parents through your genes.No one is certain how much cognitive blueprinting is inherited from our genes, despite the fact that research in this field is still in its infancy and is constantly growing.

Completed question

In order to learn a skill, all of the following types of information are abstracted from technical skills except ____.

a. environmental information

b. physical demands of the movement

c. mental blueprints of each skill

d. a comparison of the actual outcome and the intended outcome based on available feedback

Learn more about mental blueprints refer to :

https://brainly.com/question/29480927

#SPJ4

Build a 32-bit synchronous Up/Down counter. The inputs are Reset and Up. When Reset is 1, the outputs are all 0. Otherwise, when Up = 1, the circuit counts up, and when Up = 0, the circuit counts down.

Answers

A synchronous up/down binary counter with the ability to count in both directions, to or from a predetermined value as well as zero, is known as a bidirectional counter.

What is binary counter?In addition to counting "up" from zero and raising or incrementing to a preset number, it is occasionally essential to count "down" from a preset value to zero. This enables us to create an output that activates when the zero count or another preset value is reached.Normal terminology for this type of counter is "Down Counter" (CTD). With each external clock pulse from a predetermined value, the count in a binary or BCD down counter drops by one. Special dual-purpose ICs, such the 4-bit binary Up or Down counters in the TTL 74LS193 or CMOS CD4510, include an additional input pin to choose between the up count and down count modes.

To Learn more About binary counter refer to:

https://brainly.com/question/29649160

#SPJ4

in most cases, you should use the post method instead of the get method for submitting a form becaus

Answers

Requesting assistance, making an explanation, or answering other responses. expressing opinions; support them with examples or personal experience.

Because sent data is a component of the URL, GET is less secure than POST. Because the parameters are not saved in the browser history or the web server logs, POST is slightly safer than GET. What you need to know is right here. POST requests, at their most basic level, include user parameters in the body of an HTTP request when communicating with a Web server. On the other hand, GET requests place such arguments in the URL. For a few reasons, POST is more secure than GET. The URL is used to pass GET arguments. This indicates that server-side parameters are stored.

Learn more about server here-

https://brainly.com/question/7007432

#SPJ4

the predominant type of coding in long-term memory is; the primacy effect (from the serial position curve experiment) is associated with; why is classical conditioning considered a form of implicit memory?; a patient with impaired episodic memory would most likely have the greatest difficulty in; one of the defining characteristics of implicit memory is that; the primacy effect is attributed to; according to the propaganda effect we are more likely to; this multiple-choice question is an example of a ___________ test.; the recency effect occurs when participants

Answers

The primacy effect is related to (A) long-term memory (from the serial position curve experiment).

What is long-term memory?

The stage of the Atkinson-Shiffrin memory model known as long-term memory (LTM) is where informative knowledge is stored indefinitely.

In contrast to working memory and short-term memory, which last for only 18 to 30 seconds on average,

it is defined: Explicit memory (declarative), episodic memory, semantic memory, autobiographical memory, and implicit memory are all terms used to describe long-term memory (procedural memory).

Long-term memory is linked to the primacy effect (from the serial position curve experiment).

Examples of long-term memory include the ability to recall significant events from the distant past (such as an early birthday, graduation, wedding, etc.), as well as practical knowledge gained from your first job after college.

Therefore, the primacy effect is related to (A) long-term memory (from the serial position curve experiment).

Know more about long-term memory here:

https://brainly.com/question/25040884

#SPJ4

Correct question:
The primacy effect (from the serial position curve experiment) is associated with __________ memory.

a. long-term

b. short-term

c. sensory

d. implicit

3.8.7: select movie titles with like. the given sql creates a movie table and inserts some movies. the select statement selects all movies. modify the select statement to select movies with the word 'star' somewhere in the title. run your solution and verify the result table shows just the movies rogue one: a star wars story, star trek and stargate.

Answers

Modify the select statement to select movies with the word 'star' somewhere in the title:

SELECT title

FROM movie

WHERE title LIKE '%star%';

What do you mean by word?

A word is a linguistic construction that normally consists of one or more uttered sounds or their written equivalents and serves as the main signifier of meaning. Word can also be used to describe a brief sentence or expression.

According to the given question,

It is the smallest unit of language that can be uttered in isolation with semantic or pragmatic content.

Therefore, the modify the select statement to select movies with the word 'star' somewhere in the title:

SELECT title

FROM movie

WHERE title LIKE '%star%';

To learn more about word, visit:

brainly.com/question/20659068

#SPJ4

which of the following information is a security risk when posted publicly on your social networking profile?

Answers

Your birthday information is a security risk when posted publicly on your social networking profile.

What is security risk?

Key security controls in applications are found, evaluated, and put into place through a security risk assessment. Additionally, it emphasizes preventing application security flaws and vulnerabilities. An organization can see the application portfolio holistically—from the viewpoint of an attacker—by conducting a risk assessment.

It assists managers in deliberating wisely about the use of resources, tools, and security control implementation. As a result, an assessment is a crucial step in the risk management process of an organization.

The depth of risk assessment models is influenced by factors like size, growth rate, resources, and asset portfolio. When faced with time or money restrictions, organizations can perform generalized assessments. However, generalized analyses may not always offer the precise mappings between assets, related threats, identified risks, impact, and mitigating controls.

Learn more about security risk

https://brainly.com/question/29642504

#SPJ1

Retrieve the names of all employees in department 5 who work more than 10 hours per week on the âProductXâ project.
p10ssn â (Π essn (Ï hours > 10 (works-on |X| pno = pnumber(Π pnumber (Ï pname = âProductXâ (project))))
Π lname, minit, fname (Ï dno = 5 (employee |X| ssn = essn (p10ssn)))
select lname, minit, fname
from employee, works-on, project
where ssn = essn AND pno = pnumber AND
dno = 5 AND hours > 10 AND
pname = âProduct Xâ;

Answers

Data points that are connected to one another are stored and accessible in a relational database, which is a form of database.

What is a Relational Database (RDBMS)?A relational database is a database that uses the relational model of data, which was first put out by E. F. Codd in 1970. A relational database management system is a programme used to maintain relational databases (RDBMS). The option to query and manage the database using SQL (Structured Query Language) is available in many relational database systems.E. F. Codd, an IBM employee, was the first to develop the phrase "relational database" in 1970. In his research paper "A Relational Model of Data for Large Shared Data Banks," Codd coined the phrase. He clarified the meaning of the term "relational" in both this work and subsequent ones. Codd's 12 rules are a well-known specification of what makes up a relational database system.

Find the attachment answer

Learn more about Relational Database refer to :

https://brainly.com/question/13262352

#SPJ4

suppose you conduct a t test on mean with h subscript 0 colon space mu equals 100 space space space v s space h subscript 1 colon space mu greater than 100. if sample size is 15 and test statistic t0

Answers

If the test statistic from your sample has a negative value, the p-value for a two-sided test is equal to twice the p-value for the lower-tailed p-value. If the test statistic from your sample has a positive value, the p-value is two times that of the upper-tailed p-value.

What exactly is a hypothesis test?

To test the null hypothesis and the alternative hypothesis, all analysts employ a random population sample. The null hypothesis typically states that two population parameters are identical; for instance, it can claim that the population mean return is equal to zero.

Why are hypotheses tested?

The process of hypothesis testing is used to assess the strength of the evidence from the sample and provides a framework for making decisions about the population, i.e., it offers a way to understand how reliably one can extrapolate observed findings in a study sample to the larger population from the sample.

To know more about Tail hypothesis test visit;

https://brainly.com/question/29996729

#SPJ4

sending e-mails to lure people into revealing personal information is a technique known as phishing. t/f

Answers

Answer:

true

Explanation:

quizlet

3.2) (m.3)design a turing machine with input alphabet {!, ?} that accepts a string if and only if the string has the property described.a. the input string has the same number of !'s and ?'s.

Answers

A Turing machine is a mathematical model of computation that can be used to simulate the behavior of a hypothetical computer.

How to design the machine?

Turing machine that accepts a string if and only if it has the same number of '!'s and '?'s can be designed as follows:

The Turing machine has two states: "Counting" and "Accepting".The initial state of the Turing machine is "Counting".When the Turing machine is in the "Counting" state and reads a '!', it increments a counter by one and moves to the right on the tape.When the Turing machine is in the "Counting" state and reads a '?', it decrements the counter by one and moves to the right on the tape.When the Turing machine is in the "Counting" state and reads the end-of-input symbol (i.e., the blank symbol), it checks the value of the counter. If the counter is zero, it transitions to the "Accepting" state. Otherwise, it transitions to the "Rejecting" state.When the Turing machine is in the "Accepting" state, it accepts the input string.When the Turing machine is in the "Rejecting" state, it rejects the input string.

To Know More About Turing machine, Check Out

https://brainly.com/question/29570188

#SPJ4

Other Questions
"And froze the genial current of the soul." In this line from Elegy Written in a Country Churchyard the word genial means O boiling. O hostile. O unfeeling.O cheerful. If the refractive index of glass is 1.66 and the angle of prism is 60, find the angle of minimum deviation. a surveyor is looking to see if the resident is receiving proper care How the binary ionic compound KBr is named?; When naming a binary compound which element is named first the metal or the nonmetal?; How are the metals named in a binary ionic compound nonmetals?; When an ionic compound is named what will always be named first? So recently my baby turtle seems to have died i still have him im not sure if hes really dead or not how do i know if hes dead and do turtles have muscle memory? Which expressions are equivalent to 4b? Which statement is true? a.Hair color and IQ are examples of Mendelian traits. b.Mendelian traits follows a normal distribution. c.Mendelian traits are controlled by multiple genes. d.Mendelian traits cannot be shown on a bell curve. what was the mistake that was made? a payday loan company charges 3.2 percent interest for a four-week period. what would be the annual interest rate from that company? solar energy causes water to evaporate into the atmosphere how does the water vapor become a cloud; which of the following is not a characteristic of groundwater; which of the following is not a characteristic of deep ocean currents Which method could be used to strip specific characters from the end of a string? strip O remove rstrip estrip There are constants in B4 and B3 that will be utilized for every computation in the following function, which will be copied down the entire column in which it resides. Which of the following IF functions is most efficient? a. IF(B8>B$4,8$3*B8,0) b. IF(B8>$B4,$B3*88,0)c. IF(B$8>B4,B3*B$8,0) d. IF($B8>B4,B3*$88,0) e. IF(B8>B4,B3*B8,0) write a formal email about introducing yourself for the first time with your teacher. huntington disease is a dominant disease caused by expansion of the trinucleotide repeat region of the htt gene that results in the production of a huntingtin protein with an expanded number of glutamines. an animal model with most features of this syndrome could be created by 65 589 653 - 65 + 36 = answers A motorcycle accelerates from rest at 6.0 m/s2. How much farther will it travel during the second 3.0 s of its motion than during the first 3.0 s. on 1/1/2020, abc company borrowed $600,000 on 10%, 10-year mortgage note from a local bank. each annual payment, $97,647, contains both interest and principal. what is the total interest amount that abc will be paying over the 10-year period? Select whether each of the following features will increase or decrease the strength of a fiber reinforced polymer composite. Shorter fibers [Choose Thinner fiber [ Choose Higher volume percent of fibers [Choose Higher strength Lower strength Loading perpendicular to the length of the fiber Which of the following is a colligavtive property Why is osmosis is a special kind of diffusion?