fill in the blanks the cut and copy commanda are used in combination with the................ command​

Answers

Answer 1

Answer:

paste command.

Explanation:

The cut and copy commands are used in combination with the paste command. The cut, copy, and paste commands are related commands in human-computer interactions. These commands are interprocess communication in nature, helping to transfer data from one place in the user interface to another place in the user interface.

The cut, copy, and paste commands eliminate monotonous task of creating data which is already present somewhere else in the computer.

Therefore, the correct answer is paste command.


Related Questions

Microsoft Excel is an example of a(n) application.

Answers

Answer:

Yes, it is an example of an app. It's downloadable (like apps normally are)

and it works through some of the same coding as an app.

-----------------------------------------------------------------------------------------------------------------Have a nice day person

<3

Microsoft created and released Excel, a spreadsheet program. It is a component of the Microsoft Office productivity software package.

What is the main use of Microsoft Excel?

Spreadsheets can be formatted, organized, and computed by Microsoft Excel users.

By structuring data using programs like Excel, data analysts and other users may make information easier to study when it is added or changed. In Excel, the rectangular containers are known as cells, and they are organized into rows and columns.

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

Therefore, Microsoft produced Microsoft Excel, a spreadsheet, for Windows, macOS, Android, and iOS.

Learn more about Microsoft Excel here:

https://brainly.com/question/24202382

#SPJ2

Currently, the program blinks both LEDs at the same time, and it's doing so at such a fast rate that you can't tell they're blinking--they appear to always be on.You must change this program so that: The time between Timer 1 interrupts, and therefore changes in the state of the LEDs, is approximately 0.75 sec. The LEDs cycle between 8 states, returning to state 1 after leaving state 8:1. LED2 on2. Both LEDs off3. LED1 on4. Both LEDs off5. Both LEDs on6. Both LEDs off7. LED1 on8. Both LEDs off

Answers

Answer:

Change the time rate/frame to reflect those changesI dont really understand your question, do you want code to be written for this or what?

Cottonisagoodreflectorofsound​

Answers

Answer:

mhmm

Explanation:

answer Stop it makes me horn y

fill in the blanks the cut and copy commanda are used in combination with the................ command​

Answers

Answer:

paste command.

Explanation:

The Cut and copy commands are used in the combination with the paste command. The cut, copy, and paste commands are used in computers offering an IPC technique to transfer data across the computer user interface.

The cut, copy, and paste commands are related commands and helps human to eliminate monotonous work of recreating data which is available at another place in computer's user interface.

Therefore, the correct answer is paste command.

The owner of a candle shop has asked for your help. The shop sells three types of candles as shown below:


Type Price Burn Time (hours)
1 $2.50 5
2 $3.75 7
3 $5.99 12

The owner wants you to write a program to perform certain calculations when customers buy different numbers of the candles.

Required:
a. Develop an algorithm to satisfy the following requirements:

Prompt the user to enter the number of candles of each type the customer wants to buy. Since you can’t buy a fraction of a candle, the input for each type of candle must be an integer. (You may assume that only integer values between 0 and 10 will be entered when this program is tested.)
Calculate the total price of all the candles bought using the information in the table above. For example, two Type 1 candles and one Type 2 candle would have a total price of $8.75.
Calculate the total burn time of all the candles if they were burned consecutively (i.e., one after the other). For example, one Type 1 and one Type 3 candles would burn for 17 hours.
Calculate the cost-per-minute for that purchase.
Output some kind of meaningful display that includes the number of candles of each type bought, the total price, the total burn time, and the cost-per-minute. You can be as creative as you want with this!
Write the pseudocode for the algorithm and store it in a file (file format can be text, pdf or doc) with the name CandleShopSteps.

b. Write the code (20 points)

Once you've written your algorithm it is time to turn it into a Java program. that can be executed (run). Here are some things to keep in mind:

