Describe two new and emerging classes of software

Answers

Answer 1

Answer:

VR and AI/robotics

Explanation:

Hope this helps!


Related Questions

This is 10 points. Which line of code will display the variable num rounded to the nearest tenth?

A. print(num, round)

B. print(round(num, 1))

C. print(num rounded)

D.print(round(num,.1))

Answers

Answer:print(num, round)

Explanation:print(num, round)

Answer:

B trust me i got it correct

Explanation:

Animation is primarily a visual art, so in many cases, you could turn off the
soundtrack and still know what is happening.

Answers

Answer:

yes as long as the motions and form of the person,place,or thing that is being moved in a clear and clean way and strictly sticks to the story or title of what you may be watching, its all about the story being told rather than the sound that it makes.

Explanation:

Create a formula that multiplies the salary in column C with the percentage (to be added) in column D and places the result in column E. Fill the whole column with that formula.

Answers

Answer:

Assuming data input starts in the second row of the worksheet of the excel spreadsheet application, in the second cell of column E, input the formula "= C1 * D1". Then copy the formula down the column by dragging the right-bottom corner downward.

Explanation:

Microsoft Excel is a spreadsheet application used for statistical analysis of data. It provides several built-in formulas, graphs, and storage links to calculate, represent, and retrieve or store data to remote and local storage.

To make a dynamic formula, the equal to sign is typed before any column variable, then a short cut key combination or dragging the right-bottom corner to the end of the used worksheet can be used to copy formulas.

Please help with coding assignment.

Java

Write a method where you have to generate random numbers between 1 to 9 until you get the number 5, and you do it j number of times. (j represents how many times you can generate.) If you do get to 5 under j number of times, you skip a line and end the method. Write the method stopAtFive.


public int stopAtFive (int j)

Answers

Answer:

import java.util.Random;

class Main {

   

   public int stopAtFive (int j) {

      Random rand = new Random();

      int number = 0;

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

          number = rand.nextInt(9)+1;

          System.out.println(number);

          if (number == 5) {

              System.out.println();

              break;

          }

      }

      return number;

   }

   

   public static void main(String args[]) {

       Main main = new Main();

       main.stopAtFive(20);

       main.stopAtFive(20);

   }

}

Explanation:

Your requirements do not say what has to be displayed or returned from the method, but you can use this as a starting point.

Which of these are correctly formatted Python dictionaries? Check all that apply. dict = {‘Name’: ‘Matthew’, ‘Age’: 14, ‘School’: ‘ABC School’}; dict = (‘Name’: ‘Mary’, ‘Age’: 13, ‘School’: ‘XYZ School’) dict = [“Programming Basics”, “Introduction to Python”] dict = {‘season’: ‘fall’, ‘weather’: ‘cool’}; dict = ’[‘laptop’, ‘computer’, ‘hard drive’]

Answers

Answer:

A. dict = {‘Name’: ‘Matthew’, ‘Age’: 14, ‘School’: ‘ABC School’}

Explanation:

Since python does not use type when declaring a variable, you must make sure you make your variables correctly or else it won't compile correctly. Lists use braces[]; Strings use quotes, "" or ''; Integers are just declared with a number(s); Dictionaries use brackets{} and inside are attributes of something. For instance, you can use dictionaries to describe ages, {'"Bryan": 6, "Alex": 13, etc.} Sort of like a json file. Dictionaries also tend to use uppercase letters when describing something. The only answer that has all the attributes correct is A. dict = {‘Name’: ‘Matthew’, ‘Age’: 14, ‘School’: ‘ABC School’}

hope i helped :D

The correctly  formatted Python dictionaries is dict = {‘Name’: ‘Matthew’, ‘Age’: 14, ‘School’: ‘ABC School’}. Thus, option A is correct.

What is Python?

Python is a widely used high-level programming language. Its design concept prioritizes code readability by employing heavy indentation.

Python is garbage-collected and dynamically typed. It is compatible with a variety of programming paradigms, including structured, object-oriented, and functional programming.

Because Python does not utilize type when defining variables, you must ensure that you create your variables appropriately or they will not compile successfully.

Lists make use of braces[]; Strings use quotation marks, "" or "; Integers are simply identified by a number(s); Brackets are used in dictionaries to represent qualities of something.

For example, you may use dictionaries to define ages, such as "Bryan": 6, "Alex": 13, and so on. Similar to a json file. When describing anything, dictionaries also utilize capital letters. A. dict is the only solution that has all the properties correct.

Hence, option first is correct.

Learn more about Python here:

https://brainly.com/question/18502436

#SPJ2

What are the advantages of block-based programming? What are the disadvantages?

