what is scientific and​

Answers

Answer 1

Answer:

And what??????????????

Answer 2
And what? You didn’t finish

Related Questions

A _____ is a smaller image of a slide.

template
toolbar
thumbnail
pane

Answers

I believe it is pane since a thumbnail is like a main photo or advertising photo kind of thing and template has nothing to do with a image as well as toolbar so the answer would be pane hope that helps :)

Plz answer me will mark as brainliest ​

Answers

Answer:

True

Operating System

Booting

What is his resolution amount

Answers

I think it’s 92 I mean yh

B1:B4 is a search table or a lookup value

Answers

Answer:

lookup value

Explanation:

Write a program that reads in 10 numbers from the user and stores them in a 1D array of size 10. Then, write BubbleSort to sort that array – continuously pushing the largest elements to the right side

Answers

Answer:

The solution is provided in the explanation section.

Detailed explanation is provided using comments within the code

Explanation:

import java.util.*;

public class Main {

//The Bubble sort method

public static void bb_Sort(int[] arr) {  

   int n = 10; //Length of array  

   int temp = 0; // create a temporal variable  

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

         for(int j=1; j < (n-i); j++){  

           if(arr[j-1] > arr[j]){  

               // The bubble sort algorithm swaps elements  

               temp = arr[j-1];  

               arr[j-1] = arr[j];  

               arr[j] = temp;  

             }  

         }            

         }  

        }

 public static void main(String[] args) {

   //declaring the array of integers

   int [] array = new int[10];

   //Prompt user to add elements into the array

   Scanner in = new Scanner(System.in);

   //Use for loop to receive all 10 elements

   for(int i = 0; i<array.length; i++){

     System.out.println("Enter the next array Element");

     array[i] = in.nextInt();

   }

   //Print the array elements before bubble sort

   System.out.println("The Array before bubble sort");

   System.out.println(Arrays.toString(array));

   //Call bubble sort method

   bb_Sort(array);  

               

   System.out.println("Array After Bubble Sort");  

   System.out.println(Arrays.toString(array));

 }

}

What are two examples of items in Outlook?

a task and a calendar entry
an e-mail message and an e-mail address
an e-mail address and a button
a button and a tool bar

Answers

Answer:

a task and a calendar entry

Explanation:

ITS RIGHT

Answer:

its A) a task and a calendar entry

Explanation:

correct on e2020

What is the maximum number of VLANs that can be configured on a switch supporting the 802.1Q protocol? Why?

Answers

Answer:

4096 VLANs

Explanation:

A VLAN (virtual LAN) is a group of devices on one or more LAN connected to each other without physical connections. VLANs help reduce collisions.

An 802.1Q Ethernet frame header has VLAN ID of 12 bit VLAN field. Hence the maximum number of possible VLAN ID is 4096 (2¹²).  This means that a switch supporting the 802.1Q protocol can have a maximum of 4096 VLANs

A lot of VLANs ID are supported by a switch. The maximum number of VLANs that can be configured on a switch supporting the 802.1Q protocol is 4,094 VLANS.

All the VLAN needs an ID that is given by the VID field as stated in the IEEE 802.1Q specification. The VID field is known to be of  12 bits giving a total of 4,096 combinations.

But that of 0x000 and 0xFFF are set apart. This therefore makes or leaves it as 4,094 possible VLANS limits. Under IEEE 802.1Q, the maximum number of VLANs that is found on an Ethernet network is 4,094.

Learn more about VLANs from

https://brainly.com/question/25867685

5-5. Design an Ethernet network to connect a single client P C to a single server. Both the client and the server will connect to their workgroup switches via U T P. The two devices are 900 meters apart. They need to communicate at 800 M b p s. Your design will specify the locations of any switches and the transmission link between the switches.


5-6. Add to your design in the previous question. Add another client next to the first client. Both connect to the same switch. This second client will also communicate with the server and will also need 800 M b p s in transmission speed. Again, your design will specify the locations of switches and the transmission link between the switches.

Answers

Answer:

ok so u have take the 5 and put 6

Explanation:

5-5. Ethernet network design: UTP connections from client PC and server to workgroup switches, 900m fiber optic link between switches, 800 Mbps communication.

5-6. Additional client connects to the same switch, UTP connection, maintains existing fiber optic link, 800 Mbps communication with the server.

What is the explanation for this?

5-5. For connecting a single client PC to a single server, both located 900 meters apart and requiring communication at 800 Mbps, the following Ethernet network design can be implemented:

- Client PC and server connect to their respective workgroup switches via UTP.

- Use fiber optic cables for the 900-meter transmission link between the switches.

- Install switches at the client PC and server locations.

- Ensure that the switches support at least 1 Gbps Ethernet speeds to accommodate the required transmission speed.

5-6. In addition to the previous design, for adding another client next to the first client:

- Connect both clients to the same switch.

- Use UTP cables to connect the second client to the switch.

- Ensure the switch supports 1 Gbps Ethernet speeds.

- Maintain the existing fiber optic transmission link between the switches.

- The second client can also communicate with the server at the required 800 Mbps transmission speed.

Learn more about Network Design at:

https://brainly.com/question/7181203

#SPJ2

the language is Java! please help

Answers

public class Drive {

   int miles;

   int gas;

   String carType;

   public String getGas(){

       return Integer.toBinaryString(gas);

   }

   public Drive(String driveCarType){

       carType = driveCarType;

   }

   public static void main(String [] args){

       System.out.println("Hello World!");

   }

   

}

I'm pretty new to Java myself, but I think this is what you wanted. I hope this helps!