the class should be name CastleShop.
the program will need to import the Scanner class from the Java util package.
the class should have a main method that will include the logic for the algorithm you developed in Part A. You may choose to add additional methods that are called in the main method.

Answers

Answer:

import java.util.Scanner;

public class Main {

public static void main(String[] args) {

  double cost = 0;

  double priceF, priceS, priceT;

  int nOne = 0, nTwo = 0, nThree = 0;

  int fBurn, sBurn, tBurn;

  int burnTime = 0;

  isEnd = "n";

   while (isEnd == "n"){

      Scanner in = new Scanner(System.in);

      int option = in.nextInt();

      if (option == 1){

            priceF = 2.50;

            fBurn = 5;

            System.out.print("Enter number of items: ");

            nOne += in.nextInt();

            burnTime += fBurn * nOne;

            cost += priceF * nOne;

        } else if (option== 2){

            priceS = 3.75;

            sBurn = 7;

            System.out.print("Enter number of items: ");

            nTwo += in.nextInt();

            burnTime += sBurn * nTwo;

            cost += priceS * nTwo;

        } else if(option == 3){

            priceT = 5.99;

            tBurn = 12;

            System.out.print("Enter number of items: ");

            nThree += in.nextInt();

            burnTime += tBurn * nThree ;

            cost += priceT * nThree;

        } else{

            System.out.println("option must be between 1 and 3");

        }

      System.out.print("Do you want to end the order? y/n: ");

      isEnd = in.nextLine();

  }

  System.out.println("Number of Type 1 candles bought : "+nOne);

  System.out.println("Number of Type 2 candles bought : "+nTwo);

  System.out.println("Number of Type 3 candles bought : "+nThree);

  System.out.println("Total cost is : "+cost);

  System.out.println("Total burn time is : "+burnTime);

  double cpm = (burnTime * 60) / cost;

  System.out.println("Cost per minute : "+cpm);

}

}

Explanation:

The Java program prompts the user to continuously choose from three options 1, 2 and 3. The prices, the burn time and the cost per minute burn of the total candles ordered are printed out.

What are possible consequences for cyberbullying?

Answers

Answer:

Possible consequences for cyber bullying include depression, isolation and illness

Explanation:

The reason for this is when a person is hurt there body tends to go through things to make them feel a certain way about things.

Answer:

Possible consequences of cyberbullying are detention, suspension, or expulsion from school; legal charges or, fines.

Explanation:

71 81 77 15 63 96 36 51 77 18 17

Show the contents of the array above each time a Merge Sort changes it while sorting the array into ascending order. Please explain your work and your answer.

Answers

Answer:

Following are the solution to this question:

Explanation:

This algorithm uses the divide and rule approach works, which splits the list into two sublists depending on if they are smaller or larger than the pivotal factor. It has O(n*log n) complexity.

It splits down the list in more than one version frequently till every sublist becomes based on a single element and fuses it to offer an ordered array. The merge type works according. It has O(n*log n) complexity.

Please find the attachment file of the sorting.

What hardware actually produces hard-copy documents on paper or other print media?

Answers

Answer:

Impact because dot matrix (impact) printers strike the image onto the paper, they are good printers to use when carbon-copy documents are being printed.

Explanation:

Match the definitions of different business communication to the type of document

Answers

Answer:

Convey more factual data that helps facilitate decision making  - REPORTS

Reports are made with factual data to show the condition of the subject so convey more factual data that helps in decision making.

Are one page long  - MEMORANDUMS

Memorandums are used to convey new information and are usually brief which means they take one or two pages.

Are written in a block style, with the body text aligned along the left margin  - BUSINESS LETTERS

Business letters are to be as formal as possible and this includes writing them block style and aligning the text to the left margin.

Allow attachments of files, such as images  - EMAILS

As emails are softcopy and computer based, they allow for the attachment of other files such as images, documents, audio, etc.

Answer:

emails -> allow attachments of files, such as images

reports -> convey more factual data that helps facilitate decision making

