A network administrator wants to ensure that connections between two servers are split according to usage. Which of the following devices can be used to best accomplish this?
A. bandwidth shaper
B. content switch
C. proxy server,
D. load balancer

Answers

Answer 1

The goal of a network administrator is to make sure that connections between two servers are divided based on utilization. The best way to do this is by using load balancer equipment.

What purposes serve load balancers?

The client's sole point of contact is a load balancer. The load balancer splits up incoming application traffic among many targets, like EC2 instances in various Availability Zones. Your application will be more accessible as a result. Your load balancer receives one or more listeners that you add.

What are load balancers and how do they differ?

The following types of load balancers are supported by elastic load balancing: application load balancers, network load balancers, and classic load balancers. These kinds of load balancers are compatible with Amazon ECS services. HTTP/HTTPS traffic is routed via application load balancers.

To know more about network administrator visit :-

https://brainly.com/question/14093054

#SPJ4


Related Questions

when choosing a programming language , whihc orf the following will not be deteremined by the choice of language

Answers

The language used should not determine if a solution is present or not.

What elements are important to take into account when selecting a programming language?

The ecology, community, and availability of programmers should all be taken into account when deciding which programming languages to use. Many developers make the error of selecting programming languages simply because they are more well-liked, fashionable, and cool.

Which five steps make up the programming process?

Application program development is the process of making programs. The process that includes the five stages of program development—analyzing, designing, coding, debugging and testing, and implementing and managing application software—is known as the program development life cycle (PDLC).

To know more about language visit :-

https://brainly.com/question/28266804

#SPJ4

Fred has saved a large number of Word documents on his computer running Windows 7 Home Edition. He installs Windows 10 on his computer, using the same partition on which Windows 7 was installed. He does not reformat this partition. What happens to these documents

Answers

These documents are placed in the Windows.old\Documents and Settings\Fred\My Documents folder.

Which Windows 10 installations demand that you submit a product key before they may be installed?

You will require a product key to do a clean install of Windows 10 on a computer when you are utilizing bootable installation media that has never been upgraded to the operating system and activated. Windows 10, as well as a compatible edition of Windows 7, Windows 8, or Windows 9, can be used to enter a product key. 1

Which approach from the list below is used to install Windows 10 completely from scratch on a new computer?

Migration via wiping and loading The user data and settings must be backed up to an external place before you may install Windows 10 on an already-existing PC using this approach. The user data and settings need to be restored after that.

To know more about Windows visit

brainly.com/question/13502522

#SPJ4

disadvantages of network

Answers

wifi works with all of the apps and does online classes

R Management 4. Assume that your system has one queue for jobs waiting for printing, and another queue for those waiting for access to a disk. Which queue would you expect to have the faster response? Explain your reasoning. ​

Answers

This suggests that the other queue, where jobs are awaiting access to a disk, will move more quickly.

Why is a system referred to as a computer?

Its interconnected components (input, output, storage, and CPU) work together to accomplish the tasks specified in the program being run, a computer is referred to as a system.

This is so that other jobs can't interfere with the job that is done as even the printing queue operates on the first Attend, First Wait algorithm, which requires the queue waiting and printing services to go through numerous other procedures before the service provided to print. Additionally, since the job with printing must save the data on the disk, there is a chance that doing so will quickly and randomly alter the disk's content. This may lead to the potential that perhaps the disk is just not updated with the most recent information; as a result, the printing process may produce outdated information that is unusable. However. As it does not operate according to the initial Ask, first Serve algorithm, the queue waiting for disk access would've been able to handle more jobs quickly.

To know more about System visit :

https://brainly.com/question/30146762

#SPJ4

Explain three major concerns in database systems.​

Answers

Answer:

Slow Read-Write Speeds. Performance slowdowns can occur due to high latency for disk read/writes. ...Scaling Problems. ...Incorrect Virtual Machine Setup. ...Lack of Backup and Monitoring. ...Query Performance. ...User and Query Conflicts. ...Configuration. ...Capacity.

