When should performance monitoring software be used to create baselines?

A When a network device fails
B. When the network is operating correctly C. When malware is detected
D. When troubleshooting a connectivity issue​

Answers

Answer 1

Answer:

D. I guess

Explanation:

because permon is mostly used to see;

- if the designed structured meets the requirements of the system

- it there are bugs

- if there are deficiencies

and in troubleshooting we monitor the issues that the structure has faced or to see if any defeciency will be face. so in connectivity issue troubleshooting we can use permon and create baseline of efficiencies and deficiencies... I'm not a professional in this field so my answer might be wrong.


Related Questions

Write a while loop that prints user_num divided by 2 until user_num is less than 1

Answers

Explanation:

The required function in python is written as follows :

user_num = int(input())

#takes an input value and convert to an integer value.

while user_num >= 1 :

#While loops is conditioned to run if user_num is ≥ 1

user_ num = user_num / 2

#divide user_num by 2 and store the result as user_num

print(user_num)

#print user_num

The while loop condition does most of the work here, The while loops is conditioned to run the divison of user_num if the value of user_num is greater than or equal to 1 ; if user_num is lesser than 1, the loop terminates.

Lear more : brainly.com/question/15170131

laminiaduo7 and 9 more users found this answer helpful

THANKS

1

1.5

(8 votes)

Unlocked badge showing two hands making the shape of heart over a pink circle

Found this answer helpful? Say thanks and unlock a badge.

Advertisement

Answer

author link

teobguan2019

Ambitious

613 answers

1.2M people helped

Answer:

user_num = float(input("Enter a number: "))

while(user_num > 1):

user_num = user_num / 2

print(user_num)

Explanation:

Line 1:

Use built-in function input() to prompt user input a number and assign it to the variable user_num.

Since the default data type of the user input is a string, we need to convert it into float data type before assigning it to user_num. We can do the data type conversion by enclosing the user input into the built-in function float().

Line 3:

Create a while loop by setting condition while user_num bigger than 1, the line 4 & 5 should keep running.

Line 4:

Divide user_num by 2 and assign the division result back to the user_num.

Line 5:

Display updated value of user_num using built-in function print()

what is spy x family?​

Answers

Is a Japanese magna series. Basically it’s about a spy having to build a family to execute a mission not knowing the daughter is a telepath and the mother he agrees to marry is a skilled assassin





Let me know if this helped

Answer:

Spy × Family, is a Japanese manga series written and illustrated by Tatsuya Endo. The story follows a spy who has to "build a family" to execute a mission, not realizing that the girl he adopts as his daughter is a telepath, and the woman he agrees to be in a marriage with is a skilled assassin.

An anime television series adaptation produced by Wit Studio and CloverWorks premiered on TV Tokyo and its affiliate stations in April 2022, and was licensed by Muse Communication in Asia and Crunchyroll worldwide. The second half aired from October to December 2022. A second season is set to premiere in October 2023 and an anime film, titled Spy × Family Code: White, will release on December 22, 2023.

By March 2023, Spy × Family had over 30 million copies in circulation, making it one of the best-selling manga series. The series has been praised for its storytelling, comedy, and artwork.

I personally, rate it a solid ⭐⭐⭐⭐⭐rating because it's GREAT!

Please Vote For Brainliest!

what is the benefit of Agile?

Answers

Answer:

The benefits of algae is I also don't know .I as also going to ask thanks for point

Should a UDP packet header contain both Sour Port # and Destination Port #?

Answers

Yes, a UDP packet header should contain both Sour Port # and Destination Port #.

Which fields are included in a UDP header?

The fields that one can see in a UDP header are:

Source port :

This is known to be the port of the device that is known to be sending the data. This field is one that a person can set to zero only if the destination computer do not require one to reply to the sender.

Destination port :

This is known to be the port of the device that is said to be getting or  receiving the data.

Hence, to the answer above, my response is Yes, a UDP packet header should contain both Sour Port # and Destination Port #.

Learn more about UDP packet from

https://brainly.com/question/10748175

#SPJ1

