Given a string variable s that has already been declared, write some code that repeatedly reads a value from console input into s until at last a y or y or n or n has been entered.

Answers

Answer 1

Answer:

s = "";

while (!(s=="Y" || s=="y" || s=="N" || s=="n"))

{

   cin >> s;

}

Answer 2

The code for the String variable is described below.

To achieve the desired functionality of repeatedly reading values from console input into the variable s until either 'y' or 'n' has been entered, you can use a loop.

Here's an example of how you can implement this in Python:

s = ""

while s not in ('y', 'n'):

   s = input("Enter a value (y/n): ")

# At this point, the user has entered 'y' or 'n'

print("You entered:", s)

In this code, the 'while' loop will continue executing as long as the value of s is not 'y' or 'n'.

The 'input()' function prompts the user to enter a value, and the input is stored in the variable s. The loop will keep repeating until the condition s not in ('y', 'n') is false.

Once the loop exits, it means the user has entered either 'y' or 'n', and you can proceed with further processing or printing the value if needed. In the example above, it simply prints the value of s using print().

Learn more about String variable click;

https://brainly.com/question/31751660

#SPJ2


Related Questions

Hello guys where's bios chip in this motherboard ​

Answers

Answer:

Black Chip Near the Ram slot.

most widely deployed cellular communications standard, relatively slow data transfer, 2g technology.

Answers

The most widely deployed cellular communications standard GSM, is relatively slow data transfer, with 2g technology.

With its availability in more than 210 countries worldwide, GSM, or Global System for Mobile Communication, was once regarded as the industry standard for communication, notably in Asia and Europe.

The switching system (SS), base station system (BSS), and operation and support system are the three main systems that make up the GSM network (OSS).

A mobile network operator that makes use of the cellular Global System for Mobile communications is known as a GSM carrier. GSM carriers like AT&T and T-Mobile offer service for GSM phones, whereas CDMA carriers can only work with CDMA-compatible phones.

3G, 4G, and 5G have developed from the GSM (2G).

Learn more about communication:

https://brainly.com/question/26152499

#SPJ4

which responses would you use for a computer or electronic medical record outage? (select all that apply)

Answers

The responses that a person need to use for a computer or electronic medical record outage is option A: Verify computers, printers, and WOWs are plugged into red outlets.

What are the problems with electronic medical records?

In regards to  computer or electronic medical record, there are sometimes where there is found to be some outage.

Note that  based on  USF Health, some key healthcare givers and patients can be very concerned in regards to  medical privacies if they are using EHRs.

Note that some of the concerns includes the lost information as a result of a natural disaster as well as cyber hacks.

Hence, The responses that a person need to use for a computer or electronic medical record outage is option A: Verify computers, printers, and WOWs are plugged into red outlets.

Learn more about medical record from

https://brainly.com/question/21819443

#SPJ1

See full question below

5. Which responses would you use for a computer or electronic medical record outage? (select all that apply)

Verify computers, printers, and WOWs are plugged into red outlets.

Reset equipment, if needed, by turning on and off.

Locate downtime forms and use if directed.

Verify critical patient care equipment is functioning properly.

Refer to downtime computer and printer on unit.

Use red emergency phones.

_____materials from a source text without properly citing the source is an example of plagiarism.(drivers ed)
A)Reviewing
B)Considering
C)Paraphrasing
DReading

Answers

Answer:

C

Explanation:

Paraphrasing materials from a source text without properly citing the source is an example of plagiarism. (drivers ED)

The correct answer is C)Paraphrasing

write a program that computes an integer's checksum. to compute the checksum, break the integer into its constituent

Answers

Using the knowledge in computational language in python it is possible to write a code that computes an integer's checksum.

Writting the code:

def checkSum(n):                    # Function definition

   total = 0                       # total variable which returns sum

   c = 0                           # counter variable which count the even position

   while(n!=0):                    # running a loop while n != 0

       r = int(n%10)               #breaking the number into digits

       c=c+1                       # increase counter

       if c%2==0:                  # if counter is even position then double the number

           r = r*2

           while(r!=0):                            # do the process

               total = total + int(r%10)

               r = int(r/10)

           n=int(n/10)    

       else:                       # if counter is odd position then simple add the digit

           total = total + r       # into total

           n=int(n/10)

   return total                    # in the last return the sum of digits