memorandums  -> are one page long

business letters  -> are written in a block style, with the body text aligned along the left margin

Explanation:

Hopes this helps.

You are hired by a game design company and one of their most popular games is The Journey. The game has a ton of quests, and for a player to win, the player must finish all the quests. There are a total of N quests in the game. Here is how the game works: the player can arbitrarily pick one of the N quests to start from. Once the player completes a quest, they unlock some other quests. The player can then choose one of the unlocked quests and complete it, and so on.
For instance, let's say that this game had only 4 quests: A, B, C, and D. Let's say that after you complete
• quest A, you unlock quests [B, D). .
• quest B, you unlock quests [C, D).
• quest C, you unlock nothing [ ].
• quest D, you unlock quest [C].
Is this game winnable?
Yes, because of the following scenario:
The player picks quest A to start with. At the end of the quest A, the unlocked list contains [B, D). Say that player chooses to do quest B, then the unlocked list will contain [C, D). Say that player chooses to complete quest C, then the unlocked list will contain quest [D]. Finally, player finishes quest D.
Note that if the player had started with quest C instead of quest A, they would have lost this game, because they wouldn't have unlocked any quest and would be stuck. But the game is still winnable, because there is at least one starting quest which makes the player win. The Journey has N quests, enumerated as {nj, N2, . ng}. We construct a directed graph G for the game, where each node in G represents a quest. If completing quest n; will unlock quest n; then there is a directed edge from n; to n; in the graph. Suppose the total number of edges in the graph is M. (1) We call a quest as a lucky quest if starting from this quest will allow the player to win the game. In the example above, quest A is a lucky quest. Show that (a) All lucky quests are in the same strongly connected component of G, and that (b) Every quest in that component is a lucky quest. [We are expecting a short but rigorous proof for both claims] (2) Suppose there is at least one lucky quest. Give an algorithm that runs in time O(N+M) and finds a lucky quest. You may use any algorithm we have seen in class as subroutine. [We are expecting pseudocode or a description of your algorithm, and a short justification of the runtime]

Answers

Answer:

Explanation:

Let's describe the connected part for the very first time.

Component with good connections:-

A semi in any graph 'G' is defined by a way to align element if this can be crossed from the beginning of any link in that pixel or if this can be stated that there is a path across each organized node pair within this subgram.

Consecrated pair means (ni, nj) and (nj, ni) that 2 different pairs would be regarded.

In point a:

We're going to be using contradictions for this segment. They start with the assumption that two lucky journeys are not even in the same strongly interconnected component.

For instance, qi and qj are providing special quests that were not in the very strongly linked element and which implies that, if we start to cross from qi or qi, then qj cannot be approached if we begin to move through qj and as we established if qi or qj is fortunate contests, we may reach any other hunts. Which implies qj from qi or conversely should be reachable. Or we might claim that qi is part of the strongly linked portion of qj or vice versa with this situation.

Consequently, we would not be capable of forming part of a different and strongly linked element for two successful scientists; they must have the same strongly related to the element.

In point b:

Its definition of its strong, line segment indicates that all other searches within such a strongly coordinate system can be made possible from any quest. Because if all quests are accessible from any quest then a lucky search is named, and all other quests can be accessed from any quest in a very coordinated system. So, all contests are fortunate contests in a strongly connected element.

Algorithm:

Build 'n' size range named 'visited' wherein 'n' is the number of graphic nodes that keep records of nodes already frequented.  Running DFS out of every unknown vertex or mark all edges as seen.  The lucky search will be the last unexplored peak.

Psuedo-Code:

Requires this functionality to also be called Solution, it requires 2 reasons as an input, V is a set of objects in graph 'G' and 'G' is a chart itself.

Solution(V, G):

visited[V] = {false}//assign value

for v: 0 to 'V'-1:  //using for loop

if not visited[v]:  //use if block

DFS(v, visited, V, G)  //use DFS method

ans = v //holding value

return ans //return value

