Which type of media is best for accessing up-to-date reports on international news situations?.

Answers

Answer 1

Internet new sites are the best way to get up-to-date information on international news situations.

The Internet, also known as "the Net," is a global system of computer networks — a network of networks in which users at any one computer can obtain information from any other computer if they have permission (and sometimes talk directly to users at other computers). It was created in 1969 by the United States government's Advanced Research Projects Agency (ARPA) and was initially known as the ARPANET. The initial goal was to build a network that would allow users of one university's research computer to "talk to" users of other universities' research computers. ARPANet's design had the additional benefit of allowing messages to be routed or rerouted in more than one direction.

Learn more about Internet here:

https://brainly.com/question/10873104

#SPJ4

Answer 2

The most effective kind of media for gaining access to the most recent reports on world events is the internet.

What are the various types of journalism?

Each genre and style of journalism employs a distinct method and writes for a different audience and purpose. Investigative, news, reviews, columns, and feature writing are the five main subcategories of journalism.

What categories of news stories exist?

Seriousness: local, state, national, or international breaking news; politics; economy; crime; war; disasters; scientific discoveries.        

                                        Newspapers often fall under the category of print media. Newspapers gather, edit, and publish news stories and reports. Additionally, evening newspapers are published.

Learn more about journalism

brainly.com/question/27159868

#SPJ4


Related Questions

use the _______ attribute on a video element to display user controls for the video player.

Answers

The correct answer is controls attribute on a video element to display user controls for the video player.

A boolean attribute, controls has this property. It indicates that video controls must be visible when it is present. Play should be one of the video controls. The control to play the movie is specified using the HTML video> controls Attribute. The Boolean value is that. In HTML5, this property is brand-new. Included in the video control should be: Play. Video controls like play, stop, and volume are added through the controls property. Always include width and height characteristics is a good idea. PlayerAdapter. An abstract class called PlayerAdapter manages the media player at its core.

To learn more about controls attribute click the link below:

brainly.com/question/15412039

#SPJ4

the following while loop terminates when j > 20. j = 0; while (j < 20) j++; true or false

Answers

FALSE: The following while loop will not terminates when j > 20. j = 0;  and while (j < 20) j++.

Describe the term while loop?When a condition is not satisfied, a "While" loop is executed to repeat a certain piece of code an undetermined number of times. For instance, if we want to question a user for a number ranging from one and 10, but we don't know how often they might enter a greater number, "Whereas the value is just not inside 1 and 10," we inquire repeatedly.A do while loop is an exit-controlled loop that will run its body at least once regardless of whether the test condition is false. Such a scenario might occur if you need to terminate your software based on user input.

The given while loop terminates when j > 20.

j = 0;

while (j < 20)

j++;

Thus,

The following while loop will not terminates when j > 20. j = 0; and while (j < 20) j++.

To know more about the while loop, here

https://brainly.com/question/26568485

#SPJ4

If introduced as follows, the subquery can return which of the values listed below?
WHERE VendorID NOT IN (subquery)
A)a single value
B)a column of one or more rows
C)a table
D)a subquery can't be introduced in this way

Answers

The correct answer is B)a column of one or more rows  the subquery can return which of the values listed below.

The vertical arrangement of the number is referred to as a column, while the horizontal groupings are referred to as rows. There are three categories of subqueries: scalar, row, and table. A table subquery returns many rows, a row subquery multiple columns from a single record, and a scalar subquery a single value. Click the Page Layout tab on the Ribbon. Row and column headers should be printed after selecting the Print check box under the Headings heading in the Sheet Options group. Press CTRL+P to bring up the Print dialogue box, then click OK to print the worksheet.

To learn more about return click the link below:

brainly.com/question/14894498

#SPJ4

It is always much more difficult to obtain services or products than cash.


True


False

Answers

It is always much more difficult to obtain services or products than cash is False.

What is the services or products  about?

In the above case, It is not necessarily more difficult to obtain services or products than cash. The difficulty of obtaining specific services or products may depend on a variety of factors, such as their availability, cost, and the individual's resources and abilities.