Answers

Answer:

Block-based languages tend to have a lot of commands to choose from, making memorizing commands unneeded, and therefore easy for beginners to start coding. However, it may be slower to code in a block-based language than one where a user can quickly input commands using their keyboard. With block based programming you don't have to worry about syntax errors which is helpful.

Explanation:

Answer:

block based programming have more than one command to choose from, so there is no need to have a memorizing command, which makes it easier for beginner coders. however, using a block-based code can move slower. 

Explanation:

In Python, a.....
is a type of variable that holds a value which is not changed.
O permanent
unchangeable variable
O fixed variable
O constant

Answers

Answer:

Constants.

Explanation:

In some languages, it is possible to define special variables which can be assigned a value only once – once their values have been set, they cannot be changed. We call these kinds of variables constants.

Answer:

Constant

Explanation:

a constant  is a type of variable that holds a value which is not changed.

Write a void method named myMethod which prints "This is a void method" (without the quotes). Your method should be declared public and static.

Answers

public static void myMethod(){

System.out.println("This is a void method");

}

I hope this helps!

Void methods are meant to return control back to the caller instead of returning a value. Hence, the void method named myMethod is declared public and static and returns This is a void method. The program goes thus :

public static void myMethod(){

System.out.println("This is a void method");

}

#a void method named myMethod which is declared as being public and static.

#Thr method returns the statement This is a void method.

Learn more : https://brainly.com/question/19113167

which componet is the smallest unit in a spreadsheet

Answers

The cell is the smallest unit in a spreadsheet

What is the index of 7 in this list?
that list being [5, 6, 10, 7, 3, 2.5]

7
4
2
3

Any brainliest beggars will be flagged

Answers

Answer:

-1 (out of range).

Explanation:

Index '7' cannot exist in 0-indexed array of size '6'.

If return type is 'Integer' out-of-range exception should be thrown.

[ 0, 1,  2, 3, 4,  5] :: indices. (length = 6)

[ 5, 6, 10, 7, 3, 2.5 ] :: elements.

Answer: 7

Explanation: got it right on edgen

Which are reasons to use collaborative learning? Check all that apply.
to solve problems
to discuss topics
to save study time
to complete tasks
to study material
Plz help

Answers

Answer:

i say the answers are

A. to solve problems

B. to discuss topics)

D. to complete tasks

E. to study material

Explanation:

I say it's NOT (C. to save study time) because you are still taking times to study

Answer:

A, B, D, E

Explanation:

Determine which careers you can enter after completing a training program and which careers require a college degree.

Answers

Answer: statistician automotive engineer customer service specialist data modeler broadcast technician video systems technician

Explanation:

Anne creates a web page and loads a CSS style script along with the page. However, the entire page appears black and she cannot see any of the
text she has entered. What is the possible could be causing this issue?

Answers

Answer: B. "She might have set backround-color in body to black in the CSS file"

Explanation: I took the test and got 100%

Miguel has a problem with the output on his laptop. Which of the following could be the source of the problem?
O the memory chip
O the speaker
O the microphone
O the keyboard

Answers

Answer:

the speaker

Explanation:

all if the rest are input devices so it must be the speaker I guess

Python problem:
Write a program in which the program guesses the number that the user is thinking about. Example of

output per screen:

Think of a number from 1 to 4.

Answer S (yes) or N (no) to my questions.

Is the number thought to be greater than 2? S

Is the number thought to be greater than 3? N

The number thought about is 3

See you next time!

Answers

print("Think of a number from 1 to 4")

print("Answer S (yes) or N (no) to my questions.")

choice = input("Is the number thought to be greater than 2? ")

if choice == "S":

   choice = input("Is the number thought to be greater than 3? ")

   if choice == "S":

       print("The number thought about is 4")

   elif choice == "N":

       print("The number thought about is 3")

elif choice == "N":

   choice = input("Is the number thought to be greater than 1? ")

   if choice == "S":

       print("The number thought about is 2")

   elif choice == "N":

       print("The number thought about is 1")

print("See you next time!")

This works for me. Best of luck!

Who is Mr.Anonymous?

Answers

Answer:

me

Explanation:

me

Answer:

a random person

Explanation:

PLZ ANSWER ALL MY QUESTION. Which line of code will display the variable num rounded to the nearest tenth?

A.print(num, round)

B.print(round(num, 1))

C.print(num rounded)

D.print(round(num,.1))

Answers

Answer:

A

Explanation:

CORRECT ANSWER GETS BRAINLIEST PLEASE HELP !
Complete the following sentence.
A(n) _________
is a person who acts as an agent between two different groups, often resolving conflicts.

Answers