A DHCP enabled computer on the network has been unplugged from the network for a week. In the meantime, several other computers were added to the network. When plugging the computer back into the network, the computer is unable to reach network resources. Which of the following is the most likely cause?

Answers

A DHCP server receives a request for an IP address from a device when it wants to connect to a network that uses the protocol.

What is DHCP and how does it work?

Assigning IP addresses to stationary and mobile hosts that are wired or wirelessly linked is automated using DHCP, a covert process.

A DHCP server receives a request for an IP address from a device when it wants to connect to a network that uses the protocol.

When a device requests help, the server responds by sending an IP address to it. It then keeps track of how the address is being used and returns it after a set amount of time or when the device shuts down.

After that, the IP address is returned to the pool of addresses that the DHCP server manages so that it can be allocated to a different device when it requests network connectivity.

While assigning IP addresses is the protocol's primary role, DHCP also assigns a number of other networking-related settings, such as subnet mask, default gateway, and domain name server (DNS). BOOTP (bootstrap protocol), a predecessor to DHCP that can only be used on IPv4 networks, has been replaced by an IEEE standard called DHCP.

To Learn More About DHCP servers Refer To:

brainly.com/question/29763949

#SPJ4

COP 2930 - Individual Programming Assignment #2Due date: Please consult WebCourses for your due date/timeObjectives1. To give students practice at typing in, compiling and running simple programs.2. To learn how to read in input from the user.3. To learn how to use assignment statements and arithmetic expressions to makecalculationsProblem A: Biggest Yard (bigyard.py)You must fence off an area for your dogs to play freely and you have a fixed amount offencing. You have decided that you want the fenced off area to be in the shape of a rectanglewith an integer number of feet for both dimensions. Write a program that outputs all of thepossible dimensions of the fenced off area as well as the area of each of those possibilities.Input SpecificationNote: It is guaranteed that whoever uses your program will adhere to these specifications.This means that you do NOT have to check for them!The amount of fencing will be a positive even integer in between 4 and 100, inclusive.Output SpecificationWrite out a single line of the formX by Y with area Zwhere X is the smaller dimension, in feet, Y is the larger dimension in feet, and Z is thecorresponding area, for every possible rectangle. Order the rectangles by increasing orderof X. Also, the last line may have X = Y.Output SampleBelow is one sample output of running the program. Note that this sample is NOT acomprehensive test. You should test your program with different data than is shown herebased on the specifications given above. In the sample run below, for clarity and ease ofreading, the user input is given in italics while the program output is in bold. (Note: Whenyou actually run your program no bold or italics should appear at all. These are simply usedin this description for clarity’s sake.)Sample Run #1How much fencing do you have, in feet?101 by 4 with area 42 by 3 with area 62Sample Run #2How much fencing do you have, in feet?161 by 7 with area 72 by 6 with area 123 by 5 with area 154 by 4 with area 16Problem B: Tennis Scorer (tennis.py)In the game of tennis, a match is a series of sets and a set is a series of games. A typicalmatch winner is the player who first wins 2 sets. (Thus, all typical matches last either 2 or3 sets long.) To win a set, a player either has to be the first to win six games and also winby a margin of at least two games, or, if a set is tied at 6 - 6, then the winner of the nextgame wins the set 7 - 6. (If this confuses you, just ask me in class to explain further!)Serena and Roger are playing a match.Write a program that prompts the user to enter who won each game and then reads in eachresponse and determines who won the match. Your program MUST end right after the lastgame of the match is entered and you must display both the winner and how many setsboth players won.Input SpecificationNote: It is guaranteed that whoever uses your program will adhere to these specifications.This means that you do NOT have to check for them!Every line of input will either be "SERENA" or "ROGER", depending on who won thecorresponding game.Output SpecificationProduce a single line of output with the following format:PLAYER won the match 2 sets to X sets.where PLAYER is the winner of the match and X is the number of sets won by the loser.Output SampleBelow is one sample output of running the program. Note that this sample is NOT acomprehensive test. You should test your program with different data than is shown herebased on the specifications given above. In the sample run below, for clarity and ease ofreading, the user input is given in italics while the program output is in bold. (Note: Whenyou actually run your program no bold or italics should appear at all. These are simply usedin this description for clarity’s sake.3Sample Run #1Please enter the game winners, in sequenceROGERSERENAROGERSERENASERENASERENAROGERSERENAROGERSERENASERENASERENASERENASERENASERENASERENASERENA won the match 2 sets to 0 sets.RestrictionsPlease IDLE 3.6 (or higher) to develop your program. Write each in a separate file with thenames specified previously, bigyard.py and tennis.py.Each of your programs should include a header comment with the following information:your name, course number, assignment title, and date. Also, make sure you includecomments throughout your code describing the major steps in solving the problem.Grading DetailsYour programs will be graded upon the following criteria:1) Your correctness2) Your programming style and use of white space. Even if you have a plan and yourprogram works perfectly, if your programming style is poor or your use of white space ispoor, you could get 10% or 15% deducted from your grade.3) Compatibility to IDLE.