Therefore, studies has shown that in some cases, it may be easier to obtain certain services or products than cash, while in other cases, it may be more difficult. So this makes the above statement to be false.

Learn more about services from

https://brainly.com/question/25922327

#SPJ1

the restrictions most commonly implemented in packet-filtering firewalls are based on __________.
A) IP source and destination address
B) Direction (inbound or outbound)
C) TCP or UDP source and destination port requests
D) All of the above

Answers

All of the following serve as the foundation for the restrictions that are most frequently used in packet-filtering firewalls.

Describe packet filtering.

On the Network, package filtering is the procedure of allowing or disallowing packets depending on destination and source addresses, port, or protocols at a network interface. The method is combined with packet rewriting & network addressing (NAT).

The usage of packet filtering

As a firewall mechanism, packet filtering monitors incoming and outgoing packets and decides whether to allow them to proceed or stop depending on the destination and source Network Technology (IP) addresses, protocols, and ports.

To know more about packet filtering visit:

https://brainly.com/question/14403686

#SPJ4

What is the term that refers to dedicated trains often of 100 or more railcars that move from an origin to a destination to serve a specific customer

Answers

The term that refers to dedicated trains often of 100 or more railcars that move from an origin to a destination to serve a specific customer is unit train

A unit train is a long, continuous train of railcars that is dedicated to a specific customer or shipment. Unit trains are typically used to transport large quantities of a single commodity, such as coal or grain, from a mine or production facility to a destination, such as a power plant or port. They are often made up of 100 or more railcars and are designed to move as efficiently as possible from the point of origin to the destination.

Learn more about unit train here: https://brainly.com/question/7992107

#SPJ4

Exercise 4.3.7: Password Checker C
Write a program with a method called passeerCheck to return if the string is a valid password. The method should have the signature shown in the starter code.
The password must be at least 8 characters long and may only consist of letters and digits. To pass the autograder, you will need to print the boolean retum value from the
powardCheck method.
Hint: Consider creating a String that contains all the letters in the alphabet and a String that contains all digits. If the password has a charecter that isn't in one of those Strings.
then it's an illegitimate password

Answers

Answer:

here is an example of how you can implement the passerCheck method:



def passwerCheck(password: str) -> bool:

   # Check if the password is at least 8 characters long

   if len(password) < 8:

       return False

   # Create strings with all letters and all digits

   all_letters = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'

   all_digits = '0123456789'

   # Check if the password consists only of letters and digits

   for ch in password:

       if ch not in all_letters and ch not in all_digits:

           return False

   # If the password passed all checks, return True

   return True

# Test the passwerCheck method

print(passwerCheck("password"))  # False

print(passwerCheck("password123"))  # True

print(passwerCheck("12345678"))  # False

print(passwerCheck("123456789"))  # True

Explanation:

Here's an example implementation of the passwordCheck method in Java:

public class PasswordChecker {

   public static void main(String[] args) {

       String password = "Abc12345";

       boolean isValid = passwordCheck(password);

       System.out.println(isValid);

   }

   

   public static boolean passwordCheck(String password) {

       String alphabet = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";

       String digits = "0123456789";

       

       // Check length

       if (password.length() < 8) {

           return false;

       }

       

       // Check characters

       for (char c : password.toCharArray()) {

           if (!alphabet.contains(Character.toString(c)) && !digits.contains(Character.toString(c))) {

               return false;

           }

       }

       

       return true;

   }

}

In this example, the passwordCheck method takes a password as input and checks if it meets the given criteria. It first checks the length of the password, returning false if it's less than 8 characters.

Then, it iterates over each character in the password and checks if it belongs to the alphabet or digits strings. If a character is found that is not present in either of the strings, it means the password contains an illegitimate character, and false is returned.

If the password passes both length and character checks, the method returns true, indicating that the password is valid.

Learn more about passwordCheck method on:

https://brainly.com/question/20164509

#SPJ6

Give me 20 parts of the MotherBoard


-Thanks

Answers

The parts of a motherboard (or Logic Board) are:

