how to explain processes in database

Answers

Answer 1

Explanation:

The process database is a permanent repository of the process performance data from projects; it can be used for project planning, estimation, analysis of productivity and quality, and other purposes. 2. The PDB consists of data from completed projects, with each project providing one data record.


Related Questions

you've finished programming the app! Now your company has to decide whether to use an open source
license or proprietary license. explain which one you would choose and why.​

Answers

Answer:

Proprietary License gives you full ownership and trademark/patent opportunites. Open source allows for code donation and a community based development for your app. Generally speaking, if your a private entity creating an app for a client, you'll need the Proprietary Licence, which will allow you to sell the codebase to your client.

If your creating an app for your company as itself, you go either way, sell the license in licensing agreements, or have your companies community contribute and better your app from the inside.

Its entirely based on the agreements you set for the app.

When a style is changed in an embedded stylesheet, it automatically applies the change to every page linked to that style sheet.​

a. True
b. False

Answers

The statement that 'When a style is changed in an embedded stylesheet, it automatically applies the change to every page linked to that style sheet' is true.

This is because the stylesheets are usually used in web designing to control the layout of multiple pages at the same time. Hence, when you modify a stylesheet, the change applies to every page linked to that stylesheet.Embedded stylesheetAn embedded stylesheet is a type of stylesheet that is embedded within an HTML document. It is placed in the head section of the HTML document and contains CSS styles. Embedded stylesheets apply to a single HTML page and control the styling of that page. If there are multiple pages that need to have the same styling, each page would need its embedded stylesheet. However, this may lead to repetitive coding, and that is why an external stylesheet is more suitable.PageA page refers to a single HTML document in a web application. Each page typically has its HTML document file and may also have an embedded or an external stylesheet. The content of a page is displayed in a web browser, and it can be navigated to by clicking on a hyperlink

.In conclusion, changing a style in an embedded stylesheet applies the change to every page linked to that stylesheet, and this is an efficient way to modify styles for multiple pages at the same time.

To learn more about stylesheet:

https://brainly.com/question/32226913

#SPJ11

Which answer below is NOT an example of consumer data that an electronics company might track?

1 ​​​​​​​Websites their customers use most to purchase their laptops.
2 ​​​​​​​States where the majority of their customers live.
3 Which devices cost the most for them to make.

Answers

Answer:

the second one

Explanation:it feels right to me

Answer:

Which devices cost the most for them to make.

Explanation:

BRAINLIEST?

Write an inheritance hierarchy that models sports players. Create a common superclass to store information common to any player regardless of sport, such as name, number, and salary. Then create subclasses for players of your favorite sports, such as basketball, soccer or tennis. Place sport-specific information and behavior (such as kicking or vertical jump height) into subclasses whenever possible. All athletes need to have at least 2 specific attributes that are added on in the subclass

Answers

To model an inheritance hierarchy for sports players, we'll start by creating a common superclass named Player. This superclass will store information that applies to any player, regardless of their sport. Then, we'll create subclasses for specific sports like BasketballPlayer, SoccerPlayer, and TennisPlayer. These subclasses will include sport-specific attributes and behavior.

Here's the hierarchy:

1. Player (superclass)
  - Attributes: name, number, salary
  - Methods: None

2. BasketballPlayer (subclass of Player)
  - Attributes: verticalJumpHeight, threePointAccuracy
  - Methods: shoot(), dribble()

3. SoccerPlayer (subclass of Player)
  - Attributes: kickingPower, dribblingSkill
  - Methods: kick(), pass()

4. TennisPlayer (subclass of Player)
  - Attributes: serveSpeed, forehandAccuracy
  - Methods: serve(), hit()

In this hierarchy, the superclass Player includes common attributes such as name, number, and salary. Subclasses for specific sports then inherit these attributes and add their own sport-specific attributes (e.g., verticalJumpHeight for BasketballPlayer) and behaviors (e.g., shoot() method for BasketballPlayer).

Know more about the hierarchy click here:

https://brainly.com/question/30076090

#SPJ11

the clamp function limits a value to one between the min and max input parameter values. choose one • 1 point true false

Answers

The given statement, "The clamp function limits a value to one between the min and max input parameter values" is true.

The clamp function is used to restrict a given value within a specified range. The function takes three arguments: the value to be clamped, the minimum value, and the maximum value. If the given value is less than the minimum value, the clamp function returns the minimum value. If the given value is greater than the maximum value, the function returns the maximum value. Otherwise, the function returns the given value.

For example, if we have a value of 50, and we want to restrict it to a range of 0 to 100, we can use the clamp function. If we call clamp(50, 0, 100), it will return 50. If we call clamp(150, 0, 100), it will return 100. If we call clamp(-50, 0, 100), it will return 0.