what are the applications of computer in the field of study​

Answers

Answer: it is what it is

Explanation:

To do assignments

Compute is used by teachers to make reports and presentations

You are a network technician for a small network. Your ITAdmin workstation just stopped communicating with all other computers in the network. You need to diagnose and fix the problem. The following IP addresses are used in this lab:

Location Computer Name IP Address
Networking Closet CorpServer 172.25.10.10
Office 1 Office 1 172.25.10.60
Office 2 Office 2 172.25.10.61
Support Office Support 172.25.10.62
IT Administration ITAdmin 172.25.10.63
Executive Office Exec 172.25.10.64

Answers

Answer:

Ping the other workstations from the IT Admin workstation to confirm that connection has been lost, check the status of the network interface card in the workstation with command ifconfig in the terminal, then reset the connection using ifdown and ifup commands. If the problem is not resolved, check the cable connection.

Explanation:

Ping is an ICMP echo message sent by a network host to another to check for connectivity. If they are connected, the other workstation responds with an ICMP response message.

The ifconfig in Linux systems displays the network adapters and their individual IP configurations. If there is no connection even after the network is reset, then the cable connectors could be the problem.

Consumers who pay more than the minimum payment on credit cards...
are crazy, why pay more than you need to?
O pay less interest in the long run.
O see their credit scores decrease.
are able to buy more things.

Answers

Pay less interest in the long run

Unwanted email sent to large groups of people who did not request the communication is called _____

Desired
Funmail
Returned
Spam

Answers

Spam mail is the answer

Use a spreadsheet to solve this business problem. The owners of an electronics store want to find which of their products makes the most profit during the past month.


A. 60 televisions at $700 with a profit of 22%

B. 40 DVD players at $350 with a profit of 38%

C. 200 computer monitors at $280 with a profit of 29%

D. 100 MP3 players at $200 with a profit of 40%

Answers

The answer to that is A because 22% of 700 is 154, the largest profit out of all of them

Redis can be configured to meet different requirements by editing the configuration settings in __________.

Answers

Answer:

redis.conf

Explanation:

Redis is an open-source licensed application, that acts as a database configurator. In other words, Redis is one of the ideal tools for database operations.

Hence, the redis.conf is the configuration file used to specify how the application would run to meet different requirements.




Which is the answer

Answers

Answer:

table

Explanation:

it is meant to do it

QUESTION 1

Which part of an Ethernet Frame uses a pad to increase the frame field to at least 64 bytes?

Answers

Answer:

Data field.

Explanation:

In Computer Networking, data encapsulation can be defined as the process of adding a header to a data unit received by a lower layer protocol from a higher layer protocol during data transmission. This ultimately implies that, the header (segment) of a higher layer protocol such as an application layer, is the data of a lower layer such as a transportation layer in the Transmission Control Protocol and Internet Protocol (TCP/IP).

Basically, an Ethernet Frame is one of the IEEE 802.3 data encapsulation standards.

An Ethernet Frame can be defined as the building blocks or bits contained in a single packet of data that is being transmitted over an Ethernet network or connection. When data are transmitted, a frame check sequence (FCS) containing a 4-bytes is used to detect or check for any error in a frame and to ensure no frame data was corrupted in the course of the transmission.

In the transmission control protocol (TCP), all frames that are being transmitted must have a minimum of 64-bytes in length and as such when small packets are encapsulated, some additional bits referred to as pad are typically used to increase the frame size to at least 64-bytes, which is the minimum size.

Hence, a data field is the part of an Ethernet Frame that uses a pad to increase the frame field to at least 64 bytes.

The library can store up to 100 books. Each book has information of title, author, year, and a borrowed status (true or false). The library allows adding new books to it, checking out a book, and returning a book. We assume different books have different titles in the library.

Answers

Answer:

class Books(object):

   books_count = 0

   books = {}

   #classmethod

   def book_count(cls):

       cls.books_count +=1

   #classmethod

   def add(cls, title, author, year, status):

       if cls.books_count < 100:

           cls.book_count()

           cls.books[title] = [author, year, status]

       else:

           print("Book register has reached it's limit.")

   #classmethod

   def check(cls, book_name):

       return cls.books.get(book_name)

please replace the '#' with the 'at' sign.

Explanation:

The python class defines several class methods namely; add, check and book_count. The add method adds books to the book dictionary in the class as a class attribute, the check method check for the presents of a book title in the book dictionary while the book_count method adds one to the books_count class variable which checks the dictionary size.

PLEASE HELP ME I WILL GIVE BRAINIEST AND 40 POINTSPython Project Worksheet
________________________________________
Output: Your goal

You will write a program that asks a user to fill in a story. Store each response in a variable, then print the story based on the responses. ________________________________________
Part 1: Plan and Write the Pseudocode

Use the following guidelines to write your pseudocode for a fill-in story program.
1. Decide on a list of items the program will ask the user to input.
2. Your program should include at least four interactive prompts.
3. Input from the user should be assigned to variables and used in the story.
4. Use concatenation to join strings together in the story.
5. Print the story for the user to read.

Write your pseudocode here:










________________________________________

Part 2: Code the Program
Use the following guidelines to code your program.
1. Use the Python IDLE to write your program.
2. Using comments, type a heading that includes your name, today’s date, and a short description.
3. Set up your def main(): statement. (Don’t forget the parentheses and colon.)
4. Conclude the program with the main() statement.
5. Include at least two print statements and two variables.
6. Include at least four input prompts.
7. Use concatenation to join strings.
8. Follow the Python style conventions regarding indentation in your program.
9. Run your program to ensure it is working properly. Fix any errors you may observe.

Example of expected output: The output below is an example of a “Favorite Animal” message. Your specific results will vary depending on the choices you make about your message.

Output
The kangaroo is the cutest of all. It has 5 toes and a beautiful heart. It loves to eat chips and salsa, although it will eat pretty much anything. It lives in New York, and you must be super sweet to it, or you may end up as its meal!

When you've completed writing your program code, save your work by selecting 'Save' in the Python IDLE.
When you submit your assignment, you will attach this Python file separately.
________________________________________
Part 3: Post Mortem Review (PMR)
Using complete sentences, respond to all the questions in the PMR chart.
Review Question Response
What was the purpose of your program?



How could your program be useful in the real world?



What is a problem you ran into, and how did you fix it?



Describe one thing you would do differently the next time you write a program.

btw don't talk unless you are answering the question

Answers

Answer:

i can only give you pseudocode my fren

Explanation:

# information about me

def main():

MyName =  “malaki”

print(myName)

myInfo = “I was born in wichita, Kansas U.S. I live in japan. I love hotdogs.”

print(myInfo)

main()