# Driver code

n = int(input("Enter Number:"))         # asking user to enter the number

print(checkSum(n))                      # calling the function

See more about python at brainly.com/question/18502436

#SPJ1

over time, you have noticed unauthorized configuration changes made to virtual machine cloud settings. you need a way to track who made these changes and when. what should you do?

Answers

One way to track who made these changes to the virtual machine cloud settings and when is to: D. enable cloud resource activity auditing.

What is a cloud?

In Computer technology, a cloud can be defined as the elastic leasing of pooled computer resources such as physical hardware through virtualization and over the Internet, so as to enable the storage and sharing of files and documents virtually and in real-time.

In this scenario, we can reasonably infer and logically conclude that one way to track who made these changes to the virtual machine cloud settings and when is to enable cloud resource activity auditing because it would provide a log of actions such as information about the engineer who made configuration changes.

Read more on a virtual machine here: https://brainly.com/question/12060797

#SPJ1

Complete Question:

Over time, you have noticed unauthorized configuration changes made to virtual machine cloud settings. You need a way to track who made these changes and when. What should you do?

A. Enable virtual machine API integration.

B. Rotate the cloud access keys.

C. Deploy an OSI layer 7 firewall.

D. Enable cloud resource activity auditing.

declaring a member as in the base class provides access to that member in the derived classes but not to anyone else.

Answers

Declaring a member as protected in the base class provides access to that member in the derived classes but not to anyone else.

Base class and derived classes are concepts of inheritance in the paradigm of Object Oriented Programming. Inheritance is the process in which a new class (called derived class) is created from an existing class (called base class).

When a drive class is created from the base class, it has access to some members of the base class. There are three types of access specifiers to declare members in the base class in order to provide their access in the derived classes.

The first is declaring a member as private. Private members of the base class cannot be accessed by anyone, even not by the derived classes. The second is declaring the base class members as public. Public members can be accessed by anybody including derived classes. The third type is declaring members as protected. Protected members of the base class have accessibility only in derived classes.

Thus, when a member is declared as protected in the base class, it gives access to that member in the derived classes but not to anyone else.

You can learn more about access specifier at

https://brainly.com/question/28289695

#SPJ4

Which option is the best example of a computer algorithm step?
A. Climb out of bed
B. Mix wet ingredients
C. Ask a friend for help
D. Analyze the player’s inputs

Answers

An option which  is the best example of a computer algorithm step is: D. analyze the player’s inputs.

What is a computer?

A computer can be defined as an electronic device that is designed and developed to receive data in its raw form as an input and it processes these data into an output (information), which can be used to perform a specific task through the use of the following computer parts:

KeyboardNetworkMonitor screenMouseHard-disk drive

What is an algorithm?

An algorithm can be defined as a standard formula (procedures) which is made up of a set of finite steps and instructions that are executed on a computer system, so as to enable a software solve a particular problem under appropriate conditions.

Read more on algorithm here: brainly.com/question/24793921

#SPJ1

if you are using an administrator account during a software installation and you get prompted by the uac, you should

Answers

All you have to do if you are using an administrator account during a software installation and you get prompted by the UAC is click continue and finish the installation.This is because processes that require an administrator access token cannot be silently installed when UAC is enabled, the user must explicitly give consent by clicking yes or by providing administrator credentials.

Windows Security can be defined as a built-in application available in Windows 10 that provides a user-friendly interface and tools to manage common security features. An example is Microsoft Defender Antivirus, which offers real-time protection for your computer and data against viruses and many other types of malware. With Windows Security, our computers become more secure and the files on the computer.

Learn more about Windows Security here https://brainly.com/question/14262072

#SPJ4

part of file explorer that is used to access devices, drives, and folders on your computer. (1 point) location this pc status

Answers

A part of file explorer that is used to access devices, drives, and folders on your computer is: This PC.

What is a computer?

A computer can be defined as an electronic device that is designed and developed to receive data in its raw form as an input and it processes these data into an output (information), which can be used to perform a specific task through the use of the following computer parts:

KeyboardNetworkMonitor screenMouseHard-disk drive

In the Windows operating system, "This PC" is a part of file explorer that is designed and developed to enable end users access devices, drives, and folders on their computer.

Read more on computer here: https://brainly.com/question/24540334

