in ____ structures, the computer repeats particular statements a certain number of times depending on some condition(s).

Answers

Answer 1

In looping structures, the computer repeats particular statements for a certain number of times based on some condition(s).

What is a looping structure?

A looping structure can be defined as a type of function which instructs a computer to repeat specific statements for a certain number of times based on some condition(s).

This ultimately implies that, a computer repeats particular statements for a certain number of times based on some condition(s) in looping structures.

Read more on loop here: https://brainly.com/question/26130037

#SPJ11


Related Questions

Profitability, consumer relations, and competition are involved in what kinds of concerns in the design process?

Answers

Profitability, consumer relations, and competition are involved in Product Development and Commercialization.

What are the stages of product development?

The stages of the New Product Development act are:

Idea Generation. Screening. Concept Development. Product Development and Commercialization.

Note that Product development and commercialization is known to be the supply line management method that helps to give structure for creating and bringing in of  new products in line with customers and suppliers in the market.

Therefore, one can say that Profitability, consumer relations, and competition are involved in Product Development and Commercialization.

Learn more about Profitability from

https://brainly.com/question/24553900

#SPJ1

Write an expression that evaluates to true if and only if the value of the boolean variable workedovertime is true.

Answers

Answer:

import java.io.*;

public class WorkedOvertime

{

 public static void main (String[] args)

    {

  boolean workedovertime = false;

  if ( workedovertime )

   {

    System.out.println("Evaluates to True");

   }

   else

    {

    System.out.println("Evaluates to False");

    }

 }

}

Explanation:

This simple java program evaluates to true if and only if the value of the boolean variable workedovertime is true.

ext in a worksheet that identifies a title and subtitle, row and column headings, and other descriptive information is called

Answers

The text in a worksheet that identifies a title and subtitle, row and column headings is known as label.

What are the headings and titles in a spreadsheet?

Labels are known to be the to text that is said to be typed into any given cells of a spreadsheet.

Note that Labels do not have any numeric value and is one that is not used in a formula or function.

Therefore, The text in a worksheet that identifies a title and subtitle, row and column headings is known as label.

Learn more about label from

https://brainly.com/question/15663649

#SPJ11

What command will prevent all unencrypted passwords from displaying in plain text in a configuration file?.

Answers

Answer:

The service password-encryption command

Explanation:

To prevent all configured passwords from appearing in plain text in configuration files, an administrator can execute the service password-encryption command. This command encrypts all configured passwords in the configuration file

What three application layer protocols are part of the tcp/ip protocol suite?

Answers

The three application layer protocols that are part of the TCP/IP protocol suite are:

DNSDHCPFTP

What is the TCP/IP protocol suite?

The TCP/IP protocol suite is an abbreviation for Transmission Control Protocol and Internet Protocol and it can be defined as a standard framework for the transmission (prepare and forward) of information on digital computers over the Internet.

In the Transmission Control Protocol and Internet Protocol (TCP/IP) model, the three application layer protocols include the following:

DNSDHCPFTP

Read more on TCP here: https://brainly.com/question/17387945

#SPJ12

Which command in power bi desktop query editor is used to create a new query that uses the output of another query as its input source?

Answers

The Reference command in power bi desktop query editor is used to create a new query.

What is the Reference command about?

Note that if a person create a reference to another query, there is given just one applied steps where new query is said to be referencing to another query and starts it's own like parent query.

Therefore, The Reference command in power bi desktop query editor is used to create a new query.

See options below

A. Duplicate

B. Pipe

C. Reference

D. Map

Learn more about query from

https://brainly.com/question/25694408

#SPJ12

The user can close all the programs if he closes the open virtual desktop true false

Answers

The user cannot close all the programs if he closes the open virtual desktop.

What are virtual desktops?

A virtual desktop is a computer operating system that does not run directly on the endpoint hardware from which a user accesses it.  The desktop environment is separated from the physical device used to access it.

I call it a false desktop.

It is use to separate your work activities.

Therefore, the user cannot close all the programs if he closes the open virtual desktop.

learn more on virtual desktop here: https://brainly.com/question/14332029