Answers

A Math Academy introduction Your community is getting a brand-new tutoring facility.

What is Math Academy?Math can be challenging for many children, thus the operators of this institution would want to provide a variety of activities to complement their Math Academy. You have been engaged by The Math Academy to assist them in developing educational software that will enable them to monitor the progress of their students.The Math Academy first requests a quick software that calculates the distance between two points on a Cartesian Plane so they can test their hypothesis. The pupils are supposed to solve their own problems on paper and then contrast their solutions with those provided by your application. X1 and Y1 are two Cartesian points that your software will take into account (X2, Y2). Following that, your application must use the method below to determine how far apart these two locations are. d=√(X2−X1)2+ ¿¿Each X or Y will be an integer between -100 and 100 according to input specification Specifications for Output : Output the outcome in the following manner: Z.ZZ units separate the coordinates (X1, Y1) and (X2, Y2).The output sample Some examples of the program's outputs are shown below. You should be aware that these samples are NOT an exhaustive test. Based on the above-mentioned parameters, you should test your application with data other than what is displayed here. For readability and clarity, the user input and programme output are separated by bold text in the sample run that follows. (Note: Neither bold nor italics should appear when your application is actually run. For the purpose of clarity, these are merely used in this description.

To Learn more About Math Academy Refer To:

https://brainly.com/question/27894163

#SPJ4

A student is creating an algorithm to display the distance between the numbers num1 and num2 on a number line. The following table shows the distance for several different values.
Value of num1 - Value of num2 - Distance Between num1 and num2
5 2 3
1 8 7
-3 4 7
Which of the following algorithms displays the correct distance for all possible values of num1 and num2?

Answers

Subtract number one from number two and store the outcome in the variable diff. Display the outcome by taking the actual value of the difference.

What kind of algorithm would that be?

The process with doing laundry, the way we solve the difficult math problem, the ingredients for making a cake, and the operation of a web search are all instances of algorithms.

What is an algorithm's straightforward definition?

This algorithm is a technique used to carry out a computation or solve a problem. In either hardware-based or software-based routines, algorithms function as a detailed sequence of commands that carry out predetermined operations sequentially. All aspects of project science employ algorithms extensively.

To know more about Algorithm visit :

https://brainly.com/question/22984934

#SPJ4

Select the item below that lists the top level domain name for the URL http://www.yahoo.com.
a. http
b. www
c. yahoo
d. com

Answers

The top level domain name for the http://www.yahoo.com URL is com.

How does URL work?

Websites have individual addresses to make it easier for users to find them, just like residences and structures have a street address. These are known as URLs on the Internet (Uniform Resource Locators).

What's URL on a phone?

Locator for Unified Resources. The address or location of a file or service on a computer network is given by a string of text (usually the Internet.) A URL that connects to a particular web page is the most typical sort of URL. Such a URL's full form begins with "http://" or "https://".