The clamp function is commonly used in programming for a variety of purposes, such as input validation, normalization of values, and limiting the range of a variable. It is a simple yet powerful function that can save time and effort in writing code.

To learn more about programming, visit:

https://brainly.com/question/15683939v

#SPJ11

QUICKLY PLEASE!!!

Respond to the following in three to five sentences.

What is the purpose of netiquette guidelines?

Answers

Answer: As the conventional etiquette, which lays out rules of ethics in social contexts, the purpose of netiquette is to help create and sustain a friendly, relaxed and productive atmosphere for online contact, as well as to avoid putting pressure on the system and creating tension between users.

Explanation:

What do computers use to represent on and off? 0 and 1 1 and 2 RGB Megabyte

Answers

We use 0 to represent "off" and 1 to represent "on". Each one of the switches is a bit. A computer is called a "64-bit" computer if its registers are 64-bits long (loosely speaking). Eight switches in a row is a byte.

please convert this for loop into while loop

please convert this for loop into while loop

Answers

Answer:

The code segment was written in Python Programming Language;

The while loop equivalent is as follows:

i = 1

j = 1

while i < 6:

     while j < i + 1:

           print('*',end='')

           j = j + 1

     i = i + 1

     print()

Explanation:

(See attachment for proper format of the program)

In the given lines of code to while loop, the iterating variables i and j were initialised to i;

So, the equivalent program segment (in while loop) must also start by initialising both variables to 1;

i = 1

j = 1

The range of the outer iteration is, i = 1 to 6

The equivalent of this (using while loop) is

while ( i < 6)

Not to forget that variable i has been initialized to 1.

The range of the inner iteration is, j = 1 to i + 1;

The equivalent of this (using while loop) is

while ( j < i + 1)

Also, not to forget that variable j has been initialized to 1.

The two iteration is then followed by a print statement; print('*',end='')

After the print statement has been executed, the inner loop must be close (thus was done by the statement on line 6, j = j + 1)

As seen in the for loop statements, the outer loop was closed immediately after the inner loop;

The same is done in the while loop statement (on line 7)

The closure of the inner loop is followed by another print statement on line 7 (i = i + 1)

Both loops were followed by a print statement on line 8.

The output of both program is

*

*

*

*

*

please convert this for loop into while loop

hris has received an email that was entirely written using capitalization. He needs to paste this text into another document but also ensure that the capitalization is removed.

What should Chris do?

Answers

He should un caps lock it

Project Stem 7. 5 Code Practice
Use the function written in the last lesson to calculate the gold medalists’ average award money for all of their gold medals. Define another function in your program to calculate the average. Your program should then output the average award money, including the decimal place. Your program should use a total of two functions. You may assume that the user will provide valid inputs. Sample Run Enter Gold Medals Won: 3 How many dollars were you sponsored in total?: 20000 Your prize money is: 245000 Your average award money per gold medal was 81666.6666667
(btw, this must be in python).

Answers

In order to find the total of output of two different programs, you would need to provide the first program and its output.

What is Programming?

The process of carrying out a specific computation through the design and construction of an executable computer program is known as computer programming.

Analysis, algorithm generation, resource use profiling, and algorithm implementation are some of the duties involved in programming.

Your program calculates the average of a set of data and this program is not available, hence, to do this, you would add all the numbers and divide them by the total number of data there.

Read more about programming here:

https://brainly.com/question/23275071

#SPJ1

Consider the following code:
x=9 y = -2 z=2
print (x + y * z)
What is output?

Answers

Answer:

14

Explanation: The reason why is because adding a negative is pretty much subtracting by 2. 9-2=7. Then multiply 7 by 2 like add 7 to 7 and you get 14.

Which html attribute specifies an alternate text for an image, if the image cannot be displayed?.

Answers

The html attribute "<img> alt attribute" is used to specify the alternate text for an image if the image can not displayed.

What are alternate text?

An alternate text acronyms is (Alt text) which is a text description that can be added to an image's HTML tag on a Web page.

In conclusion, the html attribute "<img> alt attribute" is used to specify the alternate text for an image if the image can not displayed

Read more about alternate text

brainly.com/question/12809344

A computer monitor is a type of____________.

i. input device

ii. output device

iii. storage device

iii. software

iv. none of these

Answers

Answer:

output device, through which processed information are displayed in text or graphics.

A computer monitor is a type of output device. So the correct choice is :

option (ii) output device.