#SPJ12

list of history of generation computer?​

Answers

First-generation — 1940–1956used vacuum tubesENIAC, UNIVAC I, IBM 650, IBM 701, etc.Second generation — 1956-1963used discrete transistorsIBM 7090 and 7094, UNIVAC 1107, PDP-1 and 8, etc.Third generation — 1964-1971used integrated circuits (but not microprocessors)IBM System/360, UNIVAC 1108, PDP-8/I, PDP-11/20 and PDP-11/45, etc.Fourth-generation — 1971-presentuse microprocessorsPDP-11/03 and PDP-11/34, Apple ][, IBM PC, Apple Macintosh, IBM z Series, etc.Fifth-generation — (current research)artificial intelligence and quantum computing

When passing a list of parameters to a stored procedure by name, you can omit optional parameters by:

Answers

When passing a list of parameters to a stored procedure by name, you can omit optional parameters by omitting the parameter name and value from the list.

What is optional parameter?

It should be noted that optional parameter simply means a method that doesn't force pass arguments at calling time.

In this case, when passing a list of parameters to a stored procedure by name, you can omit optional parameters by omitting the parameter name and value from the list.

Learn more about parameter on:

brainly.com/question/13151723

#SPJ12

According to the rules of precedence which operator will be evaluated first?

Answers

Based on the rules of precedence the operator that will be evaluated first is AND.

What Does Precedence Mean?

Precedence, in C#, is known to be a kind of rule that tells the order in which a specific operations need to be carry out in an expression.

Note that Based on the rules of precedence the operator that will be evaluated first is AND.

Learn more about precedence from

https://brainly.com/question/1964725

#SPJ12

what does the asterisk (*) after select tell the database to do in this query?

Answers

In the case above, The asterisk helps database or tell it to select all data that meets the criteria as stated in the query.

What does asterisk (*) mean in SQL?

The term means all columns. Note that The asterisk or star symbol ( * ) is a term that implies all columns in a given database.

Therefore, In the case above, The asterisk helps database or tell it to select all data that meets the criteria as stated in the query.

Learn more about asterisk from

https://brainly.com/question/1620017

#SPJ11

let the value of the variable x be 2, the value of the variable y be 2, and the value of the variable r be 1. which of the following code segments can be used to draw the figure?

Answers

To draw the figure, follow the steps:

drawCircle(x, y, r)drawCircle(x, y + 3, r)drawCircle(x + 3, y, r)drawCircle(x + 3, y + 3, r)

What is the code segment?

A text segment is known to be a code segment that is said to be part of the sections of a program in an object file or in memory, that has executable instructions.

Note that a code segment can be seen as text which is said to be a part of an object file of the program's virtual address system that has a kind of executable instructions.

Therefore, To draw the figure, follow the steps:

drawCircle(x, y, r)drawCircle(x, y + 3, r)drawCircle(x + 3, y, r)drawCircle(x + 3, y + 3, r)

Learn more about code segments from

https://brainly.com/question/25781514

#SPJ11

After the execution of the following statement, the variable sold will reference the numeric literal value as (n) ________ data type. sold = 256.752

Answers

The variable sold will reference the numeric literal value as float data type.

What is float Data Type?

The float data type is known to be a kind of data whose Size Description is one that falls from 4 bytes and it is one that saves fractional numbers.

Note that it can save from 6 to 7 decimal digits and as such, The variable sold will reference the numeric literal value as float data type.

Learn more about data type from

https://brainly.com/question/179886

#SPJ1

Asynchronous software enables team members to work together at _____

Answers

Asynchronous software enables team members to work together at different times.

What is asynchronous software?

An asynchronous operation is known to be the process that operates on its own of other processes.

Therefore, Asynchronous software enables team members to work together at different times.

See full question below

Asynchronous software enables team members to work together at _____.

a. a location in which a server computer is present

b. the same time

c. different times

d. an agreed-upon location

Learn more about Asynchronous software from

https://brainly.com/question/13172436

#SPJ12

Which of the following creates a security concern by using AutoRun to automatically launch malware?

Answers

Answer:

USB device

Explanation:

AutoRun automatically launches malicious software as soon as you insert a USB device

There are 4 servers in the checkout area. The interarrival time of customers is 2 minutes (convert to rate/hr). The processing time of a server is 5 minutes/customer (convert to rate/hr). What is the overall utilization of the total server capacity

Answers

Answer:

Explanation:

bwfwgxqsvga

4. Ernesto works in a small office with five other people. What are two possible connection
issues Ernesto might encounter if the company uses a LAN?

Answers

LAN is the networking device and channel that interconnects the local area systems. If the company uses LAN, then issues with speed and connectivity will occur.

What is LAN?

The local area network connects the computers of small and local regions confined to small geographical areas and is seen in the schools, offices, and residences.

If LAN is used between more people then the internet speed and connectivity will be affected as there will be redundancy in the data packet transfer speed.

Therefore, the speed and connectivity will be affected.

Learn more about LAN here:

https://brainly.com/question/14308916

#SPJ1

An error in a program that involves a violation of language rules will be detected at

Answers

An error in a program that involves a violation of language (syntax) rules will be detected at compile time.

What is a compiler?

A compiler refers to a software program that is designed and developed to translate the entire source code of program at once, so as to produce object code.

Thus, a compiler translates a software program that is written in a high-level language into low-level language (machine language).

In conclusion, we can deduce that an error in a software program that is associated with a violation of language (syntax) rules will be detected at compile time.

Read more on programs here: brainly.com/question/26324021

#SPJ12

Which feature is a good conferencing tool to use with others who are located elsewhere in your city, or even in another country?

Answers

A feature which is a good conferencing tool to use with other people who are located elsewhere or even in a different location is known as video communications.

What is communication?

Communication refers to a process which involves the transfer of information from one person (sender) to another (receiver), especially through the use of semiotics, symbols, signs and network channel.

In this context, video communications is a feature which is a good conferencing tool to use with other people who are located elsewhere or even in a different location because it provides an image of the person in real-time.

Read more on communication here: brainly.com/question/26152499

#SPJ12

explain stress management give a suitable example to explain how it is important.

Answers

Answer:

Hopefully This Will Help :)