CPU (Central Processing Unit)RAM (Random Access Memory)GPU (Graphics Processing Unit)BIOS (Basic Input/Output System)CMOS (Complementary Metal-Oxide Semiconductor)ROM (Read-Only Memory)NorthbridgeSouthbridgeExpansion slots (e.g. PCI, PCI-Express)Hard drive/SSD connectorsPower connectorsFan headersI/O ports (e.g. USB, Ethernet)Audio connectorsBIOS batteryCapacitorsInductorsTransistorsDiodesResistors

What is a motherboard?

A motherboard is a printed circuit board that acts as the computer's core component. It is the core hub that links all of the components of a computer and allows them to interact with one another.

A CPU socket, RAM slots, and expansion slots for other hardware components are all found on the motherboard. It also features power, data storage, and peripheral ports like as keyboards and mouse. The motherboard serves as the computer's "brain," controlling all of its processes.

Learn more about Mother Board:
https://brainly.com/question/5495597
#SPJ1

What aspect should you consider before adding pictures to a document?
You should structure the ________
of the document before you search for a relevant picture. #platogang

Answer only if plato/edmentum student or teacher

Answers

You should structure the text of the document before you search for a relevant picture.

What is a structuring picture?

In order to structure the text, you must number the parts, provide a title page, a table of contents that includes the section headings and subheadings, and add page numbers.

Images and other graphs can be added once the text has been organized. There should be a table of contents for the images as well. We can state unequivocally that before looking again for a pertinent image, we should first arrange the text.

Therefore, the document's text should be organized before you look for a pertinent image.

To learn more about structuring, refer to the link:

https://brainly.com/question/29790223

#SPJ1

If a method does not contain any parameters, you must invoke it with a pair of empty parentheses.TrueFalse

Answers

The given statement "if a method has not parameters, then you need to invoke it with a pair of empty parantheses" is true because a method without any parameter can be invoked with a pair of empty parantheses.

Mostly methods contains parameter, to process some calcualtion. However, some methods in your programming problem dont need to have parameters. These methods can be invoked with a pair of empty paranthesis.

For example, a method that taken input from user and return or print output at where from it is called. The methods that dont take parameter, they generally use the local or global variable in that scope where it is written or invoked.

name="Aliya"

displayName(){

 cout<<"Your name is "<< name;}

displayName();// here the method is invoked.

You can learn more about methods with parameters at

https://brainly.com/question/12947158

#SPJ4

in a binary system, the digit ______ represents that electronic state of ______.

Answers

In a binary system, the digit zero (0) represents that the electronic state is off.

What is a Binary system?

A binary system may be defined as a type of system in which information can be considerably expressed through the combinations of the digits that are known as 0 and 1.

While in a binary system, the digit one (1) represents that the electronic state is on. Conveniently, binary numbers have only two digits that are 0 and 1, so every piece of data (number) can be represented using a binary numbering system.

Therefore, in a binary system, the digit zero (0) represents that the electronic state is off.

To learn more about the Binary system, refer to the link:

https://brainly.com/question/28222267

#SPJ1

A company makes a profit of $50 per software program and $35 per video game. The company can produce at most 200 software programs and at most 300 video games per week. Total production cannot exceed 425 items per week. How many items of each kind should be produced per week in order to maximize the profit?.

Answers

200 pieces of software and 235 games should be created each week in order to optimize earnings.

What does "software" actually mean?

Software is a set of guidelines, facts, or programs that direct computers to perform specific tasks.

                                 The antithesis of software is hardware, which refers to a computer's external parts. The term "software" refers to all programs, scripts, and other operations that take place on a device.

Let

x ------> the number of software program

y -----> the number of video games

we know that

   x ≤ 200    .......... inequality A

   y ≤ 300   ......... inequality B

 x + y ≤ 435  .........  inequality C

Using a graphing tool

The solution is the shaded area between the positive values fo x and y

see the attached figure

The vertices of the shaded area are

(0,0),(0,300),(135,300),(200,235),(200,0)