To know more about URL visit:

https://brainly.com/question/19463374

#SPJ4

You are asked to recommend an email retrieval protocol for a company's sales team. The sales team needs to access email from various locations and possibly different computers. The sales team does not want to worry about transferring email messages or files back and forth between these computers. Which email protocol is designed for this purpose

Answers

With IMAP4, a mail server can store messages that users can access from different locations and client devices. A POP3 server necessitates the user downloading their email.

Which of the following protocols allows for safe email retrieval?

Email on a remote web server can be accessed from a local client using the Internet Message Access Protocol (IMAP), a mail protocol. The two most often used Internet mail protocols for obtaining emails are IMAP and POP3.

What one of the following protocols do email servers communicate with one another using?

Over the Internet, emails are delivered using the Simple Mail Transfer Protocol (SMTP). Most email clients send messages to the server using this protocol.

To know more about IMAP4 visit :-

https://brainly.com/question/14289109

#SPJ4

You are configuring cloud-based virtual networks without having to connect directly to the cloud provider hardware routers to configure VLANs. What enables this capability

Answers

Above the hardware that makes up network infrastructure, software-defined networking (SDN) adds a configuration layer that makes management easier and more standardized, such as through a web GUI or command-line tools.

Which approach involves processing data on network edge devices before moving it into and out of the cloud?

In order to process data between data sources and a public cloud environment, such as a business on-premises network, fog computing, also known as edge computing, uses network edge devices.

What type of network security protocol allows for the encryption of all network traffic with just one configuration?

Unlike application security protocols like HTTPS, which only apply to web servers and require each server to have a PKI certificate, IPSec can be configured to secure some or all network traffic using a single setup.

To know more about SDN visit :-

https://brainly.com/question/29386698

#SPJ4

A professor went to a website for rating professors and looked up the quality rating and also the​ "easiness" of the six​ full-time professors in one department. The ratings are 1​ (lowest quality) to 5​ (highest quality) and 1​ (hardest) to 5​ (easiest). The numbers given are averages for each professor. Assume the trend is​ linear, find the​ correlation, and comment on what it means

Answers

The result of the statistical software for this issue is r = 0.862. As a result, there is a 0.86232315 link between quality and ease.

Is a website reliable?

Look at the website's URL. If the URL starts with "https" rather than "http," the site is secured with a TLS/SSL certificates (the s in https stands for secure). All of your data is protected by TLS certificates when it is transmitted from computer browser to the webpage servers.

What drives our use of websites?

A web page is frequently used to give viewers information, including images or videos to better explain crucial subjects. A website can be utilised to market goods and services to visitors. A site, like our website Computer Hope, is made up of several web pages.

To know more about Website visit :

https://brainly.com/question/19459381

#SPJ4

A significant part of your marketing plan should allocate resources to online advertising.

True


False

Answers

The statement "a significant part of your marketing plan should allocate resources to online advertising" is definitely true.

What is Online advertising?

Online advertising may be defined as a type of marketing strategy that significantly involves the utilization of the Internet as a medium in order to obtain website traffic and target.

The process of online advertising may typically include banner ads, search engine results pages, social networking ads, email spam, online classified ads, pop-ups, contextual ads, and spyware.

The purpose of a marketing strategy is to maximize the influence of advertising either via online medium or offline versions. The basic intention of this is to promote the marketing of the product to their customers.

Therefore, the statement "a significant part of your marketing plan should allocate resources to online advertising" is definitely true.

To learn more about the Purpose of advertising, refer to the link:

https://brainly.com/question/1658517

#SPJ1