Explanation:

Put simply, stress management is: “set of techniques and programs intended to help people deal more effectively with stress in their lives by analyzing the specific stressors and taking positive actions to minimize their effects”. Popular examples of stress management include meditation, yoga, and exercise.



Marle uses a browser to visit a blog. How is the blog uniquely identified?
The blog uniquely identified by the

Answers

Answer:

URL

Explanation:

you have been using snmp on your network for monitoring and management. you are concerned about the security of this configuration. what should you do?

Answers

The thing that should be done is to implement version 3 of SNMP.

How to depict the information?

In this situation, the person has been using snmp on your network for monitoring and management. you are concerned about the security of this configuration.

Therefore, since the person is concerned about the security of this configuration, the thing that should be done is to implement version 3 of SNMP.

Learn more about configuration on:

brainly.com/question/26084288

#SPJ12

what causes the hidden node problem in a wireless local area network (wlan)?

Answers

The causes is if a client (or node) can receive signals from an access point (AP), but there is hindrance that prevents the client from getting signals from the other clients that are linked to the network.

What is hidden node problem in wireless network?

The hidden node problem is known to often takes place if  two transmitting terminals side by side transmit data to a receiving terminal between them, and there is hinderance between the two sets of transmitted radio waves.

Note that The causes is if a client (or node) can receive signals from an access point (AP), but there is hindrance that prevents the client from getting signals from the other clients that are linked to the network.

Learn more about local area network from

https://brainly.com/question/8118353

#SPJ11

30 POINTS FOR THE CORRECT ANSWER
Ruben is volunteering as a reading helper with a kindergarten class in his hometown. He really likes all 24 of the students and wants to do something nice for them. He has decided to design a book for them as a gift. Ruben plans on drawing all his own illustrations and laying out the pages, but he wants each of their names to be interwoven into the story.