A computer monitor is an example of an output device because it is made to display visual data produced by the computer. The monitor receives signals and shows pictures, movies, text, and other visual content when it is attached to the graphics card of a computer. It acts as a user interface, enabling users to observe and engage with the output of the computer.

A monitor does not receive any input from the user, in contrast, to input devices, which send data or commands to the computer. Keyboards, mice, and scanners are examples of input devices that let users communicate with computers by entering data or issuing orders.

The monitor serves as an output device, for instance, when you play a video game and view the images on the screen, or when you open a document and read the text on the screen. It uses the output produced by the computer system and shows it to the user graphically.

To know more about monitors,

https://brainly.com/question/30619991

place the steps in order for customizing the outlook ribbon

Answers

Answer: click the file tab, then options, click the customize ribbon, click the add new tab button, rename the tab and command group, add a command to the group

Explanation:in that order, just did it.

Which of the following will NOT correctly increment the value by one of a previously initialized integer variable named counter?


counter + 1;

counter++;

counter = counter + 1;

counter += 1;

All of the above will correctly increment the value by one.

Answers

counter + 1; will raise the value by one but it will not set the value of counter to itself + 1, therefore,

counter + 1; is the correct answer

The​ 3-sigma limits for a process whose distribution conforms to the normal distribution includes​ _______ of the observed​ values, in the long run.

Answers

The 3-sigma limits for a process whose distribution conforms to the normal distribution include 99.74% of the observed values, in the long run. This means that if you have a process that is normally distributed, then in the long run, 99.74% of the values will fall within three standard deviations of the mean.

This is an important concept to understand because it can be used to help control a process. For example, if you know that 99.74% of the values will fall within three standard deviations of the mean, then you can set up control limits that correspond to those values. This can help you ensure that your process stays within the desired range.

Understanding the 3-sigma limits can help you better control your process and ensure that it produces the desired results.

Learn more on 3-sigma limits here:

https://brainly.com/question/18958139

#SPJ4

Mr. Gomez notes that a Private Fee-for-Service (PFFS) plan available in his area has an attractive premium. He wants to know if he must use doctors in a network as his current HMO plan requires him to do. What should you tell him

Answers

The thing that he will be told is that he may receive healthcare services from any doctor allowed to bill Medicare.

What is Medicare?

Medicare simply means a government national health insurance program in the United States.

In this case, the thing that he will be told is that he may receive healthcare services from any doctor allowed to bill Medicare.

Learn more about Medicare on:

brainly.com/question/15074045

#SPJ12

To create a minimal Linux installation, for a bastion host for example, which mode should you install the operating system in?

Answers

Answer:

"Text" is the right approach. A further explanation is given below.

Explanation:

Visitors understand exactly unless the whole dashboard or window becomes black, you're throughout text format, demonstrating characters. Predominantly, a text-mode authentication display shows several other additional data about everything from the computer system you're continuing to operate on, this same signature including its device, and perhaps a encourage desperately looking for someone like you to sign this into Linux.

Margins can be modified in the page layout or by using__.

Answers

Answer:

The ruler

Explanation:

Work with a partner to answer the following question: How might learning the language
CoffeeScript be both similar and different to learning a foreign language like French? Try to
come up with at least one similarity and one difference.

Answers

Answer:

easy to learn is one similarity

longer experience needed is on difference

HOPE THIS HELPS .......

Computer programming is comparable to learning a new language in several aspects. It necessitates learning new terminologies and symbols, which must be properly arranged to tell the computer what to perform.

What is computer language?

A formal language used to converse with a computer is known as a computer language.

Python, Ruby, Java, JavaScript, C, C++, and C# are some examples. All computer programmes and applications are created using programming languages.

Given that it was developed to transfer information from one entity to another, a programming language can technically be referred to as a language, even though it is a synthetic language rather than a natural language.

Humans need language to communicate, which we constantly process. Our brain continuously processes the sounds it hears around us and works to make sense of them. The computer, on the other hand, is fluent in the language of numbers.

Thus, this can be the comparison between the computer language and the human language.

For more details regarding computer language, visit:

https://brainly.com/question/28266804

#SPJ2

How is effective communication defined as it applies to media?
O The end user delivers the intended message.
O The end user receives the intended message.
O The end user records the intended message.
O The end user agrees with the intended message.

Answers

Answer:

B, if the person you're sending to doesn't get the point it isn't effective. The sender will always know what they're sending but if the person who gets doesn't understand then it doesn't work. They don't need to agree to it for them to understand the message.  

Explanation:

Which below best describes JavaScript? *
a) a common dynamic computer language
b) C++ with a different name
c) The study of coding

Please help me out! 23 extra points!

Answers

Answer:

it is a programing languwage that is useualy used to program visual or text based applications

