what is 30 x 30 x 30 x 30

What Is 30 X 30 X 30 X 30

Answers

Answer 1
810,000 i asked siri
Answer 2

Answer:

its is 810000

Explanation:

hope this helps


Related Questions

______ are special characters that allow you to
search for multiple words at the same time.
-Find expressions
-Defined expressions
-Regular expressions
-Search expressions

Answers

Answer:

Defined Expression

Explanation:

This will be your answer

CH4 has how many of each type of atom?

Answers

Its easy that moderators that see this answer can think that my answer isn't without explanation.

• Type of atom C (Carbon)

C = 1

• Type of atom H (Hydrogen)

H = 4

You dont understand? JUST SEE THE FORMULA C MEANS ONLY HAVE 1 CARBON ATOM AND H4 MEANS 4 ATOM OF HYDROGEN

oK. have a nice day hope you understands

What infection type can send information on how you use your computer to a third party without you realizing it

Answers

Answer:

Spyware collects your personal information and passes it on to interested third parties without your knowledge or consent. they also install trojan horses

Explanation:

ANSWER QUICK 50 POINTS
You have the following code in your program.

from array import *
Which line of code would create an array?


D = array([2.5, 3, 7.4])

D = array('f',[2.5, 3, 7.4])

D = array['f',[2.5, 3, 7.4]]

D = array('f',2.5, 3, 7.4)

Answers

Answer:

D = array('f',[2.5, 3, 7.4])

Explanation:

is the answer

A variable must be declared with an array type before the array itself can be created. Array types resemble other Java types, with the exception that square brackets are placed after them ( [] ). Thus, option D is correct.

What line of code would create an array?

Using the NumPy library, new data types known as arrays can be produced in Python. NumPy arrays are created for numerical studies and only contain one data type.To build an array, use the array() method after importing NumPy. The input for the array() function is a list.

An array, also known as a database system, is a group of things or data that is held in a contiguous memory area in coding and programming. Several instances of the same kind of data are grouped together in an array.

Therefore, D = array('f',2.5, 3, 7.4)  line of code would create an array.

Learn more about array here:

https://brainly.com/question/22296007

#SPJ2

Write a program that calculates the area & perimeter of a rectangle, where
the values for width and length are given by the users.

Answers

Answer:

In Python:

Length = float(input("Length: "))

Width = float(input("Width: "))

Area = Length * Width

Perimeter = 2*(Length + Width)

print(Area)

print(Perimeter)

Explanation:

This gets the length from the user

Length = float(input("Length: "))

This gets the width from the user

Width = float(input("Width: "))

This calculates the area

Area = Length * Width

This calculates the perimeter

Perimeter = 2*(Length + Width)

This prints the area

print(Area)

This prints the perimeter

print(Perimeter)

what technical was the microscope invented in?

Answers

Answer:

Two Dutch spectacle-makers and father-and-son team, Hans and Zacharias Janssen, create the first microscope in 1590.

Explanation:

A microscope is an instrument that makes an enlarged image of a small object, thus revealing details too small to be seen by the unaided eye. The most familiar kind of microscope is the optical microscope, which uses visible light focused through lenses. Eeuwenhoek observed animal and plant tissue, human sperm and blood cells, minerals, fossils, and many other things that had never been seen before on a microscopic scale. He presented his findings to the Royal Society in London, where Robert Hooke was also making remarkable discoveries with a microscope.

What is the influence of new technology on society?
Ο Α. .
New technology hardly has any impact on society.
OB.
New technology is only beneficial to society and cannot be detrimental.
OC.
New technology is detrimental, as it makes the existing technology obsolete.
OD. New technology normally utilizes a lot of resources and can adversely affect the economy.
O E.
New technology is beneficial but can also be usedly a detrimental way.

Answers

Answer:

E. New technology is beneficial but can also be used in a detrimental way.

Explanation:

New technology such as cryptocurrency (powered by blockchain technology) can be regarded as a welcome development that has benefited the society in so many good ways. However, cryptocurrency as a new technology also has disadvantages it presents to the society. One of such negative influence cryptocurrency has is that it can be used for illicit activities such as money laundering, funding terrorism and so on.

So, in summary, we can conclude that:

"New technology is beneficial but can also be used in a detrimental way."

A switch on a circuit board can be in two states what are they​

Answers

Answer:

on and off

Explanation:

Write a program that takes in a positive integer as input, and outputs a string of 1's and 0's representing the integer in binary. For an integer x, the algorithm is:
As long as x is greater than 0
Output x % 2 (remainder is either 0 or 1)
x = x // 2
Note: The above algorithm outputs the 0's and 1's in reverse order. You will need to write a second function to reverse the string.
Ex: If the input is:
6
the output is:
110
Your program must define and call the following two functions. The function integer_to_reverse_binary() should return a string of 1's and 0's representing the integer in binary (in reverse). The function reverse_string() should return a string representing the input string in reverse.
def integer_to_reverse_binary(integer_value)
def reverse_string(input_string)
Note: This is a lab from a previous chapter that now requires the use of a function.

Answers

Answer:

#include <iostream>//header file

#include <string>//header file

using namespace std;

string integer_to_reverse_binary(int integer_value)//defining a method integer_to_reverse_binary  