What are the different options Ruben could consider for printing his books? Choose a printing method and detail why it is the best choice for Ruben. Next, choose another printing method and detail why it is not the best choice for Ruben.

Answers

In the case above, Ruben  should consider the printing option below:

Offset litho printing.Digital Printing.Screen printing.

What is the best printing type for books?

The use of digital printing is known to be the best in the case with Ruben. It is said to be much more economical in terms of shorter print runs.

Note that Digital printing do have fast turnaround time and as such it is better for books.

Therefore, In the case above, Ruben  should consider the printing option below:

Offset litho printing.Digital Printing.Screen printing.

Learn more about printing from

https://brainly.com/question/145385

#SPJ1

A router is performing basic routing functions. What will be the third step in the transmission of a packet?

Answers

The third step in the transmission of a packet is known as a network layer.

What is a router?

It should be noted that a router is a device that connects two or more packets networks.

Here, the third step in the transmission of a packet is known as a network layer. It adds another header in what is received.

Learn more about router on:

brainly.com/question/24812743

#SPJ12

what is the minimum number of load balancers needed to configure active/active load balancing?

Answers

Answer:

2

Explanation:

The primary and secondary machines should both be actively handling connections to your virtual servers in order for active/active to entail having two load balancing appliances running concurrently. The second interpretation of active/active has to do with ones back end servers, which are all running and accepting connections behind the virtual service. This makes use of all of your available computing power for accepting connections.

The minimum number of load balancers needed to configure active/active load balancing is 2.

What are load balancers?

Load balancing is known to be a key networking solution that is often employed to share traffic across multiple servers in the case of server farm.

Note that The minimum number of load balancers needed to configure active/active load balancing is 2.

See full question below

What is the minimum number of load balancers needed to configure active/active load balancing?

- 2

- 4

- 1

- 3

Learn more about load balancers from

https://brainly.com/question/13088926

#SPJ11

Which feature on a cisco router permits the forwarding of traffic for which there is no specific route?

Answers

The feature on a cisco router permits the forwarding of traffic for which there is no specific route is a default static route.

What is a router?

A router simply means a network that used to provide access to the internet of a private computer network.

Here, the feature on a cisco router permits the forwarding of traffic for which there is no specific route is a default static route.

Learn more about router on:

brainly.com/question/24812743

#SPJ12

Select all the correct answers.
which two statements about network segmentation are true?

can be done at no additional cost

managing segments can be tedious

can add security at each level

ideal for smaller networks

faults are easier to detect

Answers

Answer:

can add security at each levelfaults are easier to detect

The two statements that are true about the market segmentation is that it  can add security at each level and faults are easier to detect. Options C and E are correct.

What is the network segmentation?

Network segmentation is a network security technique that divides a network into smaller, distinct subnetworks that enable network teams to compartmentalize the subnetworks and deliver unique security controls and services to each subnetwork.

Typically, segmentation is done through a combination of firewalls, Virtual Local Area Networks (VLANs), and Software Defined Networking (SDN). VLAN segmentation: Networks are typically segmented with VLANs or subnets. VLANs create smaller network segments that connect hosts virtually.

To implement network segmentation, network teams should start by creating security policies for each type of data and asset they need to protect. The policies should identify each resource, the users and systems that access it, and the type of access that should be provided.

Therefore, option C and E are correct.

Learn more about market segmentation, refer to:

https://brainly.com/question/27993208

#SPJ2

Access passwords (or pins) and device encryption for devices are:

Answers

Access passwords (pins) and encryption for devices are recommended for all devices, especially for portable ones because they can easily be lost or stolen.

What is a password?

A password can be defined as a string of characters, phrase or word that is designed and developed to distinguish an unauthorized user from an authorized user.

Additionally, an encryption is used to conceal and secure a digital data, so as to make it hidden to unauthorized user.

In conclusion, access passwords (pins) and encryption for devices are recommended for all devices, especially for portable ones because they can easily be lost or stolen.

Read more on password here: https://brainly.com/question/19116554

#SPJ12

Before a computer can use a router, what configuration information must it be provided?

Answers

Before a computer can use a router, the default gateway must be configured.