Explanation:

Answer: A

JavaScript is a common dynamic computer language. It was invented decades ago.

C++ is a different way of coding, it is not the answer. Many different people use C++, because they prefer it is easier than JavaScript.

Hope this helps!

What number system do people in America use?

Answers

Answer:

Base-10 (decimal)

Explanation:

America uses the imperial system.

The majority of the rest of the world uses the metric system (base 10).

JAVA
Write a program that requests the user input a word, then prints every other letter of the word starting with the first letter.
Hint - you will need to use the substring method inside a loop to get at every other character in the String. You can use the length method on the String
to work out when this loop should end.
Sample run:
Input a word:
domain
dmi

Answers

import java.util.Scanner;

public class JavaApplication42 {

   public static void main(String[] args) {

       Scanner scan = new Scanner(System.in);

       System.out.println("Input a word:");

       String word = scan.nextLine();

       for (int i = 0; i < word.length(); i+=2){

           System.out.print(word.substring(i,i+1));

           

       }

   }

   

}

I hope this helps!

The program is an illustration of loops.

Loops are used to carry out repetition operations; examples are the for-loop and the while-loop.

The program in Java, where comments are used to explain each line is as follows:

import java.util.*;

public class Main {

public static void main(String args[]) {

//This creates a Scanner object

Scanner input = new Scanner(System.in);

//This prompts user for input

System.out.print("Input a word: ");

//This gets input from the user

String userinput = input.nextLine();

//The following iterates through every other character of userinput  

      for(int i =0;i<userinput.length();i+=2) {

//This prints every other characters

          System.out.print(userinput.charAt(i));

}

  }

}

The above program is implemented using a for loop

Read more about similar programs at:

https://brainly.com/question/19104397

which type of attack is carried out by threat actors against a network to determine which ip addresses, protocols, and ports are allowed by acls?

Answers

The type of attack carried out by threat actors against a network to determine which IP addresses, protocols, and ports are allowed by ACLs is called a Reconnaissance Attack.

A reconnaissance attack involves the collection of information about a target network without necessarily compromising it. Threat actors use various tools and techniques to scan the network for open ports, IP addresses, and protocols allowed by ACLs. They gather this information to identify vulnerabilities and plan their subsequent attacks. This type of attack is considered the first step in the cyber attack lifecycle, as it helps attackers to create a detailed map of the target network for a successful intrusion.

In summary, a reconnaissance attack is the method employed by threat actors to gather crucial information about a network's IP addresses, protocols, and ports allowed by ACLs, enabling them to identify potential vulnerabilities and plan their attacks effectively.

To know more about cyber attack visit:

https://brainly.com/question/29997377

#SPJ11

What is the word most associated with 'record' in a database?,

Answers

The word most commonly associated with "record" in a database is "row". In a database, a record refers to a set of related data elements that are stored together as a single unit.

A database is an organized collection of data stored in a structured format that can be easily accessed, managed, and updated. Databases are used to store and manage large amounts of data for various applications and can be accessed by multiple users simultaneously. They are commonly used in business, healthcare, education, research, and other fields where large amounts of data need to be stored and analyzed. Databases can be relational or non-relational, with relational databases being the most common type. Relational databases use a structured query language (SQL) to manipulate data and typically store data in tables with relationships between them. Non-relational databases use a variety of different data models, such as document, key-value, or graph-based models, and are typically used for storing and retrieving unstructured data.

Learn more about database here:

https://brainly.com/question/30625222

#SPJ11

Why is it important to look for key details in an article?

Answers

It is important to look for key details in an article because meant to give you the evidence for a wider idea.

Why is it important to identify key details?

The main topic or key idea of a text is known to be that which tells you or give you the key details that can be used to describe a text.

Note that Supporting details help us to know better the main idea and as such, It is important to look for key details in an article because meant to give you the evidence for a wider idea.

Learn more about article from

https://brainly.com/question/1070116

#SPJ1

What are the differences between online platforms sites and content?.

Answers

Websites offer one-way interaction, with visitors taking in whatever content is presented.

Platforms provide reciprocal engagement, with user interactions resulting in individualized experiences. Marketplaces, search engines, social media, blogs, app stores, communications services, payment systems, services included in the so-called "collaborative" or "gig" economy, and many more online services have all been referred to as "online platforms." A digital service known as an online platform makes use of the Internet to enable communications between two or more dissimilar but related users. Platforms are locations where electronic demand and supply collide.

Learn more about communication here-

https://brainly.com/question/14809617

#SPJ4

What is the difference between static ip and dynamic ip?

Answers