I'm doing a VHDL program in Vivado, using a zyboz7 20, which would have 2 teams, each of them with different buttons and led lights. The idea is to use one button to obtain when a team scores a goal, so it will be displayed in the 7 segment-display (for example, if the button is pressed once, the display will show a one, and so on). When any of the team gets to 3, the led light given to that team will turn on.

Right now, I just have one team in the program and the constraints. Also, I have trouble understanding the debouncing of the button, I don't know if I'm using the wrong algorithm to attack the debounce issue, but it's as if the clock was delayed or it's not taking some of the input, I have been looking to a lot of tutorials but I can't find a way in which the programs can work without any issue. I will show my code here and the constraint, I will also explain the code so it will be easier to modify it if anyone can help me with the debounce issue.

Program's code:

library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.STD_LOGIC_UNSIGNED.ALL;
use IEEE.NUMERIC_STD.ALL;

entity sevenSementDis is
Port (
C : out STD_LOGIC;
won1: out STD_LOGIC;
team1, clk,reset: in STD_LOGIC;
SevenSD: out STD_LOGIC_VECTOR (6 downto 0));

end sevenSementDis;

architecture Behavioral of sevenSementDis is

type statetype is (Init,Gol,AnotherGol,victory);
signal state, nextstate: statetype;

signal clk_bit : INTEGER := 4;
signal clk_bit2 : INTEGER := 4;
signal count : STD_LOGIC_VECTOR (4 downto 0) := "00000";
signal clk_div : STD_LOGIC_VECTOR (4 downto 0) := "00000";
signal count_reset : STD_LOGIC_VECTOR (4 downto 0) := "00000";
signal clk_reset : STD_LOGIC_VECTOR (4 downto 0) := "00000";

begin
C<='0';

process (clk)
begin
if (clk='1' and team1='1') then
clk_div <= clk_div + '1';
end if;
end process;

process (clk_div)
begin
if (clk='1' and clk_div(clk_bit) = '1') then
count <= count + '1';
end if;
end process;

process(clk)
--variable Count : natural range 0 to 5 := 0;
begin

if rising_edge(clk) then

case(nextstate) is

when Init =>
SevenSD<="0111111";
won1<='0';
if count="00010" then
nextstate<=Gol;
else
nextstate<=Init;
end if;

when Gol =>
SevenSD<= "0000110";

if count="00011" then
nextstate<=AnotherGol;
else
nextstate<=Gol;
end if;

when AnotherGol =>
SevenSD<= "1001011";
if count="00100" then
nextstate<=victory;
else
nextstate<=AnotherGol;
end if;

when victory =>
SevenSD<= "1001111";
won1<= '1';


end case;
end if;
end process;

end Behavioral;

Explanation:

The ports: Won1 is the led light assigned to team 1. team1 is the button that I want to use when team 1 scores. The reset is also a button but I haven't been implemented. SevenSD is the 7-segment display. Clk is the clock and C is another led light that hasn't been implemented.

There are 4 states, Init(where the code starts), Gol (the team scores the first goal, which would also change the display), AnotherGol(team scores again and the display changes), and Victory (the display changes one last time and led light turns on). There are also state (which would take the actual state) and nextstate(which will tell the next state).

count is an integer that will be added when the button is 1 and the clk_div is also 1, it's the one that determines when to move to the next state. clk_bit is just the bits of the clock. clk_div is diving the clock to try to attack the debouncing issue. clk_bit2, count_reset,clk_reset are not implemented, they were created when trying to add the reset button, but when I erase them, the code just stops working at all.

the rest are some process to fight the debounce and the last one is the actual code, which goes around the different states until the victory state.

Answers

Answer:

como lo echo es echo si no tengo un pájaro es

Explanation:

un pájaro azul

Medical assistant, Jackie, was downloading some patient information on cerebral palsy from the Internet. While downloading, Jackie noticed the computer was working slower than usual. When Jackie clicked on a web site that she needed to review, the computer would not take her to the designated website. Instead, the computer took her to an alternative site. Jackie soon noticed that even when she was working offline using a word processing software program, the computer was acting up. When she went to
the medical software, she could not bring up patient account information.


Question:

What happened and what should Jackie do?

Answers

The thing that happened is that she has been a victim of system attack and the right thing for Jackie to do is to have an antivirus that can block the malicious  app obstructing her.

What is a system hack?