#SPJ1

write a statement that assigns finalresult with the sum of num1 and num2, divided by 3. ex: if num1 is 4 and num2 is 5, finalresult is 3. java

Answers

The question states that we have to write a code in java, that adds two numbers num1 and num2 and then divide the sum by 3. Store the result of the calculation in the variable named finalresult.

This program can be coded in any programming languages such as C, C++, C#, and Java. But as given in the question, it is required to write it in Java programming language. Java is a high level programming language that is used to develop applications and programs.

The code is given below what is required in the question.

public class MyClass {

   public static void main(String args[]) {

  int num1;// declared variable num1

  int num2;//declared variable num2

     float finalresult;//declared variable finalresult which store the result

 

    num1 = 4;//assigned value to num1

     num2 = 5;//assigned value to num2

 

     finalresult = (num1 + num2)/3;/* calculation performed and result stored in variable finalresult*/

     System.out.println("Sum of " +num1+" and " + num2+ " is  " + finalresult);//output display

}

}

You can learn more about how to sum numbers in java at

https://brainly.com/question/24412452

#SPJ4

You want to create a new system account for a server program you’re installing. What option can you pass to useradd when creating the account to ensure that it’s created as a system account?

Answers

When creating the account, you can use the --system option to tell useradd to create it as a system account.

A program or utility that runs from the command line is known as a Linux command. An interface that accepts lines of text and converts them into instructions for your computer is known as a command line.

A graphical user interface (GUI) is simply a command-line program abstraction. For instance, a command is carried out every time you click the "X" to close a window. We can give the command you run options by using a flag.

Learn more about linux https://brainly.com/question/15122141

#SPJ4

The option that ensure that it’s created as a system account is system. The correct option is A.

What is system account?

A local system account is a user account created by an operating system during installation and used for purposes defined by the operating system.

User IDs for system accounts are frequently pre-defined (e.g. the root account in Linux.) The line between system and service accounts is sometimes blurred.

As the person is trying to create a new system account for a server program, System can help to pass to user end when creating the account to ensure that it’s created as a system account.

Thus, the correct option is A.

For more details regarding system account, visit:

https://brainly.com/question/14989055

#SPJ1

Your question seems incomplete, the missing options are:

A. --system

B. --nonuser

C. --sysaccount

D. --shared

E. --nohome

Question 1 of 10
Which step happens first after a switch receives a message that includes a
MAC address?
OA. The switch receives a reply from the message's receiving device.
B. The switch sends the message to a random device on the
network.
OC. The switch looks up the receiving device's MAC address in a
switching table.
OD. The switch forwards the message to the port of the receiving
device.
SUBMIT

Answers

The step that happens first after a switch receives a message that includes a MAC address is that "The switch looks up the receiving device's MAC address in a switching table." (Option C)

What is a MAC Address?

A media access control (MAC) address is a one-of-a-kind identifier assigned to a network interface controller for use as a network address in intra-network communications. This is a widespread use in most IEEE 802 networking technologies, such as Ethernet, Wi-Fi, and Bluetooth.

What is a switch?

A network switch is a piece of networking gear that links devices on a computer network by receiving and forwarding data to the target device using packet switching.

Learn more about MAC Addresses:
https://brainly.com/question/24812654
#SPJ1

Discussion Topic

Discuss how the color scheme of a web page can relate to its content. Suggest
ways in which web designers can use color to make a statement about the
subject of a web page, a brand, or the website itself.

Answers

Answer:

Colors represent different meanings to us, not only artistically but also in how we feel. Colors like red and pink for example could be used on a dating site since those colors typically adhere to those characteristics in our modern society. Thus, choose the colors that fit the theme and the goal of the page.

now suppose that the mp3 file is broken into 3 packets, each of 10 mbits. ignore headers that may be added to these packets. also ignore router processing delays. assuming store and forward packet switching at the router, the total delay is

Answers

It is often assumed that the delay in store and forward packet switching is negligible. However, this is not always the case, as seen in the example above.

The total delay for the three packets to be processed was 4.05 seconds. This can be attributed to the processing time at the router, as well as any headers that may be added to the packets.

While this may not seem like a significant amount of time, it can add up, especially if there are multiple packets to be processed. In general, store and forward packet switching is a reliable way to route data, but there can be delays involved that should be taken into account.