sorry if this did not help :( i tried

In this exercise we want to write a pseudocode, so this way we will find how the code is in the attached image.

What is pseudocode?

Pseudocode is a generic way of writing an algorithm, using a simple language (native to whoever writes it, so that it can be understood by anyone) without the need to know the syntax of any programming language.

Pseudocode is a description of the steps in an algorithm using simple or everyday language. In essence, a pseudocode uses straightforward (concise) words and symbols to summarize the steps taken during a software development process.

Consequently, the following are some characteristics of a pseudocode as the Pseudocode needs to be clear, Pseudocode ought to be ending. Executable pseudocode is required.

Therefore, In this exercise we want to write a pseudocode, so this way we will find how the code is in the attached image.

Learn more about language on:

https://brainly.com/question/20921887

#SPJ2

Cell address A4 in a formula means it is a _________Mixed cell reference​

Answers

Answer:

Relative cell reference.

Explanation:

Microsoft Excel is a software application or program designed and developed by Microsoft Inc., for analyzing and visualizing spreadsheet documents.

A spreadsheet can be defined as a file or document which comprises of cells in a tabulated format (rows and columns) typically used for formatting, arranging, analyzing, storing, calculating and sorting data on computer systems.

A relative cell reference can be defined as a cell whose reference is mainly relative to the location of the cell.

In Microsoft Excel, the cell reference is considered to be a relative reference by default.

Hence, the cell address A4 in a formula means it is a relative cell reference and when the formula is copied, the reference in the formula will change.

For example, if you refer to cell A4 from cell D4, it means you're pointing to the cell that is three (3) columns to the left of the same row i.e D minus A (D - 4).

Which question should the user ask when determining whether a closing tag is needed

Answers

Answer:

What is element definition in the HTML specification?

Explanation:

The question a user should ask when determining whether a closing tag is needed is "What is element definition in the HTML specification?"

This is because the specification of an element determines how the elements can be used in HTML in accordance with the rules such as distinguishing which elements can have a closing tag.

Hence, in this case, the correct answer is "What is element definition in the HTML specification?"

Write a C++ program that declares an array alpha of 50 components of type double. Initialize the array so that the first 25 components are equal to the square of the index variable (the position that element will occupy), and the last 25 components are equal to three times the index variable. Output the array so that 10 elements per line are printed. For the number at index 5, the value would be 25, which is 5 squared. The 25th index would hold a value of 75, which is 3 * 25.

Answers

Answer:

#include <iostream>

#include <array>

static std::array<double, 51> nums;

int main()

{

std::array<double, 51> nums;

int for1;

int for2;

for (int i = 0; i < 26; i++)

{

             nums[i] = i;

             for1 = i * i;

             std::cout << for1 << ", ";

             if(i%10==0)

                 std::cout << "\n";

}

for (int i = 26; i < 51; i++)

{

             nums[i] = i;

             for2 = i * 3;

             std::cout << for2 << ", ";

             if (i % 10 == 0)

                 std::cout << "\n";

}

}

hope i helped :D

What kind of variable will be created by a line of code that reads num1 = input("Please enter your favorite
number.")?
O a string
O a float
O an integer
O a generic

Answers

Answer:

Since the input isn't specified, it would be string.

Explanation:

When input isn't specified, it's a string by default.

hope this helped :D

Please Help Me I Need A Better Grade.____________________________ focuses on creating engaging interfaces with well thought out behaviors.


Question 9 options:


A)Information architecture



B)Interface elements



C)Visual design



D)Informational components



E)Interaction design

Answers

Answer:

The answer you are looking for is "E.) Interaction design" This design theory focuses on how someone might interact with the system, or fix problems early- it also expresses inventing new ways of doing things.

the last layer in a layered design​

Answers

Answer:

"System Layer" is the right choice.

Explanation:

The above system layer would be the foundation of that same layered system configuration. Hardly any robotic artificial intelligence animation could very well continue indefinitely adequately because without that layer. Several of the essential elements of Machine Learning would be emblazoned throughout this stage of the network. Due to the whole layer, strategic planning requirements could continue indefinitely.

The owner of a candle shop has asked for your help. The shop sells three types of candles as shown below:


Type Price Burn Time (hours)
1 $2.50 5
2 $3.75 7
3 $5.99 12

The owner wants you to write a program to perform certain calculations when customers buy different numbers of the candles.

Required:
a. Develop an algorithm to satisfy the following requirements:

Prompt the user to enter the number of candles of each type the customer wants to buy. Since you can’t buy a fraction of a candle, the input for each type of candle must be an integer. (You may assume that only integer values between 0 and 10 will be entered when this program is tested.)
Calculate the total price of all the candles bought using the information in the table above. For example, two Type 1 candles and one Type 2 candle would have a total price of $8.75.
Calculate the total burn time of all the candles if they were burned consecutively (i.e., one after the other). For example, one Type 1 and one Type 3 candles would burn for 17 hours.
Calculate the cost-per-minute for that purchase.
Output some kind of meaningful display that includes the number of candles of each type bought, the total price, the total burn time, and the cost-per-minute. You can be as creative as you want with this!
Write the pseudocode for the algorithm and store it in a file (file format can be text, pdf or doc) with the name CandleShopSteps.