{

   string ret = "";//defining string variable

   while (integer_value > 0) //using while loop to check integer_value value is greater than 0

   {

       ret += '0' + (integer_value % 2);//adding zeros in remainder value

       integer_value /= 2;//holding quotient value

   }

   return ret;//return string value

}

string reverse_string(string input_string)//defining a method reverse_string that holds a parameter user_String  

{

   string result;//defining a string variable  

   for (int i = 0; i < input_string.length(); ++i)//use for loop to calculate value  

   {

       result += input_string[input_string.length()-i-1];//add value in result variable

   }

   return result;//result result variable value

}

int main()//defining main method  

{

   int num;//defining integer variable

   string str;//defining string variable

   cin >> num;//input num value

   str = integer_to_reverse_binary(num);//use str variable to call the integer_to_reverse_binary method

   cout << reverse_string(str) << endl;//printing the reverse_string method value

   return 0;

}

Output:

6

110

Explanation:

In this code two string method "integer_to_reverse_binary and reverse_string" is defined that holds one parameter "integer_value and input_string".

In the first method a string variable is defined, that use the while loop to check integer value is greater than 0 and add zeros in the value and return its value as a string.

In the second it reverse the string value and store into the result variable, and in the main method the "num and str" variable is defined, and in the num it takes integer value and pass into the above method and print its return value.    

How does the pay for many Science, Technology, Engineering, and Mathematics workers compare to the overall median for all careers? It is far lower than the overall median. It is far higher than the overall median. It is slightly higher than the overall median. It is about the same as the overall median.

Answers

Answer:

B

Explanation:

It just is

Answer:

B is correct

Explanation:

Why do we use return statements? Choose all that apply

A.
Javascript requires functions to have return values.

B.
To return multiple data types simultaneously

C.
To allow a function to give different values depending on input.

D.
So that we no longer have to use console.log();

E.
To save the result of a function in a variable in other functions

Answers

Answer:

A.

Javascript requires functions to have return values.

Classify the characteristics as abstract classes or interfaces.

A. Uses the implements keyboard
B. Cannot have subclasses
C. Does not allow static and final variables
D. Can have subclasses
E. Uses the extends keyboard
F. Allows static and final variables

Answers

E for eeeedeerreeeee
Other Questions
How many atoms are in 34 g of Cu? is ammonia a compound element or mixture Which of the following statements best compare Martin Luther King, Jr. and Nelson Mandela?Both Martin Luther King, Jr. and Nelson Mandel worked to end poverty and unemployment in the US.Both Martin Luther King, Jr. and Nelson Mandela worked to bring peace to their countries.Both Martin Luther King, Jr. and Nelson Mandel worked to improve civil rights in their respective countries.Both Martin Luther King, Jr. and Nelson Mandela worked to free their followers from slavery. What is the traditional home of the Clovis andFolsom people? what is the value of the expression below?1 2/8+2 3/4+3/8A.3 8/20B.3 8/12C.4D.4 3/8 Problem 3) A, B, and C are evenly matched tennis players. Initially A and B play a set and the winner then plays C. This continues, with the winner always playing the waiting player, until one of the players has won two sets in a row. That player is then declared the overall winner. Find the probability that A is the overall winner. which of the following is a type of virus that travels through shared files and programs and can bring down an entire system?A) trojan horseB) wormC) computer infectionD) spyware An 8-mer oligopeptide has the following amino acids: A D E E F M W Y (two Es are present) Here is your evidence: 1. Edman degradation produces A. 2. CNBr produces a 5-mer and a 3-mer that contains W.3. Chymotrypsin produces two dipeptides and a tetrapeptide. The tetrapeptide has a total net charge of -4 at pH 12.5. 4. Staphylococcal protease in phosphate buffer produces a tetrapeptide (4-mer), dipeptide, free D, and free W. 5. Staphylococcal protease in acetate buffer produces a pentapeptide (5-mer), dipeptide, and free W.Put in the sequence of the 8-mer (use caps here) i.e. ABCDEFGH. Two students from each fourth and fifth grade class were on the planning committee.If Jackson School has 17 fourth and fifth grade classes in all, how many students planned the camlval?students planned the carnival. What other theme is addressed in the passage? In a manufacturing plant, a work center is a specific production facility that consists of one or more people and or machines and is treated as one unit for the purposes of capacity requirements planning and job scheduling. If the jobs arriveat a particular work center at a faster rate than they depart, the work center impedes the overall production process and is referred to as a bottleneck. This sample was collected by an operations manager for use in investigating a potential bottleneck work center. There are 315 hours in the work week when items can come into the work center. The manager selects every 15th hour and counts how many items come into the work center during that hour. What type of sample is this? GIVING BRAINLIEST:: MATH! Calculate acceleration of a turtle going from 0.3 m/s to 0.7 m/s in 30 seconds. There should not bullies because there is no reason to bully.So, If you are a bully(IF),Gust do not do things you support and respect your victims and be people not animals.OK?! PLZZZZZZZZ HELPPP SOONNN REWARD BRAINLIESTT!!!!!!!!!!!!!!!!!! Them sum of two numbers is 17. One number is 3 less than 2/3 of the numbers. What is the lesser number? What is 4x - 8x + 11 + 24 A student combined baking soda and vinegar. Is this an example of a chemical reaction? Use evidence and scientific reasoning to support your claim. 6. How did Caesar acquire his riches? Find the slope of the line that passes through the points(3,5) and (5,13) and type the answer below. Start youranswer with m=