Learn more here:

https://brainly.com/question/24812743

#SPJ4

Which two wildcard characters are supported by the find and replace dialog box in an excel worksheet?.

Answers

The find and replace dialog box in an Excel worksheet supports the wildcard characters ? and *. Microsoft developed Microsoft Excel, a spreadsheet, for Windows, macOS, Android, and iOS.

It has calculation or computation capabilities, graphing tools, pivot tables, and the Visual Basic for Applications macro programming language (VBA). The Microsoft Office program suite includes Excel.

Excel is most frequently utilized in professional settings. It is utilized, for instance, in operations management, performance reporting, human resource management, and business analysis. Excel uses a sizable group of formatted cells to arrange and manipulate data as well as perform mathematical operations.

Learn more about excel https://brainly.com/question/23567635

#SPJ4

Which of the following are considered software piracy? Check all of the boxes that apply.
A.burning a music CD to give your friend from a band you both like
B.using works from Creative Commons
C.copying a program to give to someone else to use
D.burning a copy of a DVD to sell

Answers

Copying a program to give to someone else to use will be considered as a  software piracy.

What is Software piracy?Software piracy refers to copying, selling or distributing a software that is legally protected. According to the options given, the action that would not reduce software piracy is making it easy to copy the software as it will facilitate the job for people to get illegal copies of it.

The other options would help reduce software piracy because reducing the cost of software would make it more accessible to people with low income, offering downloads of software would get people to use the official version instead of an illegal copy and using some Commons licensing would allow people to use and share the software for free.

So, Option C is the correct answer.

Learn more about software piracy,

https://brainly.com/question/20828627

#SPJ1

Answer

the answer is in the screenshot below

Explanation:

Why might we use abbreviations when sending messages?What are the advantages

Answers

Answer:

Abbreviations help you write faster when you're in a hurry and save time. They also help you when you take notes in class.

Explanation:

Hope It Helps

Sorry If I'm Wrong

If a change is made to the active
cell, what type of cell will also
change?
Precedents
Dependents

Answers

Answer:

precedents

Explanation:

Marisa stood in front of her colleagues and delivered a presentation about how to use their company’s new email program. At the end of the presentation, Marisa felt like she did a great job. However, most of the workers had no idea what Marisa was talking about. They were clueless about how to use the new program. How did this happen? Describe how the communication process works so that messages are exchanged and understood, and why Marisa’s colleagues may not have understood the new email program after her presentation.

Sergio has been assigned to write all of his company’s social media posts. His supervisor tells him to beware of what he posts because sometimes these messages are misinterpreted by the public. What are three barriers of communication that might occur when people are interpreting social media posts? What steps can Sergio take to try to avoid a misstep with one of these barriers?

When Lavonda is conducting online research for her upcoming presentation on Internet etiquette in the workplace, she comes across an amazing presentation someone in Australia created that is exactly what she was planning to create. It would save her a lot of time if she could just change the name of the presenter to her own name and present that exact material as it is written. However, she isn’t sure if this is the right thing to do. What is the MOST ethical course of action Lavonda should choose in this scenario? How can she be sure that her choice complies with all applicable rules, laws, and regulations?

Stephen is extremely frustrated after a long day at work. He wants to vent on his favorite social media platform. He types, “I already have WAY too much to do at work and THEN my colleague tells me she’s pregnant and gets to take six weeks off to have a baby! Guess I’ll be doing all of her work too. UGH!” Before he clicks to post this message, what are four questions Stephen should ask himself to help him assess the ethical and legal implications of his message? If Stephen chose to post this message, how would this message MOST likely be interpreted by someone from his HR department?

Veronica is traveling for work. She will be talking to business partners in New York, Paris, South Africa, Saudi Arabia, and Japan. She will be proposing a new product line to a group of executives in each location. How might cultural differences make each of these meetings slightly different from one another? What are some potential communication problems Veronica might face during this multicultural, international business trip?

Answers

Marisa’s colleagues may not have understood the new email program after her presentation as the communication was ineffective.

The three barriers of communication that might occur when people are interpreting social media posts include ethnic, gender, and cultural identities.

The ethical course of action that Lavonda should choose in this scenario is to contact the owner of the book.

If Stephen chose to post this message, it'll be interpreted by someone from his HR department that headed up with his work.