Write a method sameDashes that takes two Strings as parameters and that returns whether or not they have dashes in the same places (returning true if they do and returning false otherwise). For example, below are four pairs of Strings of equal length that have the same pattern of dashes. Notice that the last pair has no dashes at all.
string 1: "hi--there-you." "-15-389" "criminal-plan" "abc"
string 2: "12--(134)-7539" "-xy-zzy" "(206)555-1384" "9.8"
To be considered a match, the Strings must have exactly the same number of dashes in exactly the same positions. The Strings might be of different length. For example, the following calls should each return true:
sameDashes("1st-has-more characters", "2nd-has-less")
sameDashes("1st-has-less", "2nd-has-more characters")
because the Strings each have two dashes and they are in the same positions. But the following calls should each return falsebecause the longer string has a third dash where the shorter string does not:
sameDashes("1st-has-more-characters", "2nd-has-less")
sameDashes("1st-has-less", "2nd-has-more-characters")
Method problem: For this problem, you are supposed to write a Java method as described. You should notwrite a complete Java class; just write the method(s) described in the problem statement.

Answers

In Java that compares two strings for dashes. The test only returns true if each string has the same amount of dashes in the same position in the strings.

What is java? and how to write method described in problem statement?

Java is a programming language and computing platform first released by Sun Microsystems in 1995. It has evolved from humble beginnings to power a large share of today’s digital world, by providing the reliable platform upon which many services and applications are built. New, innovative products and digital services designed for the future continue to rely on Java, as well.Java is fast, secure, and reliable. Developers use Java to construct applications in laptops, data center's, game consoles, scientific supercomputers, cell phones, and other devices.

I have to write a program in Java that compares two strings for dashes. The test only returns true if each string has the same amount of dashes in the same position in the strings.

Comparing the following two strings

String string1 = "two-twenty-nine"

String string2 = "ten-forty-five and I'm hungry."

with the above criteria would return true. It doesn't matter whether one string is longer than the other.

Any assistance would be appreciated!

I have tried:

- converting the strings to char arrays and then comparing the indexes

- Using String. index Of() for each string, and then creating a variable int new Start = String. index Of() with the index of the previous dash as the new starting point to look from