A device's IP address does not change when given a static IP address. The majority of devices employ dynamic IP addresses, which the network issues to new connections and alter over time.

What use does dynamic IP serve?An ISP will let you to use a dynamic IP address for a brief period of time. A dynamic address may be automatically given to another device if it is not already in use. DHCP or PPPoE are used to assign dynamic IP addresses.For companies that host their own websites and internet services, static IP addresses are optimal. When distant employees are using a VPN to access the network at work, static IP addresses also perform effectively. For the majority of users, dynamic IP addresses are typically OK.A device's IP address does not change when given a static IP address. The majority of devices employ dynamic IP addresses, which the network issues to new connections and alter over time.

To learn more about dynamic ip refer to:

https://brainly.com/question/14234787

#SPJ4

To figure out how to use her MacBook Pro graphics software to update designs originally created on a DEC10, Marianne needs to use a ______ language?

Answers

Answer:

Glue Language

Explanation:

I'm not 100% sure, but here is the definition.

Glue language- A programming language that can be used to provide interoperability between systems not originally intended to work together

Other Questions
Identify Careers in Science, Technology, Engineering, and Mathematics based on this excerpt from the novel tess of the d'ubervilles, one can surmise that the novel's themes will probably be concerned with When two opposing directives are given, and neither can be ignored, tolerated, nor dismissed (that is, the person cannot win and cannot escape):_____. consider a state in a metal conduction band that is 0.13 above the fermi energy. the metal is at a temperature of 1000k. what is the probability to find an electron on this state? Which of the following are standard terms used in data loss prevention to describe specific data states? (Choose all correct answers.)a. Data-on-lineb. Data-at-restc. Data-in-motiond. Data-in-use 2. Hot-air balloons are a fun way to travel around the globe. A. In what layer can a hot-air balloon travel? B. Why can't a hot-air balloon go to higher layers? 20points can u create a short suspense story pls write a unique story Read the excerpt from "a genetics of justice" by julia alvarez. when my sisters and i cared too much about our appearance, my mother would tell us how trujillo's vanity knew no bounds. how in order to appear taller, his shoes were specially made abroad with built-in heels that added inches to his height. how plumes for his napoleonic hats were purchased in paris and shipped in vacuum-packed boxes to the island. how his uniforms were trimmed with tassels and gold epaulettes and red sashes, pinned with his medals, crisscrossing his chest. how he costumed himself in dress uniforms and ceremonial hats and white gloves"all of this in a tropical country where men wore guayaberas in lieu of suit jackets, short-sleeved shirts worn untucked so the body could be ventilated. my mother could go on and on. which quotation provides the best evidence for the central idea of this excerpt? the portuguese gained control of the eastern indian ocean through Find a nonzero vector parallel to the line of intersection of the two planes 2y - 2x + z = -3 and 3z - 5x = 3. P9-1 Recording and Reporting Current Liabilities LO9-1 IThe following information applies to the questions displayed below) Vigeland Company completed the following transactions during Year 1. Vigeland's fiscal year ends on December 31. Jan. 15 Purchased and paid for merchandise. The invoice amount was $15100: assume a perpetual inventory system. Apr 1 Borrowed $858.000 from Summit Bank for general use signed a 10-month, 14% annual interest-bearing note for the money. June 14 Received a $30,000 customer deposit for services to be performed in the future. July 15 Performed S3,950 of the services paid for on June 14. Dec. 12 Received electric bill for $26,060. Vigeland plans to pay the bill in early January. 31 Determined wages of $15,000 were earned but not yet paid on December 31 (disregard payroll taxes) Who was Minamoto Yoritomo?the most skilled samuraithe first shogun of Japanthe emperor who defeated the daimyothe daimyo who started the Tokugawa shogunate the amount of funds a company commands from a customer from various product categories is called What is the length of R'A'?1.5 cm1.6 cm3.0 cm3.2 cm bi Name two processes by which a hot drinks cool True or False, The company you work for tasks you with developing a formula for the number of phones each warehouse manufactures each week. This is an example of a structured decision Solve the system by substitution. -5 -6y7 Submit Answer A 1500 kg weather rocket accelerates upward at 10.0 m/s . It explodes 2.00 s after liftoff and breaks into two fragments, one twice as massive as the other. Photos reveal that the lighter fragment traveled straight up and reached a maximum height of 530 m. What were the speed and direction of the heavier fragment just after the explosion According to the cartoon, How does the United States government feel about union labor? "i think you have been doing a great job, but you haven't been signing many people up for our new service feature. I want you to set a goal of signing up 25% of your new customers for our new service feature. " representative: "if i get 96 new customers that means i have to get __________ of them to sign up for the new service feature. ".