The potential communication problem that Veronica might face during this multicultural, international business trip is language barrier

How to explain the information?.

It should be noted that communication simply means the exchange of information between different parties.

In this case, Marisa’s colleagues may not have understood the new email program after her presentation as the communication was ineffective. This led to the colleagues not getting the message.

Learn more about communication on:

brainly.com/question/26152499

#SPJ1

an administrator deploys a basic network intrusion detection system (nids) device to identify known attacks. what detection method does this device use?

Answers

When an administrator deploys a basic network intrusion detection system (NIDS) device to identify known attacks, the detection method used by this device is signature-based.

The types of detection methods.

In Computer technology, the detection methods used by an Intrusion Detection System (IDS) include the following;

Statistical anomaly-based detection.Stateful protocol analysis detection.Signature-based detection.

What is a signature-based detection system?

A signature-based detection system can be defined as a type of detection and protection system which is designed and developed to detect a malicious attack such as a worm, virus, trojan, malware etc., by checking and matching them with a repository of specific signatures, patterns or fingerprints.

Read more on signature-based detection here: https://brainly.com/question/7615966

#SPJ1

suppose you found that your model is suffering from high variance. which algorithm do you think could handle this situation and why?

Answers

Handling High Variance

For handling issues of high variance, we should use the bagging algorithm.
The bagging algorithm would split data into sub-groups with a replicated sampling of random data.
Once the algorithm splits the data, we use random data to create rules using a particular training algorithm.
After that, we use polling for combining the predictions of the model.

use c , c, java or python (any one) programming language for the following programming exercises. do not call built-in library functions that accomplish these tasks automatically. (examples are sprintf and sscanf from the standard c library.) write a function that receives a string containing a 32-bit hexadecimal integer. the function must return the decimal integer value of the hexadecimal integer. demonstrate your function with a driver program.

Answers

A function that receives a string containing a 32-bit hexadecimal integer. the function must return the decimal integer value of the hexadecimal integer.

The C++ Program

#include<iostream>

#include <cstring>

#include <string>

using namespace std;

int getDecimalForm(string);

int main() {

 // string binary;

 // Reads both 0 and B as int 48 while B should be

 string hexadecimal = "01F12EBA";

 int decimalForm;

 int re = hexadecimal[0], te = hexadecimal[1];

 /*cout << "Input an eight digit binary string of 1s and 0s to find the integer

 value in decimal form:\n"; cin >> binary;

 // Input validation

 while (binary.size() != 8 || ((binary[0] != '0' && binary[0] != '1')

 || (binary[1] != '0' && binary[1] != '1') || (binary[2] != '0' && binary[2] !=

 '1')

 || (binary[3] != '0' && binary[3] != '1') || (binary[4] != '0' && binary[4] !=

 '1')

 || (binary[5] != '0' && binary[5] != '1') || (binary[6] != '0' && binary[6] !=

 '1')

 || (binary[7] != '0' && binary[7] != '1')))

 {

 cout << "Input a valid eight digit binary string of only ones and zeros\n";

 cin >> binary;

 }*/

 cout << "The 32-bit binary integer value is " << hexadecimal << endl;

 cout << re << " " << te << " " << hexadecimal[0] - 55 << endl;

 decimalForm = getDecimalForm(hexadecimal);

 cout << endl

      << decimalForm << " is the same integer value expressed in decimal form";

}

// a function in C++ that receives a string containing a 16 - bit binary integer

int getDecimalForm(string hStr) {

 int value, num = 1, total = 0, exponent = 0;

 // Made adding happen starting from the right side

 for (int i = (hStr.size() - 1); i >= 0; i--) {

   if ('0' <= hStr[i] <= '9') {

     cout << hStr[i] << " cat\n";

    if (exponent != 0) {

       for (int j = 0; j < exponent; j++) {

         num *= 16;

       }

     }

     value = num * (hStr[i] - 48);

   }

   if ('A' <= hStr[i] <= 'F') {

     cout << hStr[i] << " dog\n";

     if (exponent != 0) {

       for (int j = 0; j < exponent; j++) {

         num *= 16;

       }

     }

     value = num * (hStr[i] - 55);

   }

   // Keep adding the value of the binary integer

   total += value;

   num = 1;

   exponent++;

 }

 return total;

}