The profit function is equal to

 P = 50x + 35y

Substitute the value of x and the value of y of each vertices in the profit function

For (0,300) -----  P = 50(0) + 35(300) = $10,500

For (135,300) -----  P = 50(135) + 35(300) = $17,250

For (200,235) ----- P = 50(200) + 35(235) = $18,225

For (200,0) ----- P = 50(200) + 35(0) = $10,000

therefore

Every week, 200 pieces of software and 235 video games should be generated in order to optimize earnings.

Learn more about Software

brainly.com/question/985406

#SPJ4

what will the following code display? int number = 7; cout << "the number is " << "number" << endl;

Answers

The correct answer is The number is number will the following code display.

A constant is a piece of data whose value is fixed during the course of a programme. The final line of the programme or function is the end statement. For normal termination, the stop or return statements are used, whereas exit is used for abnormal termination. return 0: A return 0 indicates that the programme ran successfully and accomplished its goal. return 1: A return 1 indicates that there was an error when the programme was running and that it is not doing what it was designed to accomplish. Int main denotes that, at the conclusion of the program's execution, the function returns some integer, even '0'.

To learn more about The number is number click the link below:

brainly.com/question/17429689

#SPJ4

____ are screen objects used to maintain, view, and print data from a database.c

Answers

A database's data can be maintained, viewed, and printed using screen objects called froms.

Why do databases exist?

Making data accessible to users is a key aspect of access. Large amounts of data may be kept in one location, which makes databases a suitable choice for data access. The data can be accessed and changed simultaneously by several individuals.

What does database mean in plain English?

A database is a set of data that has been arranged for easy access and management. To make it simpler to access important information, you can organize data into tables, rows, and columns and index it.

To know more about Database visit:

https://brainly.com/question/29412324

#SPJ4

Most people learn about jobs through ________________, interacting with others to exchange information and develop professional or social contacts. Phone calls internet posts networking career fairs.

Answers

Most people learn about jobs through communicating, and interacting with others to exchange information and develop professional or social contacts. Phone calls internet posts networking career fairs.

What are jobs?

The word "job" denotes employment with a certain business. The amount of money that a company pays its employees is also referred to as a job.

The option to pursue a profession has been made possible by employment. A job offers both experience and financial support. There are four different categories of people: creators, constructors, thinkers, and innovators.

Therefore, most people acquire knowledge of their professions by communication and interacting with others in order to share information, forge connections, or both. Internet posts, networking events, and phone conversations.

To learn more about jobs, refer to the link:

https://brainly.com/question/17205577

#SPJ1

Jack is using a programming language that relies on routines and subroutines specified in a series of sequential steps. What type of programming language is Jack using

Answers

The type of programming language Jack uses that relies on routines and subroutines specified in a series of sequential steps is the procedural programming language.

What is a procedural programming language?

Procedural is one of the programming languages that have a form of development where the programs are reduced into three structures which is a sequence, decision, and iteration.

The procedural programming language often uses the subroutine and routine as a function because the code is hiding from other programmers. The subroutine and routine are also part of iteration structures.

Learn more about programming language here:

brainly.com/question/22654163

#SPJ4

modifier ______ is used to indicate that services of an outside laboratory were used.

Answers

When lab procedures are carried out by someone other than the treating or reporting physician or another qualified healthcare professional, modifier 90 is used.

What occurs inside a lab?

A laboratory test is a procedure where a medical professional collects a sample of your blood, urine, other bodily fluid, or body tissue to learn more about your health. The use of lab tests in the diagnosis or screening of a particular illness or condition is common.

What sort of lab is that, exactly?

Wherever scientific experiments, analyses, and research are done, it takes place in a laboratory, which can be a structure or a room. A classroom with scientific tools where students are taught science subjects like chemistry is known as a laboratory in a school, college, or university.

To know more about Modifier visit:

https://brainly.com/question/5429516

#SPJ4

if you declare a variable to be boolean, you can set its value to ____.

Answers

Boolean variables are types of variables that have only two possible values: true and false.