System hacking is known to be when one's computer is said to be compromise in regards to computer systems and software.

Note that The thing that happened is that she has been a victim of system attack and the right thing for Jackie to do is to have an antivirus that can block the malicious  app obstructing her.

Learn more about system hack from

https://brainly.com/question/13068599

#SPJ1

What is the purpose of secondary
memory?

Answers

Answer:

secondary memory is usually used as mass storage.

allows users to enter text and control the computer with their voice.

Answers

Speech input software allows users to enter text and control the computer with their voice.

What is an input device that allows you to put text into a computer?

An example of these input device is the keyboard and it is one that allows a person to be able to enter letters, numbers and any kind of symbols into a computer.

Note that Speech input software allows users to enter text and control the computer with their voice.

Learn more about The keyboard from

https://brainly.com/question/26632484

#SPJ1

What is an index? What are the advantages and disadvantages of using indexes? How do you use SQL to create an index?

Answers

Answer:

In DBMS, an index is a physical structure that stores the values for a specific column in a table. An index can be used to extract specific information from data and access records within a table more quickly without having to scan the whole table.

An Index can be made up of one or more columns of a table and each index maintains a list of values within that field that are sorted in ascending or descending order. Indexes cannot be seen by the users, but they are just used to speed up the queries and improve the performance of a database application

You created a photo album with transitions and want to send it to friens

Answers

Answer:

do not cheat in your exam

Answer:

C.All the negative things the other person has said or done to you

Explanation:

Suppose in an Excel spreadsheet, the value in cell A1 is 25. By using the Macabacus local currency cycle shortcuts (Ctrl + Shift + 4) and pressing 4 two times, how will the value in cell A1 display?

Answers

Because pressing Ctrl + Shift + 4 converts the number to a currency format and hitting it again does not modify the format, the answer that should be selected is "$25.00.". This is further explained below.

What is an Excel spreadsheet,?

Generally, Cells in rows and columns may be used to organize, compute, and sort data in a spreadsheet. In a spreadsheet, data may be represented in the form of numerical numbers.

In conclusion, When using Ctrl + Shift + 4, it converts the number to a currency format, therefore the right answer is $25.00.

Read more about Excel spreadsheet

https://brainly.com/question/12339940

#SPJ1

Write the SQL commands to obtain the following information from the system catalog:

List every table that you created.
List every field in the Client table and its associated data type.
List every table that contains a field named TaskID.

Answers

The SQL commands to obtain the information from the system catalog is illustrated below.

How to illustrate the the SQL commands?

It should be noted that SQL commands are instructions to communicate with a database to perform a task.

List every table that you created. - SHOW TABLES

List every field in the Client table and its associated data type. - SHOW COLUMNS FROM CUSTOMER

List every table that contains a field named TaskID. - SELECT TBNAME FROM SYSCOLUMNS WHERE COLNAME = 'TaskID'

Learn more about SQL on:

brainly.com/question/25694408

#SPJ1

Describe the five components of a computer

Answers

Answer:

Input, Processing, Storage, Output and Communication devices.

Explanation:

Input devices of computer are like Keyboard, Mouse, Scanner. Output devices of a computer are printers, monitors, and headphones.

There are two storages of computer one of them is REM, which can be lost if computer shutdown/closes. Data stays written on the disk until it's erased or until the storage medium fails (more on that later). An example of a communication device is the microphone.

give two logics how a computer is better then man how give two logic how give two logics ​

Answers

Answer:

makes work easier

saves time

Array Basics pls help

Answers

Answer:

import java.util.Random;

class Main {

 static int[] createRandomArray(int nrElements) {

   Random rd = new Random();

   int[] arr = new int[nrElements];

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

     arr[i] = rd.nextInt(1000);

   }

   return arr;

 }

 static void printArray(int[] arr) {

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

     System.out.println(arr[i]);

   }

 }

 public static void main(String[] args) {

   int[] arr = createRandomArray(5);

   printArray(arr);

 }

}

Explanation:

I've separated the array creation and print loop into separate class methods. They are marked as static, so you don't have to instantiate an object of this class type.

Which transactions in the lab used TCP protocol? which used UDP? Which ports were used in the lab?

Answers