Read more about C++ program here:

https://brainly.com/question/20339175

#SPJ1

which command displays the encapsulation type, the voice vlan id, and the access mode vlan for the fa0/1 interface?

Answers

A command which displays the encapsulation type, the voice VLAN ID, and the access mode VLAN for the Fa0/1 interface is: B. show interfaces Fa0/1 switchport.

What is a command?

A command can be defined as the set of instructions that is used to configure a network device such as a router, so as to make it active on a computer network and enable it perform certain tasks automatically during network communication.

In Computer networking, "show interfaces Fa0/1 switchport" is the command (syntax) that is designed and developed to avail an end user the opportunity to displays the following information for the Fa0/1 interface:

Operational Trunking EncapsulationAdministrative ModeOperational ModeSwitchportAdministrative Trunking EncapsulationTrunking Native Mode VLANAdministrative Native VLAN taggingVoice VLANNegotiation of TrunkingAccess Mode VLAN

Read more on switchport here: https://brainly.com/question/27874920

#SPJ1

Complete Question:

Which command displays the encapsulation type, the voice VLAN ID, and the access mode VLAN for the Fa0/1 interface?

show vlan brief

show interfaces Fa0/1 switchport

show mac address-table interface Fa0/1

show interfaces trunk

the < > selector with code { font-weight: bold; } will cause all heading 1 text to be displayed with the bold font-weight attribute.

Answers

h1{ font-weight: bold; } will cause all heading 1 text to be displayed with the bold font-weight attribute.

If you're looking to add a little bit of style to your website, the h1{ font-weight: bold; } CSS property is a great way to do it. This property will cause all heading 1 text to be displayed with the bold font-weight attribute, making it stand out from the rest of your content.

This is a great way to add a bit of visual interest to your site and make it more eye-catching for visitors. Plus, it's a simple CSS property to use, so it's easy to add to your site's stylesheet. So if you're looking for a way to add some pizzazz to your site, h1{ font-weight: bold; } is a great option!

Learn more on heading here:

https://brainly.com/question/15858153

#SPJ4

Select the correct answer.
Which option should you select to accept a tracked change?
O A.
Accept
Reject
O C. Review
OB.
O D. Delete

Answers

Answer:

Explanation:

Which option should you select to accept a tracked change?

A.  Accept

government systems typically lack resources and it expertise and operate on outdated hardware and software. this makes them particularly vulnerable to ransomware attacks.

Answers

Government systems typically lack resources and IT expertise and operate on outdated hardware and software. This makes them particularly vulnerable to ransomware attacks: True.

What is an information system?

An information system (IS) can be defined as a collection of computer systems and Human Resources (HR) that is used by a business organization or manager to obtain, store, compute, and process data, as well as the dissemination of information, knowledge, and the distribution of digital products from one location to another.

The components of an information system (IS).

In Computer technology, there are different components of an information system (IS) and these include the following:

SoftwareDataProceduresHardware

Generally speaking, operating on outdated hardware and software and lack of resources and IT expertise would make an information system (IS) to be potentially vulnerable to ransomware attacks.

Read more on information system here: brainly.com/question/24944623

#SPJ1

Complete Question:

Government systems typically lack resources and IT expertise and operate on outdated hardware and software. This makes them particularly vulnerable to ransomware attacks. True or False?

A computer database uses a binary sequence of 5 bits to represent unique user ids. To increase the number of unique ids that the database is able to represent, the database administrator increases the number of bits in a user id to 8 bits. How many times more unique user ids can be represented with the new system?

Answers

2^56 times more unique user ID's can be represented in the system.

For User ID entries, 5 bits will result in a maximum data allocation of 2^10.

The maximum amount of data that can be allocated for User ID entries using 12 bits is 2^66.

The additional unique user IDs that will be represented are therefore 2^(66-10) = 2^56 times.

A single entity within a given system is identified by a string of numbers or letters called a unique identifier (UID). UIDs enable addressing of that entity, enabling access to and interaction with it.

A 128-bit number called a universally unique identifier (UUID) is used to identify data in computer systems. A UUID can be made and used to identify something specifically.

Learn more about systems:

https://brainly.com/question/25594630

#SPJ4