What happens if a subscript value is negative or more than the number of elements in an array?

An error occurs and the application is halted if an attempt is made to reference a nonexistent array element using a scalar subscript (one that is negative or bigger than the size of the dimension minus 1).

After an array has been declared, can its elements be reset?

After an array is declared, its elements cannot be reset. Arrays can only hold entire numbers. Arrays require more work from the programmer yet enable quicker program execution. As array subscripts, only whole numbers are allowed.

To know more about Boolean variables visit :-

https://brainly.com/question/29807832

#SPJ4

Due to the ______ of new media technology, many people predict newspapers will soon be ______.

Answers

Due to the you of new media technology, many people predict newspapers will soon be  damaged .

What does media mean today?

All print, digital, and electronic forms of communication fall under the umbrella term "media." Technology has impacted where and how knowledge is shared ever since the invention of the printing press (and even earlier).

Who can benefit from the evolving technology in the media?

Mass media's usage of technology has evolved over time and will likely continue to do so. Media is able to reach more people as a result of the machines' or technology's evolving and modernizing.

                           Additionally, it enhances both the audio and visual quality. Our perspectives on life are also altered by it.

Learn more about  media in technology

brainly.com/question/1150014

#SPJ4

Richard plans to head the marketing department in a marketing company, which is one of the top ten american companies. Arrange the steps in the sequence that richard has to follow in order to reach his goal.

Answers

Richard intends to lead the marketing department of a marketing firm that ranks in the top ten in the United States.

Arrange the steps in the order that Richard must take to achieve his goal. Webpack is a bundler, not a compiler, but it parses your source files like a compiler, bundles your code, and you can configure it so that it also transpiles (transforms) newer JS syntax into older but more widely accepted syntax, and it also allows you to partition your code into various modules. A Webpack config is a JavaScript object that allows you to customize one of Webpack's parameters. The majority of projects describe their Webpack configuration in a top-level webpack.config.js file.

Learn more about configuration here-

https://brainly.com/question/14307521

#SPJ4

Exercise 1.7.11: Integer Overflow points Let's Go! If an expression would evaluate to an int value outside of the allowed range, an integer overflow occurs. This could result in an incorrect value within the allowed range. In this program you will test for underflow and overflow in Java by adding 1 to the maximum value and subtracting 1 from the minimum value to see what happens to the output. Your output should include 4 items: • The minimum value for an integer. • The maximum value for an integer. • The minimum value subtracted by 1. • The maximum value with 1 added. What do the last two lines print out? Did this surprise you? What do you think it happening here? NOTE: Refer back to the previous example on Min and Max Values of Integers if you need to.

Answers

An integer overflow can result in the value wrapping and become negative, which goes against the program's premise and could produce unanticipated results.

Is there a fix for integer overflow?

Using larger integer types, such as Java's long or C's long long int, can lessen the risk of integer overflow occurring in languages where it is possible. There are libraries made to handle arbitrary large numbers if you need to store anything even greater.

What would happen with a Java integer overflow?

If it exceeds, it returns to the lowest value before continuing. If it falls below the maximum value, it returns there and continues. If you anticipate that this will happen frequently, think about utilising a datatype or object that can.

To know more about Java's  visit:-

https://brainly.com/question/29897053

#SPJ4

the button that is used to move a bullet point, or line of text, to the right in preset increments.

Answers

Increase The button known as List Level is used to incrementally change a line of text or a bullet point to the right.

How do you move the bullet points in PowerPoint?

Move the bullets or numbers by dragging the first-line indent marker. To move the text, drag the pointed top of the left indent marker.

How do I change the distance between text and bullets in PowerPoint?

Select List Indents and click the button on the right to change it. You may change the bullet's indent from the margin by clicking the directions in the "Bullet position" box, or you can change the distance between both the bullet and also the text by clicking the buttons in the "Text indent" box.

To know more about Bullet point visit:-

https://brainly.com/question/30168107

#SPJ4

A nuclear fission power plant has an actual efficiency of 39%. If 0. 25 mw of power are produced by the nuclear fission, how much electric power does the power plant output?.