b. Write the code (20 points)

Once you've written your algorithm it is time to turn it into a Java program. that can be executed (run). Here are some things to keep in mind:

the class should be name CastleShop.
the program will need to import the Scanner class from the Java util package.
the class should have a main method that will include the logic for the algorithm you developed in Part A. You may choose to add additional methods that are called in the main method.

Answers

Answer:

import java.util.Scanner;

public class Main {

 public static void main(String[] args) {

   double total = 0;

   double fPrice, sPrice, tPrice;

   int firstN = 0, secdN = 0, thirdN = 0, fTime, sTime, tTime;

   int totalT = 0;

   isEnd = "n";

   for (;;){

       if (isEnd == "y"){

           break;

       }

       Scanner in = new Scanner(System.in);

       int option = in.nextInt();

       switch (option){

         case 1:

             fPrice = 2.50;

             fTime = 5;

             System.out.print("Enter number of items: ");

             firstN += in.nextInt();

             totalT += fTime * firstN;

             total += fPrice * firstN;

             break,

         case 2:

             sPrice = 3.75;

             sTime = 7;

             System.out.print("Enter number of items: ");

             secdN += in.nextInt();

             totalT += sTime * secdN;

             total += sPrice * secdN;

             break,

         case 3:

             tPrice = 5.99;

             tTime = 12;

             System.out.print("Enter number of items: ");

             thirdN += in.nextInt();

             totalT += tTime * thirdN ;

             total += tPrice * thirdN;

             break,

        default:

             System.out.println("Looking forward to the Weekend");

       }

       System.out.print("Do you want to end the order? y/n: ");

       isEnd = in.nextLine();

   }

   System.out.println("Number of Type 1 candles bought : "+firstN);

   System.out.println("Number of Type 2 candles bought : "+secdN);

   System.out.println("Number of Type 3 candles bought : "+thirdN);

   System.out.println("Total cost is : "+total);

   System.out.println("Total burn time is : "+totalT);

   double costPerBurn = (totatT * 60) / total;

   System.out.println("Cost per minute : "+ costPerBurn);

 }

}

Explanation:

The Java program creates a continuous for-loop statement that gets the candle type, price and amount ordered from a switch and accumulates the total cost and burn time of the candles bought and the cost per minute burn of the candles consecutively.

Problem 1: Triple + Double = So Much Trouble

Write a program that reads two integers, checks if a digit repeats 3 times in a row in the first integer and that same digit repeats two times in a row in the second integer.


Sample input/output:

Enter two integers: 3555761 72559

There are 3 conservative digits 5 in 3555761 and 2 in 72559

Answers

Answer:

Explanation:

The program code is written as:

#include <iostream>

using namespace std;

 

int main() {

    int num1,num2,flag=0,flag1=0,flag_val=0,temp1,temp2,f1,f2,f3,m1,m2;

    cout<<"Enter First Number ";

    cin>>num1;

    cout<<"Enter Second Number ";

    cin>>num2;

    temp1=num1;

    temp2=num2;

    while(temp1>0)

    {

    f1=temp1%10;

temp1=temp1/10;

    f2=temp1%10;

    if(f1!=f2)

       continue;

    temp1=temp1/10;

    f3=temp1%10;

       if(f1==f2 && f2==f3)

       {

       flag=1;

       flag_val=f1;

       }

    }

    while(temp2>0)

    {

    m1=temp2%10;

    temp2=temp2/10;

    m2=temp2%10;

    if (m1!=m2)

       continue;

    temp2=temp2/10;

    if(m1==m2 && flag==1 && flag_val==m1)

    {

       flag1=1;

       break;

    }

   

    }

    if (flag1==1)

    {

    cout<<"Both Number Are Triple + Double";

    }

    else

    {

    cout<<"Both number Are not Triple +Double";

    }

 

return 0;

}