The transactions in the lab used TCP protocol are: FTP (port 21), SSH (port 22), and Telnet (port 23) used TCP.

What protocols are used in TCP?

A high-level protocols is one that often need to moves data to all use TCP Protocol.

Note that an Examples is made up of peer-to-peer sharing methods such as File Transfer Protocol (FTP), Secure Shell (SSH), and Telnet.

Why use UDP?

UDP is known to be one that helps to fasten or speeds up the rate of transmissions by aiding or helping in the transfer of data before any form of an agreement is given by the receiving party.

Hence, The transactions in the lab used TCP protocol are: FTP (port 21), SSH (port 22), and Telnet (port 23) used TCP.

Learn more about TCP protocol from

https://brainly.com/question/17387945

#SPJ1

Assume that x ransomware is currently pandemic. Explain your way to protect your systems (PCs or servers) from x ransomware without service interruption

Answers

Let's check the precautions

Use MFA

MFA stands for multi factor authenticationThis is the complicated edition of general two step authentications we do on regular basis

Use strong passwords

Never use 1234.. or any easy passwords like your name,no etc

Always patch early

Try to patch on rare basis

Use VPN

Turn off your RDP if you don't need right then

Describe the specific job you would want to have if you were going to pursue a career in digital music or video.
Explain what this job entails, and discuss why it appeals to you. What skills and interests do you have that
would be well-represented and utilized in this job? What skills would you need to learn or improve?

Answers

The specific job you that i would want to have if you were going to pursue a career in digital music or video is to be a gospel music producer.

What does a gospel music producers do?

A gospel producer, or record producer, is known to be a person who is said to often help an artist in regards to their recording project.

Note that the field i am interested in is Christian gospel music and the skills is that it requires one to be:

Be able to Play an Instrument.Be a Sound EngineerMusic Theory & CompositionManaging People. Communication and others.

The skill that i need to improve on is music theory.

Hence, The specific job you that i would want to have if you were going to pursue a career in digital music or video is to be a gospel music producer.

Learn more about Music from

https://brainly.com/question/26373912

#SPJ1

When using sftp to share files, what is encrypted in addition to the authentification information?.

Answers

In addition to the authentification information, the data files are encrypted when using SFTP to share files.

What is SFTP?

SFTP is an abbreviation for SSH File Transfer Protocol and it can be defined as a type of secured file transfer protocol that's designed and developed to run over the SSH protocol by supporting full security and authentication, file management, as well as sharing files between two or more users on an active computer network.

This ultimately implies that, SSH File Transfer Protocol can be used for file management, file transfer and provide end users with full security and authenticated file access.

In conclusion, we can infer and logically deduce that in addition to the authentification information, the data files are encrypted when using SSH File Transfer Protocol (SFTP) to share files.

Read more on file transfer here: brainly.com/question/20602197

#SPJ1

The postmortem lesson learned step is the last in the incident response process. Why is the most important step in the process?

Answers

The most important step in the process of the learned step that came last in the incident response process is to know how this threat happened and how to prevent it in the future.

What is Post-Mortem?

This refers to the medical examination of a dead body, to determine the cause of death and other possible factors that can also help to solve a murder.

Hence, we can see that from the complete text, there was a learning process that was used to teach the incident response process and this was done to help in threat prevention.

Read more about post-mortem here:

https://brainly.com/question/21123962

#SPJ1

Assume the variable myWord references a string. Write a statement that uses a slicing
expression and displays the last 5 characters in the string.
What happens if the myWord is less than 5 characters long?

Please code in python please.

Answers

Answer:

"myWord[-5:]"

Explanation:

So whenever you slice a string, the syntax in python is expressed as:

string[a:b:c]

where a=start index (this is included in the sliced string)

b = end index (this is excluded from the sliced string)

c = increment

If any of these are included, they are set to default values, where a=0, b=len(string), and c=1.

The increment isn't necessary here, and it's just so you know the syntax a bit more

Anyways, I'm assuming when the question asks to display "the last 5 characters in the string" it means in order? e.g "abcdefghijk" -> "ghijk" and not "abcdefghijk" -> "kjihg"

The last piece of information to know is what a negative index represents.

For example if I have the piece of code

"

string = "hello world"

print(string[-1])