Answers

The power plant output is about 0.0975 MW of electric power. Power is energy in order to make a tool that can be used to do their work.

To determine the output of the power plant, we can use the actual efficiency of 39% and the known power output of 0.25 MW. Efficiency is defined as the ratio of useful output power to the input power.

Thus, we can use the following formula to calculate the output power:

Output Power = Input Power x Efficiency

If we plug in the given values, we get:

Output Power = 0.25 MW x 39%

To calculate the power output we need to convert the percentage of efficiency into a decimal representation.

0.39 (decimal representation of 39%) is the decimal form of the efficiency.

So the output power will be:

Output Power = 0.25 MW x 0.39

Output Power = 0.0975 MW

So the power plant output is about 0.0975 MW of electric power.

Learn more about nuclear fission here https://brainly.com/question/29141330

#SPJ4

Illustrated Excel 2016 | Module 2: SAM Project 1b
Beth's Café
working with formulas and functions
GETTING STARTED
· Open the file IL_EX16_2b_FirstLastName_1.xlsx, available for download from the SAM website.
· Save the file as IL_EX16_2b_FirstLastName_2.xlsx by changing the "1" to a "2".
o If you do not see the .xlsx file extension in the Save As dialog box, do not type it. The program will add the file extension for you automatically.
· With the file IL_EX16_2b_FirstLastName_2.xlsx still open, ensure that your first and last name is displayed in cell B6 of the Documentation sheet. o If cell B6 does not display your name, delete the file and download a new copy from the SAM website.
PROJECT STEPS
1. Beth owns a café chain with stores in four different cities. She wants to analyze her sales of and sales taxes associated with her store's most popular items.
Go to the Sales Summary worksheet.
Copy the contents of the range A6:A11 and paste them into the range A15:A20 so that Beth can compare the sales of and the sales taxes for the same products.
2. In cell B11, create a formula using the SUM function to total the values in the range B6:B10.
Using the Fill Handle, copy the formula in cell B11 into the range C11:F11.
3. Copy the contents of cell F5 to cell F14.
4. In cell E15, create a formula that multiplies the value in cell E6 (Latte sales in Baltimore) by the value in cell E14 (sales tax rate in Baltimore). Use a relative reference to cell E6 and an absolute reference to cell E14 in the formula.
Copy the formula you created in cell E15 to the range E16:E19 to determine the sales tax for each item sold in Beth's Baltimore branch.
5. Using the Fill Handle, copy the formula in cell B20 to the range C20:F20. 6. Beth wants to open a new store in a different city, and she wants to estimate what her expenses would be.
In cell A22, change the text to Average tax rate for all cities (without including a period at the end of the phrase).
7. In cell D22, create a formula that uses the AVERAGE function to identify the average tax rate for all cities from the values in the range B14:E14.
8. Beth would like to know which products resulted in her collecting the highest and lowest amounts of sales tax.
In cell A23, enter the text Highest tax paid across products (without including a period at the end of the phrase).
9. In cell D23, create a formula that uses the MAX function to identify the highest value in the range F15:F19.
10. In cell D24, create a formula that uses the MIN function to identify the lowest value in the range F15:F19.
11. Beth is interested in knowing how much revenue she generated from these popular items in total after deducting taxes.
In cell D25 create a formula that subtracts the value in cell F20 (total sales taxes collected) from the value in cell F11 (total sales).
12. Beth would also like the final revenue total to be rounded without decimal places. In cell D26, create a formula using the ROUND function that rounds the value in cell D25 to zero decimal places.
13. Because Beth already calculated the average tax rate for all cities in cell D22, the range A27:D27 is no longer necessary. Delete the cells in the range A27:D27 and shift the remaining cells up.
14. Cell A3 contains a note indicating this document is incomplete. As the worksheet is now finished, clear the contents of cell A3.
Your workbook should look like the Final Figure on the following page. Save your changes, close the workbook, then exit Excel. Follow the directions on the SAM website to submit your completed project.
Final Figure 1: Sales Summary Worksheet