(1) Prompt the user to enter a string of their choosing. Output the string.
Ex: Enter a sentence or phrase: The only thing we have to fear is fear itself. You entered: The only thing we have to fear is fear itself.
(2) Complete the GetNumOfCharacters() function, which returns the number of characters in the user's string. Use a for loop in this function for practice. (2 pts)
(3) In main(), call the GetNumOfCharacters() function and then output the returned result. (1 pt) (4) Implement the OutputWithoutWhitespace() function. OutputWithoutWhitespace() outputs the string's characters except for whitespace (spaces, tabs). Note: A tab is '\t'. Call the OutputWithoutWhitespace() function in main(). (2 pts)
Ex: Enter a sentence or phrase: The only thing we have to fear is fear itself. You entered: The only thing we have to fear is fear itself. Number of characters: 46 String with no whitespace: The only thing we have to fear is fear itself.

Answers

Answer:

See solution below

See comments for explanations

Explanation:

import java.util.*;

class Main {

 public static void main(String[] args) {

   //PrompT the User to enter a String

   System.out.println("Enter a sentence or phrase: ");

   //Receiving the string entered with the Scanner Object

   Scanner input = new Scanner (System.in);

   String string_input = input.nextLine();

   //Print out string entered by user

   System.out.println("You entered: "+string_input);

   //Call the first method (GetNumOfCharacters)

   System.out.println("Number of characters: "+ GetNumOfCharacters(string_input));

   //Call the second method (OutputWithoutWhitespace)

   System.out.println("String with no whitespace: "+OutputWithoutWhitespace(string_input));

   }

 //Create the method GetNumOfCharacters

   public static int GetNumOfCharacters (String word) {

   //Variable to hold number of characters

   int noOfCharactersCount = 0;

   //Use a for loop to iterate the entire string

   for(int i = 0; i< word.length(); i++){

     //Increase th number of characters each time

     noOfCharactersCount++;

   }

   return noOfCharactersCount;

 }

 //Creating the OutputWithoutWhitespace() method

 //This method will remove all tabs and spaces from the original string

 public static String OutputWithoutWhitespace(String word){

   //Use the replaceAll all method of strings to replace all whitespaces

   String stringWithoutWhiteSpace = word.replaceAll(" ","");

   return stringWithoutWhiteSpace;

 }

}

On what date was jschlatt originally added to the dreamsmp server, and on which date was his second appearance on the server?

Answers

since this has already been answered, who is your favorite SMP character?

mines Wilbur/ Ghostbur

some people will disagree with me but jshlatt is one of my favorite characters on the dream smp . But my all time favorite characters is ALL of Wilbur's characters

Other Questions
Read, look at the image, and choose the correct option.Woman wearing green skirt El uniforme es azul. El cinturn es marrn. La blusa es roja. La falda es verde. What is the solution to the equation 7,- 5* ++5-16ff - 25?h = 113h = 5h = 76212 Tom Cruise Lines Inc. issued bonds five years ago at $1,000 per bond. These bonds had a 20-year life when issued and the annual interest payment was then 13 percent. This return was in line with the required returns by bondholders at that point as described below: Real rate of return 4 % Inflation premium 5 Risk premium 4 Total return 13 % Assume that five years later the inflation premium is only 3 percent and is appropriately reflected in the required return (or yield to maturity) of the bonds. The bonds have 15 years remaining until maturity. Use Appendix B and Appendix D. What describes G and why they face the watery inside and outside of the cell Try creating your own thematic collage. Choose one of the symbols in Roll of Thunder, Hear My Cry, and create a collage that reflects how the symbol relates to one of the novel's themes. The foreground of your collage should be the symbol, and the background should represent the theme that the symbol helps develop. PLEASE HELP I WILL SEE IF I CAN MAKE U BRAINLIST Analyzing a Linear Function Expressed in Different Ways Choose the true statements. A linear function is expressed by a graph of a line that crosses both axes at the origin. An equation is written in slope-intercept form to express the same function as shown in the graph. From just this information, what statements can be made? A) The slope of the equation must be positive. B)The y-intercept of the equation is zero. C) It is possible that the line on the graph is horizontal. D) The slope of the equation must be negative. Rewrite the expression by factoring out (w-7).3w2(w 7) - 5(w-7) Help me out please I need help how does litmus indicator work Magnets are usually made up of which materialA. plasticB. iron oreC. copperD. gold Question 11 ptsThe function f(x) = 4x + 10 models the amount of money Francis makes when babysittingfor x hours. How much money will he make for 2 hours of babysitting work?2.0-2O-3O 18 1. What is Ohm"s law?2. If you placed a negatively charged hairbrush near your hair, what charge would your hair be?3. You must change a lightbulb and the new lightbulb has a larger resistance. If the voltage of the battery does not change, what happens to the current going through the flashlight?HELLPPPP A young reptile is 0.6 foot long. An adult reptile is 19.5 times as long. How many feet longer is the adult reptile than the young reptile? How does the speed (miles per hour) represented by this relationship compare to that of the Peregrine Falcon? The original 13 colonies were controlled by which European power Which statement is the most effective response for a group discussion? A. Because of the accident, Frida Kahlo suffered from terrible pain for the rest of her life, so it had a huge influence on the way she lived. B. I think that Frida Kahlo would have been a phenomenal doctor if she had decided to return to medical school. C. Frida Kahlo had a number of broken bones and for a long time had to wear a cast around her torso. D. Frida Kahlo stayed in a hospital after the accident and was bedridden even after she returned home. HURRY DUE TODAY!!!!! Jayden is driving on a long road trip. He currently has 11 gallons of gas in his car. Each hour that he drives, his car uses up 0.75 gallons of gas. How much gas would be in the tank after driving for 4 hours? How much gas would be left after tt hours? why is southern hemisphere referred to as "Water hemisphere"? Who controlled the northwestern side of Africa