"

This will output "d", and the negative 1 represents the last letter. If you did -2, it would output the 2nd to last letter and so on.

So to print the last 5 characters, we simply use the -5 as the starting index.  

"

string = "hello world"

print(string[-5:])

"

This will print "world" or in other words, the last 5 letters. The reason for this is because the -5 in the first spot means the starting index is the 5th to last letter, and when you have the : after the -5, this is the way of telling python you're slicing the string, and not indexing 1 character. You don't need to include another value after that, because it will default to the last index of the string, or more specifically the last index + 1, since the last index is still included.

So the last thing to know, is that if the string isn't greater than 5 characters, it just prints the entire string, and no errors are raised. You can test this out your self as well. So whenever you have a string that's less than 5 characters the entire string is outputted.

TQ Automation
What is Robotic Process Automation (RPA)?

Answers

Answer:

RPA or Robotic Process Automation allows organizations to automate tasks which human beings were doing across any applications and systems. The purpose of RPA is to transfer the execution of the process from humans to robots.

what is the importance of Microsoft word in our everyday lives?​

Answers

Answer:

Allows us to create business documents.Helps to design and create cards, brochures, new letters etc. for business.Benefits teachers and students in developing innovative teaching and learning methods.Microsoft word is an important application for the purpose of education.It also helps in making notes instead of using notebooks.Ms Word also helps in making notes having graphs, charts, diagrams, tables etc.

How can you ensure that your internet search is happening over a secure network connection?.

Answers

Answer:

Rename Routers and Networks.

Use strong passwords.

Keep everything updated.

Turn on encryption.

Use multiple firewalls.

Turn off the WPS setting.

Use a VPN

Write code that declares a variable named minutes, which holds minutes worked on a job,
and assign a value.
Display the value in hours and minutes; for example:
197 minutes becomes 3 hours and 17 minutes.
c# language

Answers

The code that carried out the functions indicated above is stated below. It is not be noted that the code is written in C#

What is C#

C# is a type-safe, object-oriented programming language. It is pronounced "see sharp"

What is the code for the above task?

Using System;            

public class HoursAndMinutes

{

   public static void Main()

   {

      // declaring minutes variable and assigning 197 as given in question

       int minutes = 197;

     // outputing the total minutes , hours

       Console.WriteLine("{0} minutes is {1} hours and {2} minutes.", minutes, minutes/60, minutes%60);

   }

}

// OUT

Learn more about C#:
https://brainly.com/question/20211782
#SPJ1

One of the best places to get questions answered concerning company policy is from
✔ human resources

New employees usually receive handbooks and learn about company policies
✔ during new employee orientation


A positive work ethic means people want to do their best job without considering
✔ the amount of their salary

im asking a question cuz i couldnt find the answer on brainly. for who ever needs it

Answers

Answer:

I think you should look at what your question is before you ask it because the answers are already in you question lol.

Explanation:

One of the finest resources for getting responses to inquiries about corporate policy is from human resources.

Typically, handbooks are given to new hires, in which they can learn about corporate rules during new employee orientation.

People with strong work ethics strive to do their finest work without hesitation the amount of their salary.

What are human resources?

Human resources professionals hire, filter, and interview job candidates as well as assign newly hired employees to positions. They could also be in charge of training, employee relations, and salary and benefits. Labor relations experts administer and interpret labor contracts.

Therefore, the correct options are 1-human resources, 2-during new employee orientation, and 3-the amount of their salary.

To learn more about human resources, refer to the link:

https://brainly.com/question/13190588

#SPJ2

42. 43. 44. 45. 46. 47. 48 Abrasion, incised, punctured are examples of (b) strain (c) wound (a) sprain Strain is to muscle while sprain is to (a) flesh (b) blood (c) bone The natural world in which people, plants and animals live in is (a) town (b) house (c) village The act of making places and things dirty, harmful and noisy is (a) pollution (b) game (c) pollutants A set of programs that controls and coordinates the internal ac (a) translator (b) system software (c) u The following are safety measures to be considered when usin (a)overload power point (b) sitting posture (c) using the anti- (d) positioning of the monitor base ​

Answers

Abrasion, incised, punctured are examples of wound .

What type of injury is abrasion?