Answers

summary worksheet creation To complete the sales report, find the product name from the product list, the unit price from the sales report, the daily sales totals, and the total sales themselves.

What role does the sales summary sheet play?

All of these questions can be answered by senior management, sales managers, and sales representatives with the aid of a sales report. A more comprehensive understanding of the company's sales process is provided by this data-driven methodology.

How should a function's formula be written?

The notation y = "some expression involving x"—that is, y = f—can be used to describe an equation involving x and y that is also a function ( x).

To know more about  worksheet visit :-

https://brainly.com/question/13129393

#SPJ4

the c: drive on a windows pc is like a large filing cabinet, and is referred to as the

Answers

The C: drive on a Windows PC is the main storage drive for the operating system and installed programs. It is often referred to as the "system drive" because it stores important system files, as well as user data and installed programs. The C: drive is usually partitioned and formatted as a local hard drive when the operating system is installed, and it is typically the largest storage drive on a PC. You can think of it as a large filing cabinet that stores all of your important files and documents, as well as the programs and software you use on your computer.

For BI​ analysis, data need to represent the proper​ ________, the proper level of detail.
A.graininess
B.opacity
C.coarseness
D.summarization
E.granularity

Answers

For BI​ analysis, data need to represent the proper​ granularity, the proper level of detail.

The process of combining data from many sources into one consistent, coherent image is known as data integration. Washing, ETL simulation, and integration are all steps in the process that begins with intake. Data that does not exhibit a primary key/foreign key link is known as uninterested data. The data in this question is being analyzed by BI using information from the ERP system, several e-commerce systems, and networking applications. Since this data is not characterized using primary key/foreign key links, it is classified as not being integrated. Corporate intelligence is a process that uses data analysis and information delivery to assist executives, managers, and other business decision-makers in making the best possible business decisions.

Learn more about BI​ analysis here:

brainly.com/question/14927268

#SPJ4

A major problem with data that is purchased from data vendors is​ ________.
A. missing values
B. inconsistent data
C. nonintegrated data
D. granularity is too small
E. granularity is too large

Answers

The correct answer is A. missing values A major problem with data that is purchased from data vendors.

When there is no data value kept for the variable in an observation, missing data, also known as missing values, occurs in statistics. The inferences that may be derived from the data can be significantly impacted by missing data, which is a typical occurrence. The elimination of the rows or columns with null values is one method of addressing missing values. You can remove the whole column if any columns contain more than 50% null values. Similar to how columns can be discarded if one or more of their values are null, rows can likewise be deleted.

To learn more about missing values click the link below:

brainly.com/question/29003238

#SPJ4

What is TRUE about the following statement? cout << setw(4) << num4 << " A. It allows four spaces for the value in num4. B.It outputs "setw(4)" before the value in num4. C. It is incorrect because it should use setw(10). D. It is incorrect because it should use setw(num4).

Answers

The thing that is TRUE about the statement is option A. It allows four spaces for the value in num4.

What is the coding  about?

The setw() function is used to specify the minimum field width for the next insertion operation. In this case, the field width is set to 4, so the value in num4 will be inserted into the output stream and will take up a minimum of 4 spaces.

Therefore, It is important to note that this only applies to the next insertion operation and it does not affect how the value is stored in memory, it only affect the output.

It does not output "setw(4)" before the value in num4.It does not have to use setw(10) or setw(num4)

Learn more about coding from

https://brainly.com/question/22654163

#SPJ1

projects are said to be in analysis paralysis if so much time is spent ________.

Answers

As the data is in large amount ,if requirements documentation takes a long time, projects are considered to be in analysis paralysis.

What is Metadata ?

To make working with a specific instance of data easier, metadata distilled information about data.

Typically, spreadsheets, websites, videos, and photographs all include metadata.

Data tracking and working with such data are made easier by the provision of metadata. Basic document metadata includes things like date changed, time and date of creation, file size, data quality, and date produced.

A database is frequently used to manage and store metadata.

Hence, if requirements documentation takes a long time, projects are considered to be in analysis paralysis.