public static void sameDashes(String string1, String string2) {

   int count = 0;

   char index1 = ' ';

   char index2 = ' ';

   char dash = '-';

   char[] string1Array = string1.toCharArray();

   char[] string2Array = string2.toCharArray();

   while (count < string1Array.length && count < string2Array.length) {

       if (string1Array[index1] == dash && string2Array[index2] == dash) {

           System. out. print ln("true");

To learn more about Java refers to ;

https://brainly.com/question/26789430

#SPJ4

in a data dictionary, any name other than the standard data element name is called a(n) _____.

Answers

In a data dictionary, any name other than the standard data element name is called an alias.

According to the IBM Dictionary of Computing, a data dictionary is a a feature that keeps track of your data. MAPS contains the Data Dictionary's storage. It is described by Oracle as a group of tables with metadata. The phrase can refer to databases and database management systems (DBMS) in a number of ways that are all closely related.

In order to help users comprehend the tables and data they are working with more quickly and to bring uniformity to your reports and Data Blocks, aliases are field-level descriptive names.

Learn more about data dictionary

brainly.com/question/8897251

#SPJ4

Which framework should be recommended for establishing a comprehensive information security management system in an organization?

Answers

The best framework for establishing a comprehensive information security management system in an organization is the ISO 27001 standard.

Implementing an ISO 27001 Standard ISMS for Comprehensive Information Security Management

This framework provides a set of guidelines, processes, and best practices for how to develop, implement, and manage an effective information security management system (ISMS). It helps organizations identify, assess, and manage their information security risks, as well as set up appropriate security controls to protect their data. Additionally, it is the most widely adopted information security standard in the world.

Learn more about Security Management: https://brainly.com/question/14364696

#SPJ4

A backup utility can write copies of important data files and folders on ____.
a. an internal hard disk drive
b. an Internet server’s disk drive
c. a network server’s disk drive
d. any of these

Answers

An internal hard drive, a network server's disk drive, or any of the following are all places where a backup program can store copies of crucial data files and folders.

is a short-range wireless technology that enables users to text or make calls using their hands-free?

In order to exchange data between stationary and mobile devices over short distances and to create personal area networks, Bluetooth is a short-range wireless technology standard (PANs).

What do we term a set of various application software packages that are offered as a unit?

When a set of connected software programs (such a collection of graphics programs, utility programs, or office-related software) is offered as a package, that group of software is referred to as a software suite.

To know more about backup program  visit :-

https://brainly.com/question/23653581

#SPJ4

Which of the following warns that the computer is infected and needs immediate attention? a. compression tool b. anti-virus software c. FBI consumer alert b. web filter

Answers

Anti-virus software typically warns that the computer is infected and needs immediate attention. Anti-virus software is designed to identify and protect against viruses and other malware that can damage or compromise the security of a computer. If the anti-virus software detects a virus or other threat, it may issue a warning to the user to alert them to the issue and recommend steps to take to address it.

A technician has installed two new drives in one of the computers in the computer lab. Disk1 will be utilized for user and application data. Disk 2 has already been properly configured and has production data on in. The technician has been unable to format the appropriate disk from the command prompt.
The lab requires that Disk1 be a dynamic disk configured with two partitions. The first partition must be 256,000 MB in size and mapped to drive F. The second partition must be 512,000 MB in size and mapped to drive G.
The new partitions must be formatted to ensure that user's files can be secured from other users and that the disk must be configured to account for future redundancy.
Make sure to maintain a consistent file system.
INSTRUCTIONS:
Conduct the necessary steps within the Disk Manager to accomplish these tasks.
If at any time you would like to bring back the initial state of the simulation, please click the Reset All button.

Answers

A user has installed two new drives in one of the computers in the computer lab and has been unable to format Disk1 from the command prompt.

How to installed new drives in computers?Right click on disk 1, click on initializeChoose disk and option as MBR. Hit ok.Again, right click on disk 1 and choose convert to dynamic disk.Now right click on disk 1 and choose new simple volume.Specify storage as 256000 and assign a drive letter F and choose file system as NTFS and click finish.Do the same thing for rest of space of disk 1, assigning 512000MB and using Disc GA user has installed two new drives in one of the computers in the computer lab and has been unable to format Disk1 from the command prompt.The lab requires that Disk1 be a dynamic disk configured with two partitionsThe first partition must be 256,000 MB in size and mapped to drive F. The second partition must be 512,000 MB in size and mapped to drive G. The new partitions must be formatted to ensure that user â €™s files can be secured from other users and that the disk must be configured to account for future redundancy.Make sure to maintain a consistent file system.

To learn more about installed drives refers to;

https://brainly.com/question/14374281

#SPJ4

Assume a virtual warehouse of size X-Large(128 servers) running for an hour. What is the amount of Snowflake credits that will be billed

Answers

There can only be one current warehouse active at a time in a Snowflake session. The USE WAREHOUSE command allows you to specify or modify the current warehouse for a session at any time.

What transpires when a virtual warehouse is expanded?

In general, resizing a warehouse enhances query performance, especially for bigger, more complicated queries. It can also assist in reducing queuing if a warehouse has sufficient servers to handle all of the concurrently submitted queries.

How much in Snowflake is one credit?

A unit of measurement called a Snowflake credit is only used when a customer uses computational resources. Credit costs begin at $2, depending on your location and desired cloud provider.

To know more about command visit:-

https://brainly.com/question/29611299

#SPJ4

The Windows ________ utility returns your computer to the state it was in when it came from the factory.

Answers

Answer:

Windows system Restore.

True or false: Sports teams are superior to other forms of entertainment, and do. Do not directly compete with others such as video games and movie theaters

Answers

Because concessions have grown to comprise a significant portion of professional sports teams' overall profits, they have been steadily rising prices in a monopolistic environment, which is why the cost of food and drink in sports stadiums is so high.

Do you mean food by concession?

Some gatherings or locations enter into agreements with third parties to sell food. These agreements are frequently referred to as concessions, which is also the term for a food stand.

What makes food a concession?

A ballpark or other venue's concessions are known as such because the venue has given a certain vendor permission to serve food there. Think about that the next time you're eating peanuts at a sporting event.

To know more about profits visit:-

https://brainly.com/question/15044847

#SPJ4

- What is the function of these 3 types of application software
Word Processing-
Spreadsheet-
Database-

Answers

Traitement de texte - consiste à mettre en forme un texte d'un point de vue typographique

Tableur - programme informatique capable de manipuler des feuilles de calcul

Base de données - permet de stocker et de retrouver des données structurées, semi-structurées ou des données brutes ou de l' information

True/False: An algorithm can often be implemented with either recursion or iteration, however recursion is typically faster.

Answers

False. An algorithm can often be implemented with either recursion or iteration, however recursion is typically faster.

Recursive algorithms are they quicker than iterative ones?

Recursion is slower than iteration, which is more effective. Iterative codes are more straightforward to optimize and typically have polynomial time complexity. In data structures like an array, set, map, etc., they are used to repeatedly iterate over the elements.

Why does recursion beat iteration?

When using the divide and conquer strategy, recursion can be used to speed up the process and reduce the size of your problem at each stage. Recursion is often easier to construct than iterative solutions, making it more "elegant".

To know more about recursion visit :-

https://brainly.com/question/30027987

#SPJ4

Give a complete implementation of the stack ADT using a singly linked list that includes a header sentinel.

Answers

Implementing a push operation on a stack using a linked list needs the following steps: Prior to allocating memory, create a node. The node gets pushed to the top of the linked list as the first node if the list is empty.

How is a stack ADT put into practice?

The use of an array, structure, pointer, or linked list can be used to implement a stack. A stack may have a sense of dynamic resizing or it may have a fixed size.

Implementing ADT: What is it?

Instead of storing data in each node, the Stack ADT Implementation stores a pointer to the data. The software allots memory for the data after giving the stack ADT the address.

To know more about ADT visit:-

https://brainly.com/question/15735229

#SPJ4

What specific term does the U. S. Department of Justice use to label all illegal access to computer or network systems

Answers

A computer cracker is someone who tries to access computer systems without authority, according to the Glossary. These people, as opposed to hackers, are frequently evil.

What does NBTscan's NBT portion stand for?

TCP/IP over NetBIOS. When working with Windows NT, 2000, and Windows XP computers, the what enumeration tool is quite helpful.

What does the command Nbtstat accomplish?

The NetBIOS over TCP (NBT) connection for the Node is described in detail by the nbtstat command. The IP addresses for the interfaces, the broadcast IP mask, the IP addresses of the active WINS servers, and details about the node's registered NetBIOS identities are also displayed.

To know more about NetBIOS visit:-

https://brainly.com/question/15085605

#SPJ4

Write a program that:

Takes the list lotsOfNumbers and uses a loop to find the sum of all of the odd numbers in the list (hint: use Mod).
Displays the sum.
Situation B
Write a procedure that takes a positive integer as a parameter. If the number given to the procedure is no more than 30, the procedure should return the absolute difference between that number and 30. If the number is greater than 30, the procedure should return the number doubled.

Answers

Situation A:

#include <iostream>

#include <vector>

#include <string>

int main(int argc, char* argv[]) {

 //Fill it by own.

 std::vector<int> lotsOfNumbers = {0,1,2,3,4,5,6,7,8,9};

 //Loop to find odd numbers.

 for(int i=0;i<lotsOfNumbers.size(); i++) {

   if(lotsOfNumbers[i]%2!=0) std::cout << lotsOfNumbers[i] << std::endl;

   else continue;

 }

 return 0;

}

Situation B:

#include <iostream>

#define check(x) ((x>30) ? 2*x : 30-x)

int main(int argc, char* argv[]) {

 std::cout << check(15) << std::endl;

 std::cout << check(-2) << std::endl;

 std::cout << check(30) << std::endl;

 std::cout << check(78) << std::endl;

 

 return 0;

}

Why do you think lists are essential concepts in programs?

Answers

Answer:

A list, sometimes called an array, is a tool for storing data, just like a variable. However, unlike a variable, which can only store one piece of data, a list can store many. Like a variable, a list is a named storage area within the computer's memory.

Which icon allows you to see paragraph formatting features?

bullets
shading
show/hide
alignment

Answers

An icon that allows you to see paragraph formatting features is known as alignment. Thus, the correct option for this question is D.

What is Paragraph formatting?

Paragraph formatting refers to formatting commands that significantly affect entire paragraph settings such as indenting, bullets, line spacing, and paragraph spacing.

There are four types of paragraph alignment available in Microsoft Word. They typically include left-aligned, center-aligned, right-aligned, and justified.

The paragraph formatting is located on the Home tab or on the Page Layout tab, click the Paragraph Dialog Box Launcher in the Paragraph group.

Therefore, an icon that allows you to see paragraph formatting features is known as alignment. Thus, the correct option for this question is D.

To learn more about Paragraph formatting, refer to the link:

https://brainly.com/question/29327739

#SPJ1

You cannot install a driver on a 64-bit version of Windows when which of the following is true?
O The Devices and Printers folder
O It removes a system's name and SID.
O The driver lacks a digital certificate.
O You should roll back the driver.

Answers

A driver cannot be installed on a 64-bit version of Windows if it is missing a digital certificate.

On Windows 10 64-bit, how do I install drivers?

Click Device Manager after entering "device management" into the taskbar's search box. Select a category, then right-click (or press and hold) the item you want to alter to see the names of the devices.

How can I install 32-bit drivers on Windows 10's 64-bit platform?

On 64-bit OSs, 32-bit drivers cannot be installed. In order to print to it, your only practical choice would be to use a virtual machine or a vintage PC running 32-bit XP. If it really only has an INF file, it suggests that the device is actually using a generic "printer" driver.

To know more about Device Manager visit:-

https://brainly.com/question/11599959

#SPJ4

Other Questions
What is a 2 step problem? Please help!ponential functions are in the form y = a(b)'.What values of b make it an exponential growth function?What values of make b it an exponential decay function? What percentage of energy is used by data centers? could u please help me Use the drop-down menu to complete the sentence.In Spanish colonial society, the group in the highest position were theChoose... What is the median of the following 9 numbers: 23, 15, 32, 27, 19, 11, 30, 19, 22? How do you make a truth table? What are some of reasons that Francisco has difficulty with reading and writing in English, besides the fact that his native language is Spanish? What happens if opportunity costs are ignored? 1. PART A: Which TWO of the following bestidentify the central ideas of this text?A. The South seceded because it feared thatLincoln would abolish slavery.B. South Carolina seceded because southernstates felt Lincoln had not won thesouthern election and was not their trueleader.C. The South seceded because South Carolinawas crucial to the slave economy andwithout its support, other southern stateswould fail economically.D. Lincoln successfully baited South Carolinainto being the first to lead an offensivemilitary attack. What was the greatest decision the Second Continental Congress needed to make? Which of the following strategies should be used by companies to minimize sex discrimination? a) Pairing promising fernale executives for mentoring. b) Excluding women from male dominated Social activities. c) Employing more male managers to train and supervise female employees. d) Creating work teams consisting of female employees It takes 126 cubes that have edge lengths of 1/3 ft to completely fill a plastic bin. What is the area of the base of the bin? 1. How many moles of propane are present at STP if the volume is 65.0 L? Please show all work Why is the Copernican Revolution significant? he patient has an order for metformin (Glucophage) 2 g orally. The medication available is metformin 1000 mg/scored tablet. How many tablets will the nurse administer a simple l cell organism divides in to 3 identical cells every 20 minutes, how many organisms will there be after 8 hours. PLS HELP ME WITH QUESTION 5 I NEED HELP ASAP What is the primary purpose of IRB ? Determine the quantity of charge on a plastic tube which has been rubbed with animal fur and gained 3. 8 x 10^9 electrons