Answer:

Mediator

Explanation:

A mediator is a person that tries to reserve peace within groups, and they often try to prevent conflict.

CORRECT ANSWER GETS BRAINLIEST!
Explain why it is important for an engineer to have knowledge of different materials .

Answers

Answer:

An engineer must have knowledge of different materials because an engineer will be working with a variety of materials and must know how to utilize or interact with them properly.

what does this map key show

Answers

Answer: where is the map key? I don't see it

Explanation:

Why do you think many Nepalese want to go abroad? Give some opinion.​

Answers

Answer:

Due to lack of job opportunities

Due to income inequality

For improvement of living standard

to highly get paid

This function chooses the screen to display based on the score.What is the correct way to call this function?

Answers

Answer:

checkWin();

Explanation:

its in the code

Answer:

checkWin ( ) ;

Explanation:

It is show inside the code

Type a message (like “sir i soon saw bob was no osiris”) into the text field in the asciitohex.com webpage. Which of the encodings (binary, ASCII decimal, hexadecimal, or BASE64) is the most compact? Why?

Answers

Answer:

BASE64

Explanation:

The encoding c2lyIGkgc29vbiBzYXcgYm9iIHdhcyBubyBvc2lyaXM= is the shortest.

Answer:

BASE64

Explanation:

BASE64 is the most compact encoding because it is the shortest encoding of "sir i soon saw bob was no osiris".

Yvonne found an article online that relates to her research topic, but the article does not cite the author. What
should Yvonne do?
O She should decide to use the article without citing it.
O She should decide to avoid using the article.
O She should write the information in her own words.
O She should determine the website's credibility.
will mark brainliest

Answers

Answer:

d

Explanation:

bye

Yvonne found an article online that relates to her research topic, but the article does not cite the author. so she should determine the website's credibility.

How do you outline internet site credibility?

Simply put, it is the distinction between a handsome web website online and one designed with a purpose. For many customers, their advent for your enterprise happens on your internet site. Your major goal, after they arrive, is to instill a feeling of trust.

Links to/from different websites display the web website online is well-respected. The credentials of the author(s) are valued. Articles include citations and references. News memories are few, however, include details.

Read more about the research topic:

https://brainly.com/question/25257437

#SPJ2

an article about technology based world. urgent

Answers

17/11/2020

By Your name

Technology is the most useful form of science for the general population. In simple words, technology is when we take the concepts of science and transform them into gadgets and devices that are useful to us as human beings. When we look around us, almost everything is a result of or a form of technology.

For example, the device you are using right now is a form of technology made for communication, or the refrigerator in your kitchen is a use of science that helps to keep your food fresh and cool. With these examples, we see how dependent we are on technology and how important it is for us in our daily lives.

It isn’t easy to imagine our lives without using any form of technology. For the smallest of communications, we tend to turn to our mobile phones. Even most of the food we eat is packaged in factories using various technologies. Thus, imagining a life without technology is impossible. It is not only a fact of life but also a necessity for all of us.

In fact, the smartphone, that is, a mobile phone which can connect to the internet, is becoming one of the fastest-growing and most accessible forms of technology around the world. On a smartphone, you can click photographs, browse the internet, listen to music, and use social media. With the advent of smartphone technology, the practical purpose of not only communicating with your friends is met, but also so many others, as mentioned.

Thus, in today’s world, the importance of technology becomes more and more as the years pass. Scientists have done so much to advance humans using technology, and we still have a long way to go.

what is meant by GPS?​

Answers

Answer:

The Global Positioning System.

Answer:

Global Positioning System

Explanation:

Which range function will generate a list of all even numbers between 12 and 84 inclusive? range (12, 86, 2) range (11, 84, 3) range (12, 86, 4) range (10, 84, 2)

Answers

Answer:

The answer is "range (12, 86, 2)".

Explanation:

The range() function generates a numerical sequence across items. In the above-selected choice, the range function is correct because it takes three parameter values "start, stop, and step". In this choice, it takes three number values "12, 86, and 2", in which 12 is the starting point, and 86 is the ending point, and 2 is used for print even numbers between them, that's why the other choice is wrong.

Which of the two do you think is the most secure mode of communicating: sending a letter using the postal service or sending an email using the internet? Justify your answer with reasons.​

Answers

Answer:

rather internet... postal services can steal ur identities, steal ur location, and see who u r sending to

Explanation:

Hope this helps! Consider Marking brainliest!

Which of the following is an example of a Syntax Error?
The program runs, but prints a warning to the console.
The program runs at first, but eventually crashes.
The program does not run at all.
O The program runs, but doesn't do what you expect.

Answers

Answer:

The correct answer is: "The program does not run at all."

Explanation:

The rules to write a program in any language are called syntax. The error in syntax of a language is called syntax error. Syntax errors are usually detected during the compilation of the program. The program cannot be run untill all syntax errors are removed.

So,

The correct answer is: "The program does not run at all."

Can you tell from the masses of the reactants which one of the reactants will be the limiting reactant? Defend your answer (use an equation within your defense).

Answers

Answer:

No, usually you would do the math first before deciding which is the limiting reactant

Explanation:

2H₂(g) + O₂(g) -----> 2H₂O(g)

3mol= Hydro

2mols= O₂

The limiting reactant would be the smaller number after we divide the number of moles by the coefficient

H:1.5 3mol/2(c) =1.5

O2: 2 2mol/1(c)=2

Hydrogen is lower = limiting reactant

Other Questions
What is a group of specialized cells that work together to perform the same function? PLEASE HELP!! I dont understand stand how it works...if possible, please explain how you got your answer.Thanks!! What is the arc measure of this circle?mCD=____ ? In which pair do both decimals represent rational numbers?O A. 2.71828182845904523536... and 0.1222O B. 3.141592653589793238... and 0.684O C. 3.141592653589793238... and 0.1222...O D. 0.684 and 0.1222... HELP ASAP PLEASELarry has an account with amazon movies that costs him $75 per year to be a member of. He can rent movies for $3 each. He wants to keep under $300 per year. Solve the inequality that represents his situation for how many movies he can rent. Why do you think South Carolina was not included in the 1790Census? |Plz help I will mark u as Brainly Encargados de ventilar los procesos judiciales en las Reales Audiencias, nos referimos a: a) Intendentes. b) Visitadores. c) Oficiales reales. d) Inquisidores. e) Oidores. The ionization energy of chlorine is lower than the ionization energy for Whats the answer for number 7? RIDDLEA logician with some time to kill in a small town decided to get a haircut. The town had only two barbers, each with his own shop. The logician glanced into one shop and saw that it was extremely untidy. The barber needed a shave, his clothes were unkempt, his hair was badly cut. The other shop was extremely neat. The barber was freshly shaved and spotlessly dressed, his hair neatly trimmed. Why did the logician return to the first shop for his haircut?who ever gets it right get the brainiest Question 6 of 10- POOSGR6_Math_T3_FSQ_FY21 Question: 1-6Joe concluded that the expression 3x + 15 + 2x is equivalent to the expression 5(x + 3). Which of these best explains how Joe reached his conclusion?o dividing each term in the first expression by 3combining like terms in the first expression and dividing each term by 3combining like terms in the first expression and dividing each term by 5subtracting 20 and applying the distributive property to the first expression if you can please help me can someone actually help me plzz help a sister outttt! you don't have to answer all !1.Sandra has $60 in a savings account. The interest rate is 5%, compounded annually.To the nearest cent, how much interest will she earn in 2 years? 2. Ernesto has $70 in a savings account that earns 10% interest, compounded annually.To the nearest cent, how much will he have in 2 years? 3.Emmet deposited $90 in a savings account earning 10% interest, compounded annually.To the nearest cent, how much interest will he earn in 3 years? Sun Inc. factors $6,000,000 of its accounts receivables without recourse for a finance charge of 5%. The finance company retains an amount equal to 10% of the accounts receivable for possible adjustments. Sun estimates the fair value of the recourse liability at $230,000. What would be recorded as a gain (loss) on the transfer of receivables?Sun Inc. factors $6,000,000 of its accounts receiva. Loss of $230,000.b. Loss of $1,130,000.c. Gain of $530,000.d. Loss of $300,000. In the rock cycle, which rock type may be weathered to become sediment, and eventually sedimentary rock? I. Igneous Rock II. Sedimentary Rock III. Metamorphic RockI and II onlyI and III onlyII and III onlyI, II, and III Which part of your brain is responsible for speech? Janice is preparing a recipe that calls for 3/4 cups of oil per serving. If janice needs to prepare 2 2/3 servings, how many cups of oil will she need? Backgrounds can be used to provide information about where the picture was taken. True False The sum of three numbers is 27. The product of the first number times the third number is 56. The quotient of the second number divided by the first number is 1.5. If the first number is represented by x, the second number is represented by y, and the third number is represented by z, which of the systems of equations below can be used to determine the three numbers? PLSS PLSSS HELPPP I WILL GIVE BRAINLIESTTTT!!!!!!!PLSSS HELPPP I WILL GIVE BRAINLIESTTTT!!!!!!!PLSSS HELPPP I WILL GIVE BRAINLIESTTTT!!!!!!!