learn more about Metadata click here:

brainly.com/question/14960489

#SPJ4

if a loop does not contain within itself a way to terminate, it is called a(n):

Answers

A loop is said to as an infinite loop if it lacks a method of ending on its own.

What does loop termination mean?

A while or while loop's execution is stopped using a break.Following the break statement, the loop's statements are not executed.Break only leaves the loop where it occurs in nested loops.

How many different kinds of termination exist?

terminated without notice.voluntary ending.Unjustified termination.the conclusion of a job agreement or temporary employment.

To know more about infinite loop visit:

https://brainly.com/question/13142062

#SPJ4

Other Questions
In the u.s., over 3 million children are reported as abused or neglected each year, and more than 1 million are confirmed as victims of child maltreatment.a. Trueb. False May someone please help me my work is do tomorrow 1/4x - 3 = 1/2x + 12 What was the reason Milledgeville remained the capital for Georgia for 70 years? Which piece of evidence best supports the authors idea that challenging moments help people learn as they grow up? Who is the head of the majority party in the lower house of parliament ? Select the correct text in the passage.Which two events in the text work together to build tension in the passage?(1) Presently, I heard a noise again and woke up quietly, without starting, but just opened my eyes and peered about as wellas the dim light of the little oit lamp would allow me.(2) To my great surprise, I could make out somehow that Lemarchant was meddling with the bottles in the medicine-chest.(3) At four I woke, as I always did, and proceeded to take one of my powders. Curiously enough, before I tasted it, the grainappeared to me to be rather coarser and more granular than the quinine1 had originally put there. I took a pinch between myfinger and thumb, and placed it on my tongue by way of testing it. Instead of being bitter, the powder, I found, was insipid andalmost tastelessResetNext A lock that extends a solid metal bar into the door frame for extra security is the ___________.a. deadmans lockb. full bar lockc. deadbolt lockd. triple bar lock I think I ______ have failed the test, but i'm not sure. A. ought to B. might C. shall D. can Find the slope of a line perpendicular to the line whose equation is x - 6y =24. fully simplfy your answer A local charity is selling seats to a baseball game. Seats cost $32 each, and snacks cost an additional $8each. The charity needs to raise $640 to consider this event a success.Use the graph to approximate how many snacks the charity must sell if 10 seats are sold.32 s +8y=640 There are 11 girls and 5 boys taking taekwondo lessons. Write the ratio that compares the number of girls takingtaekwondo lessons to the total number of students taking taekwondo lessons Help please!!!! Its on illustrative mathematics and I need help!! Revenues are reported when a. a contract is signed b. work is begun on the job c cash is received from the customer d, work is completed on the job The gross increases in stockholders equity attributable to business activities are called a. assets b liabilities c. expenses d. revenues If accounts payable have increased during a period. a expenses on an accrual basis are greater than expenses on a cash basis b expenses on an accrual basis are the same as expenses on a cash basis c expenses on an accrual basis are less than expenses on a cash basis d revenues on an accrual basis are less than revenues on a cash basis The inventory method that assigns the most recent costs to cost of merchandise sold is a weighted average b LIFO c. FIFO d specific identification Which of the following taxes would be deducted in determining an employee s net a. FICA taxes b FUTA taxes c. SUTA taxes d all are correct Net income will result when a revenues (credits) = expenses (debits) b revenues (credits) > expenses (debits) c expenses (credits) = revenues (debits) d revenues (debits) > expenses (credits) Can someone please help me? A 2.7x10kg satellite orbits the Earth at a distance of 1.8x107m from the Earth's centre at aspeed of 4.7x10m/s. What force does the Earth exert on the satellite? The correct conjugation of the irregular verb nehmen in 2nd person is A. Du nehmst. B. Du nehmt. C. Du nimmst. Does two cups : 2/3 have a unit rateof three 6/7m - 3 = 5/7m - 5 Please Explain step by step if disposable income is $3,000 and saving is $1,200, how much is consumption? if xy + 9ey = 9e, find the value of y'' at the point where x = 0.