Which option did you choose? Boxing? A different sport? Why did you choose it

Answers

Answer 1
Answer:

Not boxing because it is violent, but i would choose Baschetball . It is frendly and safe, but you have to sweat too at it. It is the best


Related Questions

The italic button is located on the
Develop a program that asks the user to enter a capital for a U.S. state. Upon receiving the user input, the program reports whether the user input is correct. For this application, the 50 states and their capitals are stored in a two-dimensional array in order by state name. Display the current contents of the array then use a bubble sort to sort the content by capital. Next, prompt the user to enter answers for all the state capitals and then display the total correct count. The user's answer is not case-sensitive.
Suppose you are given a stack of n pancakes of different sizes. You want to sort the pancakes so that smaller pancakes are on top of larger pancakes. The only operation you can perform is a flip—insert a spatula under the top k pancakes, for some integer k between 1 and n, and flip them all over. Describe an algorithm to sort an arbitrary stack of n pancakes using O(n) flips. [Hint: This problem sounds a bit like the "Tower of Hanoi" probem that you may have encountered in other classes. But don’t be fooled! The solution looks very different.]
Most slide layouts include at least one ________ by default.Question 2 options:placeholderaction buttontransitionanimation
Which of the following people was a member of FFA?O Kenny ChesneyO Tim McGrawO Alan JacksonO Billy Currington

Write a Java application that uses the Math class to determine the answers for each of the following: a. The square root of 37 b. The sine and cosine of 300c. The value of the floor, ceiling, and round of 22.8 d. The larger and the smaller of the character ‘D’ and the integer 71 e. A random number between 0 and 20 (Hint: The random() method returns a value between 0 and 1; you want a number that is 20 times larger.) Save the application as MathTest.java.'

Answers

Java application:

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.

//create a class MathTest.java

public class MathTest {

public static void main(String[] args) {

//a. The square root of 37

System.out.println("The square root of 37= " + Math.sqrt(37));

//b. The sine and cosine of 300

System.out.println("The sine of 300=" + Math.sin(300));

System.out.println("The cosine of 300=" + Math.cos(300));

//c. The value of the floor, ceiling, and round of 22.8

System.out.println("The value of the floor 22.8=" + Math.floor(22.8));

System.out.println("The value of the ceiling 22.8=" + Math.ceil(22.8));

System.out.println("The value of the round 22.8=" + Math.round(22.8));

//d. The larger and the smaller of the character ‘D’ and the integer 71

int number = 'D';

System.out.println("The larger of the character ‘D’ and the integer 71=" + Math.max(number, 71));

System.out.println("The Smaller of the character ‘D’ and the integer 71=" + Math.min(number, 71));

//A random number between 0 and 20

System.out.println("A random number between 0 and 20= "+(int)(Math.random()* 20 + 1));

}

}

Output:

The square root of 37= 6.082762530298219

The sine of 300=-0.9997558399011495

The cosine of 300=-0.022096619278683942

The value of the floor 22.8=22.0

The value of the ceiling 22.8=23.0

The value of the round 22.8=23

The larger of the character ‘D’ and the integer 71=71

The Smaller of the character ‘D’ and the integer 71=68

A random number between 0 and 20= 10

Learn more about the topic Java application:

brainly.com/question/15568820

This problem will be discussed in Lab6. In Lab6, the TAs will also discuss about the solution of Function Problem 1 that required you to write several functions. Additionally, the last week's lab problems on loop will be discussed too, if you need more help on them. See the deadline. You should try your best to complete it within the lab time. First n prime numbers: Write a program that takes a positive integer n as input and prints all the prime numbers from 1 to n.

Answers

Answer:

C++.

Explanation:

#include <iostream>

using namespace std;

////////////////////////////////////////////////////////////////

void printPrime(int n) {

   if (n > 0) {

       cout<<2<<endl;

       

       for (int i=3; i<=n; i++) {

          bool isPrime = true;

           

           for (int j=2; j<i; j++) {

               if (i % j == 0) {

                   isPrime = false;

                   break;

               }

           }

           

           if (isPrime == true)

               cout<<i<<endl;

       }

   }

   else {

       cout<<"Invalid input";

   }

}

int main() {

   int n;

   cout<<"Enter positive integer: ";

   cin>>n;

   printPrime(n);

   return 0;

}

What subnet mask or CIDR notation would be required to maximize the host counts while still meeting the following requirements: 192.168.228.0 255.255.255.128 Required Networks: 2 Required Hosts: 20

Answers

Answer:

192.168.228.0 255.255.255.224

Explanation:

192.168.228.0 255.255.255.128

subnet mask: defines the host and the network part of a ip

CIDR notation : is the shortened form for subnet mask that uses the number of host bits for defining the host and the network part of a ip

For example: 192.168.228.0 255.255.255.128 has CIDR equivalent of 192.168.228.0\25

To have atleast 20 hosts

20 ≤ (2^x) -2

x ≈5

with 5 host bits, we have 2^5-2 = 30 hosts per subnet

and 2^3 = 8 subnets

To get the subnet mask, we have 3 network bits

1110000 to base 10 = 2^7 + 2^6 +2^5= 224

192.168.228.0 255.255.255.224

Is spread spectrum transmission done for security reasons in commercial WLANs?

Answers

Answer: No

Explanation: Spread spectrum transmission is the wireless transmission technique for the wide channel that helps in decrement of the potential interference.The transmission of signal is based on the varying the frequency knowingly to achieve larger bandwidth.

The use of spread spectrum transmission in the WLAN(wireless local area network)is used for the regulatory purpose The regulation is the controlling of the area  through policies.Thus,security is not the service that is provided to WLAN by spread spectrum transmission.

A web page that allows interaction from the user​

Answers

Answer:

Its A Dynamic Web Page

Explanation:

Outline 3 computer system problem that could harm people and propose the way avoid the problem​

Answers

Answer:

outline 3 computer system problem that could harm people and propose the way avoid the problemare:_

  1. Computer Won't Start. A computer that suddenly shuts off or has difficulty starting up could have a failing power supply.
  2. Abnormally Functioning Operating System or Software.
  3. Slow Internet.