a fileless malicious software can replicate between processes in memory on a local host or over network shares. what other behaviors and techniques would classify malware as fileless rather than a normal virus? (select all that apply.) a.

Answers

Uses lightweight shellcode and Uses low observable characteristic attacks is a Technique that will classify malware as file less rather than a regular virus.

As a computer user, you will usually find several problems related to your computer. One example is using an administrator account to download and install software applications. After the user runs the .exe extension installer file, the user often experiences crashes, slow computer performance, and strange services that run when turning on the computer, this is because the user downloads a Trojan horse malware.

To learn more about Malicious Software please go to link https://brainly.com/question/14309905

#SPJ1

Answer the following question by choosing the best option from the list below.

The need to upgrade which component would likely lead to replacing the computer?

CPU

hard drive

RAM

mouse

Answers

Answer:

RAM

Explanation:

Adding more memory is the easiest and most accessible way to upgrade your PC. It's affordable, you can do it on almost any desktop computer, and it doesn't require much tech know-how. It's also one of the best laptop upgrades if your machine allows it.

Other Questions
what would be the molarity of a solution prepared by diluting 250.0 ml of 0.400m sulfuric acid with 1000 ml of water? Mark Ogara rented a truck from Avis Rent-A-Car for the weekend (2 days). The base rental price was $30.45 per day plus 15 3/4 cents per mile. Mark drove 415.85 miles.How much does Mark owe?ound your answer to the nearest cent. FOR MY LAST QUESTION I forgot to add the screenshot so, help please! 25 points Find the measure of KNM A particular antibiotic is eliminated from the blood with a half-life of 16 hours. how many hours does it take for 100-milligram dose to decrease to 30-milligrams in the blood? PLSSSSSSSSSSS ANSWERRRRRRRR Which of the following is a part of contact precautions Percocet contains oxycodone at varying strengths. Every strength also contains 325mg of oxycodone per tablet. If the dose is not to exceed 3.9 g of oxycodonedaily, what is the maximum number of Percocet tablets a patient can take daily? The debate the founding fathers had over legislature was? summary of How chewing gum came to be by Henry Chase Hill what did ishmaels parents teach him about being a man? what general life lessons were his parents able to teach him that sustained him during his brutal passage from boyhood, and that he carries with him to this day? 29) A company planned to donate 640 bags of groceries, 320 cases of bottled water, and 800 small toys to alocal relief center. Suppose that the number of bags of groceries, cases of bottled water, and small toys are to beplaced in boxes with the same number of each good in each box. For instance, you could place 10 bags ofgroceries and 5 cases of water in each of 64 boxes, but that would require 12.5 toys per box-oops! To be asefficient as possible, assume that the company wants to use as few boxes as possible and must have a wholenumber of groceries, water, and toys in each box.a) How many boxes are needed? b) What are the contents of each box? Interest earned: $39.60Principal: ?Interest rate: 11%Time: 6 months A bag has 1 red, 3 blue, and 4 green marbles. Outcome A is drawing a green marble on the first draw. Outcome B is drawing a green marble on the second draw without replacing the first marble. HELP ASAPReferring to the map of the temperature field in the room, what was the largest variation in temperature?1.) 2 degrees2.) 4 degrees3.) 1 degree.4.) none of the above PLEASE HELP ITS DUE IN 6 MINUTESS: schools A and B are competing in an academic contest. Correct answers earn 9 points. Incorrect answers lose 4 points. In the final round, School A gives the same number of correct and incorrect answers. School B gives no incorrect answers and the same number of correct answers as School A. School A started the final round with 128 points. School B started with 56 . The game ends with the two schools tied. Let x represent the number of correct answers given by School A in the final round. Write an equation that models the outcome of the contest. Then find the number of answers that each school got correct in the final round. Can someone please answer the question for me? I am terrible at Algebra! you've taken alginate impressions on mr. smith and notice that his many missing teeth will make it difficult to articulate the study models properly. what do you think that dr. jones will request to assure proper occlusion of the models? I need information on the War of 1812. Like why did it start and who won when did it end and why was it important to history.( I do not need someone to do my essay I just need info) the base of a pyramid is the regular polygon abcdef gh, which has 14-inch sides. all eight of the pyramids lateral edges, va, v b, . . . , v h, are 25 inches long. to the nearest tenth of an inch, calculate the height of pyramid vabcdef gh.