Abrasions is known to be a kind of superficial injuries that happens to the skin and also the visceral linings of the body.

Note that it also lead to  a break in the lifetime of tissue and as such one can say that Abrasion, incised, punctured are examples of wound .

Learn more about Abrasion from

https://brainly.com/question/1147971

#SPJ1

I need help with my work

Answers

Answer:

totally

awesome

Explanation:

You can evaluate the expressions in the statements by hand:

if (a*b!=c) evaluates to

if (2*3 != 11)

if (6 != 11)

if (true)

so the next line is executed (it prints 'totally')

Likewise, the other if statement also evaluates to true.

hybird computers have the speed of analog computer and accuracy of digital computer true or false

Answers

Hybrid computers have the speed of analog computer and accuracy of digital computer is a true statement.

What are the computers about?

Hybrid Computer are known for the features they have such as the fact that they have both analogue and digital computer and as such it can be as   fast like analogue computer.

Hence, Hybrid computers have the speed of analog computer and accuracy of digital computer is a true statement.

Learn more about hybrid computers  from

https://brainly.com/question/27934317

#SPJ1

flowgorithm based on pseudocode to ask user an age it then displays message if the user's age is greater than 65 (retirement age). It also allows the user to end the program by entering a specific number, a sentinel value and looping structure

Answers

A sample pseudocode that can be used to perform the operation is:

Print "What is your age?"

If Age > 65

Print "You are of retirement age"

If input= "5"

Terminate

Else

End

What is a Pseudocode?

This refers to the plain language that makes a description of the sequence of steps used to execute a program.

Hence, we can see that based on the user request, there is the sample pseudocode that would ask for input, if the age is greater than 65, a print function would be used and the program can be terminated if a specific number (5) is put.

Read more about pseudocodes here:

https://brainly.com/question/24735155

#SPJ1

Other Questions
The main reason for using a factorial design instead of separate experiments (with one iv per experiment) is to:______ Look at the image, read, and choose the right description.La cebra Laura soy alto.La cebra Laura eres alta.La cebra Laura es alto.La cebra Laura es alta. There are 5 different families of triplets at a triplets convention. Each triplet shook hands with all the other triplets, except his or her siblings. How many handshakes took place? A resource is ______ if the number of firms that possess it is less than the number of firms required to re In the process of reconciling its bank statement for January, Maxi's Clothing's accountant compiles the following information: In an adaptive or change - driven project life cycle: Group of answer choices the waterfall approach is commonly used. the product is well understood. early results lead into planning later work. all planning precedes all executing. A tax that imposes a small excess burden relative to the tax revenue that it raises is. Which process is found in both cellular respiration and in the light reactions of photosynthesis? Solve the quadratic equation by graphing it. Select all possible answers.[tex]y=x^2+8x+12\\x=?[/tex]Possible answers:-66-82-28No real solutions What countries names should appear in the blank areas? france; great britain germany; the soviet union west germany; east germany germany; italy A 0.266-g sample of NaC1 (molar mass = 58.44 g/mol) is dissolved in enough water to make 5.20 mL ofsolution. Calculate the molarity of the resulting solution.O 0.875 MO 4.55 x 10-3 MO 0.987 MO 1.14 MO 0.731 M _____ are designed to penetrate below generalized or superficial information to elicit more articulate and precise details for use in needs discovery and solution identification. 608 explained well and not in a decimal form The process of approving and processing ______ is expensive so bankers are always seeking way to make the system more efficient. In animal cells, cell junctions called ______ junctions form barriers between cells that prevent leaking of fluids and water-soluble molecules. The range, a measure of variability, Group of answer choices is the difference between the largest (L) and smallest (S) value in a list of scores is the most informative when used to describe data sets without outliers includes only two values in its computation, regardless of the number of scores in a distribution all of the above The definition of states: choosing among two or more alternatives. Emt training in nearly every state meets or exceeds the guidelines recommended by the? Based on their composition and structure list, CH2Cl2, CH3CH2CH3, and CH3CH2OH in order of: a. Increasing intermolecular forces b. Increasing viscosity c. Increasing surface tension Living organisms require a large temperature stimulus before the body temperature changes because the ______ bonds of water counteract molecular movement.