OUTPUT:

Enter First Number = 3555761

Enter Second Number = 72559

Both numbers are Triple + DoublePress any key to continue .....

Isaac is creating a document that combines art and poetry and, for stylistic reasons,
he wants the pages to have Roman numerals instead of the traditional Arabic 1, 2, 3,
etc. What should he choose from the Page Number mini-menu?
Format Page Numbers
Customize Page Number
Insert Number Template
This is not possible in Word.


NEED A ANSWER FAST 7 minutes left

Answers

Answer:

I think it is most probably in customize page number?

Explanation:

I'm not sure let me know if it works or not!!

How will Excel summarize the data to create PivotTables? summarize by row but not by column summarize by column but not by row summarize by individual cells summarize by row and by column

Answers

Answer:

D. summarize by row and by column

Answer:

D.

Explanation:

Other Questions
The perimeter of a square is 80 minus 64 y units. Which expression can be used to show the side length of one side of the square? Put the events listed below in order of which happened first in Act 5 of Macbeth1. Macbeth learns of the death of his wife 2. Macbeth is killed 3. Old Siward learns of his son's death 4. Malcolm's army arrives with branches 5. Lady Macbeth , sleepwalking , washes her hands 6. The doctor reports that Lady Macbeth is mentally ill 7. Macbeth kills young Siward 8. Macduff enter Macbeth's 9. Macbeth learns that Macduff was not of woman born 10. Malcolm makes the thanes earls Please solve!!! In a hurry! The process of copying an RNA strand is called A large star shining brightly in the sky is an effect. What could be a cause? what forces act on a stationary bike What is the exponent in the expression 4 superscript 5?45920 please help i have 15 minsList five reasons the Loyalists wanted to remain loyal to Britain. Write a two- or three-paragraph journal entry reflecting on U.S. foreign policy during the long 19th century (1776 1914). Your journal entry should explain why you think U.S. foreign policy changed or did not change over time and specifically address how expansionism, the Monroe Doctrine, nationalism, and increased global power influenced the role of the United States in the world during this period. Conclude your journal entry with a prediction about the role the United States will play in world affairs during the 20th century.Need some extra help figuring out what to write? If you can answer these clarifying questions, you are heading in the right direction.Clarifying questions:How did expansionism change the United States' role in the world?How did the Monroe Doctrine affect relations between the United States and Latin America?How did ideas about nationalism affect the way U.S. leaders saw the United States' role in world affairs?How might the U.S. role as an economic power affect its position in the world during the 20th century? Describe several of the cultural values that are part of your everyday way of living Prepare for an essay about whether punishing various forms of free speech is ultimately negative or positive. You must develop a claim and conduct research to find sources that support the claim. You must also create an outline that will guide the drafting of your essay. Immunodeficiencies may result in an increased risk of infections by normally harmless microorganisms such as C. albicans. These infections are referred to as:A. prophylacticB.abnormalC.transientD.opportunistic 16. For this table of data, how should the y-axis be labeled (with units)?mass (kg)3.24.66.16.27.49.10.410.9newtons (m/s)31.38145.1 11159.82160.80172.56989.241101.989106.892Oms'mass (kg)O newtonsO kgmassO newtons (m/s?) Please help!! Whats some presentation ideas? It can be anything as long as Im informing ig. Like I could literally talk abt The Office or the invention of chocolate. Compare and contrast functionalist theory and conflict theory in their approaches to understanding race-related issues in the United States. A bookstore costs $96 a day to keep open, and it spends $12 for each book that it sells. If each book sells for $18, what is the break-even pointfor this bookstore? Let x be the particular solution Explain how hayes could have been elected with fewer populated votes than Tilden. What is the length of the diagonal of a monitor that is 5 inches wide and 12 inches high 1/4 divided by 3/4 please help