What are routers?

Routers are device that connects two or more packet-switched networks or subnetworks.

A router receives and sends data on computer networks.

The router route the IP addresses of this computer over the internet for effective communication.

The default gateway allows for devices in one network to communicate with devices in another network.

Therefore, the default gateway must be configured before a computer can use a router.

learn more on routers here: https://brainly.com/question/25823209

#SPJ12

Other Questions
The cost of renewable energies has increased over the last decade A. true B. False What is the inverse of this function?8v, for x > 0 This video clip is a good example of ________________. Group of answer choices pianist playing melody and comping with a Swing Feel pianist playing melody and comping with a Modern Groove/Straight 8th Feel pianist playing melody and comping with a Bossa Nova Feel pianist playing melody and comping with a Samba Feel Suppose that the lifetimes of tires of a certain brand are normally distributed with a mean of 74000 miles and a standard deviation of miles. these tires come with a -mile warranty. the manufacturer of the tires can adjust during the production process, but the adjustment of is quite costly. the manufacturer wants to set once and for all so that only of the tires will fail before warranty expires. find the standard deviation to be set. carry your intermediate computations to at least four decimal places. round your answer to at least one decimal place. What is the approximate length of the radius, r? use 3.14 for . round to the nearest inch. 12 inches 24 inches 38 inches 46 inches Covert 3/7into a percent What explains the difference between retail and commercial banking?- Commercial banks loan money to small businesses, while retail banks loan money to large corporations.- Retail banks loan money to small businesses, while commercial banks loan money to large corporations.- Commercial banks help small businesses make capital purchases, while retail banks help big businesses invest.- Retail banks help big businesses make capital purchases, while commercial banks help consumers invest. What is a key way of learning about different cultures? What is the role of RNA polymerase?Which molecule brings amino acids to the ribosomes to be assembled into proteins? Sarah and her friends split a bag of candy evenly. They each ate 13 pieces of candy and there are 2 pieces leftover. How many pieces of candy were originally in the bag? Given the first degree function f(x) = 2x +3, what is the value of f(10)?a) 23b) 25c) 30d) 50 What can you conclude about communication, culture shock, and adjustment that would be useful for teachers? Determine the most precise name for ABCD (parallelogram, rhombus, rectangle, or square). Explain how you determined your answer. You must support your answer using length or slope. A(3, 5), B(7, 6), C(6, 2), D(2, 1) The force of gravity between two objects is greatest when the objects have? Brainliest to first decent answerWhat is the chemical formula for the molecule represented by the model?CHO C4H9O2C4H8OC3H8O2 What is the main conflict in this excerpt? snowball wants to build the windmill, but napoleon thinks that other matters are more important. Napoleon believes that the farm does not need to be defended if others rebel, but snowball disagrees. Snowball thinks that other farms are a threat, but napoleon is more worried about mr. Jones. Napoleon wants the animals to protect themselves, but snowball wants to encourage revolts elsewhere. Select the correct text in the passage.Which statement best shows Brutus's message that Caesar's death was best for Rome?Julius Caesarby William Shakespeare(excerpt from Act 3, Scene II)In the prior acts of Julius Caesar, noble Romans have conspired against their leader, Caesar, and assassinated him. In this scene, Brutus, awell-respected man and longtime friend of Caesar, addresses the people of Rome to explain his participation in the act.BRUTUS: If there be any in this assembly, any dear friend ofCaesar's, to him I say that Brutus' love to Caesarwas no less than his. If then that friend demandwhy Brutus rose against Caesar, this is my answer:-Not that I loved Caesar less, but that I lovedRome more.Had you rather Caesar were living anddie all slaves, than that Caesar were dead, to liveall free men? As Caesar loved me, I weep for him:as he was fortunate, I rejoice at it; as he wasvaliant. I honor him: but, as he was ambitious, Islew him. There is tears for his love, joy for hisdeathe kestele 54-90.27-90.22-90.87-90 Why were the people giving bribes and taking it called the enemy of the nations? what is the probability that a family with three children will have all girls?A) 1/2B) 1/8C) 25%D) .10