pseudocode is so named because it resembles the actual code of computer languages such as c and java. group of answer choices true false

Answers

Answer 1

It is True that pseudocode is so named because it resembles the actual code of computer languages such as c and java

Pseudocode is a textual representation of an algorithm or program used to describe a computer program's steps and logic, without actually writing code in a specific programming language. The term "pseudo" means "fake" or "imitation," and the term "code" refers to the programming instructions that a computer can understand and execute.

The idea behind pseudocode is to provide a high-level description of the logic of the program using natural language, mathematical notation, and programming concepts. The purpose of using pseudocode is to help the programmer understand the logic of the program and to serve as a starting point for writing actual code in a programming language.

Pseudocode is designed to look like real code, with a similar structure, syntax, and conventions. This makes it easier for programmers to read and understand and also provides a way to communicate with others about the program.

In conclusion, pseudocode is named so because it resembles the actual code of computer languages, but it is not actual code that a computer can execute.

Learn more about pseudocode here:https://brainly.com/question/24953880

#SPJ4


Related Questions

Which of these lines of code will increment a variable?

A.
print(variable)

B.
count(variable)

C.
inc(variable)

D.
variable = variable + 1

Answers

Answer:

D

Explanation:

Answer:

D.

Explanation:

I got it right on the test.

32.
To give an existing document a different name
A. retype and give it another name,
B. use the save command
C. use the same as command
D. use windows explorer to copy.

Answers

Answer:

B.

Explanation:

If you are trying to save an existing document you would use the save command and you will be prompted if you want to rename it to what ever you wish

Hope this helps :)

Choosing a theme in slides gives your presentation
a cartoon background
a theme song
the same background and text styles for a consistent look
a variety of styles in many slides

Answers

The same background and text styles for a consistent look is the theme in slides gives your presentation.

Thus, Techniques and Personal Presentation are the two main divisions of the formal presenting of information.

The planning, presentation, and practice of verbal and non-verbal communication are these two interrelated components.

This article outlines some of the major concepts related to presentations and explains what a presentation is.

Thus, The same background and text styles for a consistent look is the theme in slides gives your presentation.

Learn more about Presentation, refer to the link:

https://brainly.com/question/1493563

#SPJ1

Which option best describes the purpose of the Design step?

A. To implement user feedback into the game

B. To add characters and other elements to the game

C. To plan the game's structure and artwork

D. To write the framework of the game's code

Answers

The option that  best describes the purpose of the Design step is option C. To plan the game's structure and artwork

Why does design mean?

It is the act of making a plan or drawing for something that will later be built, particularly one that specifies what the end product will do and look like, is the definition of design. The plan or sketch produced as a result of this activity is referred to as a design.

Note that It brings cutting-edge solutions to life based on what actual consumers feel, think, and do. Empathize, Define, Ideate, Prototype, and Test are the five main phases of this human-centered design approach. The fact that these steps are only a guide should not be overlooked. 3

Hence, the Steps in the Engineering Design Process are: Establish criteria and constraints. Consider alternative solutions. Choose an approach. Develop a design proposal. Create a model or prototype. Define the problem. Research ideas and explore possibilities for your engineering design project.

Learn more about Design step  from

https://brainly.com/question/2604531

#SPJ1

Consider the following class and print the output:

abstract class Test1 {

static int x;

Test1() {

System.out.printf("Making objects");

}

public abstract void restful(int x);

}

public class Test2 extends Test1 {

public void restful(int x) {

System.out.printf("class Test2");

}

}

public class Test3 extends Test1 {

Test3()

{

super();

}

public void restful(int x) {

System.out.printf("class Test3");

}

}

public class Driver {

public static void main(String [] args)

{

Test2 a1 = new Test1();

Test3 a2 = new Test();

a1.restful(15);

a2.restful(20);

Test a3 [] = new Test[5];

for(int i=0;i
if (i%2)

a3[i] = new Test2();

else

a3[i] = new Test3();

for(int i=0;i
a3[i].restful[10];

}

}

Answers

There are a few errors in the provided code. First, in the main method of the Driver class, the code tries to create an object of the abstract class Test1 using the Test2 constructor. This is not allowed since Test1 is abstract and cannot be instantiated.


Secondly, in the for loop that creates an array of Test objects, the method call to restful() is incorrect. It should be a method call with parentheses instead of square brackets.
Here's the corrected code with the expected output:
abstract class Test1 {
   static int x;
   Test1() {
       System.out.println("Making objects");
   }
   public abstract void restful(int x);
}

public class Test2 extends Test1 {
   public void restful(int x) {
       System.out.println("class Test2");
   }
}

public class Test3 extends Test1 {
   Test3() {
       super();
   }
   public void restful(int x) {
       System.out.println("class Test3");
   }
}

public class Driver {
   public static void main(String[] args) {
       Test2 a1 = new Test2();
       Test3 a2 = new Test3();
       a1.restful(15);
       a2.restful(20);
       Test1 a3[] = new Test1[5];
       for (int i = 0; i < 5; i++) {
           if (i % 2 == 0)
               a3[i] = new Test2();
           else
               a3[i] = new Test3();
           a3[i].restful(10);
       }
   }
}

Expected output:
Making objects
Making objects
class Test2
class Test3
Making objects
class Test2
Making objects
class Test3
Making objects
class Test2
Making objects
class Test3
Making objects

Learn more about loop about

https://brainly.com/question/30706582

#SPJ11

ANYONE THERE!?!?








TO HELP ME.

ANYONE THERE!?!? TO HELP ME.
ANYONE THERE!?!? TO HELP ME.
ANYONE THERE!?!? TO HELP ME.
ANYONE THERE!?!? TO HELP ME.

Answers

Answer:

Penguin

Explanation:

the sprite is Penguin and it is going to say what you put into the answer spot

USE PYTHON TURTLE GRAPHICS

USE PYTHON TURTLE GRAPHICS
USE PYTHON TURTLE GRAPHICS

Answers

Code:

In .txt file

Explanation:

I made the code a bit more flexible than instructed, for example, you don't need two different functions for the two chessboards. And you can easily edit the chessboard's size, numbers and coordinates.

Please ask me if there is anything you don't understand, or if the code isn't working correctly.

USE PYTHON TURTLE GRAPHICS
USE PYTHON TURTLE GRAPHICS

Write a program that gets a list of integers from input, and outputs non-negative integers in ascending order (lowest to highest). Ex: If the input is: 10 -7 4 39 -6 12 2 the output is: 2 4 10 12 39

Answers

Answer:

Following are the code to this question:

#include <iostream>//defining header file

using namespace std;

int main()//defining main method

{

   int a[]={10,-7,4,39,-6,12,2};//defining single deminition array and assign value

   int i,x,j,t; //defining integer variable

   cout<<"Before sorting value: ";  

   for(i=0;i<7;i++) //using loop to print value

   {

       cout<<a[i]<<" ";//print value

   }

   cout<<endl <<"After sorting value: ";

   for(i=0;i<7;i++)//defining loop to sort value

{  

 for(j=i+1;j<7;j++)//count array value

 {

  if(a[i]>a[j]) //defining condition to inter change value

  {

      //performing swapping

   t=a[i];  //integer variable t assign array value

   a[i]=a[j];//swapp value

   a[j]=t;//assign value in array

  }

 }

}

for(i=0;i<7;i++) //defining loop to print value

   {

       if(a[i]>=0) //defining condition to check positive value  

       {

       cout<<a[i]<<" ";//print value

       }

   }

   return 0;

}

Output:

Before sorting value: 10 -7 4 39 -6 12 2  

After sorting value: 2 4 10 12 39  

Explanation:

Following are the description to the above code:

In the above program code, Inside the main method, an array a[] is declared that assign some value, and another integer variable "i, j, x, and t" is declared, in which variable "i and j" are used in the loop, and "x, t" is used to sort value.In the next step, three main for loop is declared, in which the first loop is used to print array value.In the second loop, inside another loop is used that sorts array values.In the last loop, a condition is defined, that check the positive value in the array and print its values.

Answer:

integers=[]

while True:

      number=int(input())

      if number<0:

       break

      integers.append(number)  

print("",min(integers))

print("",max(integers))

Explanation:

____ is a technology that exists inside another device

Answers

Answer:

Embedded technology is a technology that exists inside another device.

Answer:

Embedded

Explanation:

An embedded system is a combination of computer hardware and software designed for a specific function.

The company generates a lot of revenue and is rapidly growing. They're expecting to hire hundreds of new employees in the next year or so, and you may not be able to scale your operations at the pace you're working.

Answers

Answer:

The most appropriate way to deal with the situation presented above is to acquire more space at the current office site at additional rent beforehand.

Explanation:

The Scaling of a revenue-generating business is a crucial task in which a lot of pre-planning and thinking is required.

In order to scale the business in the next year, the planning of it is to be carried out at the moment and proper necessary arrangements are ensured. These steps could be one from:

Looking for bigger spaces for renting for a full shift of the operationsLooking for a site office for an additional officeAcquiring more space in the current office site.

This process would result in acquiring a bigger place beforehand but in order to mitigate the risk, try to keep the place in view by providing them a bare minimum advance for the additional units.

Site specific situation wherein you have to write “Shortage Notations?

Answers

Answer:

Shortage Notations and the situation where you have to write down the Shortage Notations is explained below in complete detail with the situation.

Explanation:

Shortage Notations: If a portion of the shipment is missing, record the number of items shipped on the delivery slip and circle it. Then record down the number of articles missing and remark them as "short." The acquiring person is accountable for demanding the carrier to investigate the damaged goods and packaging.

It should be noted that a shortage notation occurs when the products delivered on a ship are incomplete when the ship gets to its destination.

It should be noted that shortage notation simply means when a portion of a shipment is missing, then an individual should record rte number of the items that are shipped on the delivery slip and then circle it.

Then, in such a situation, the owner of the good can then file a shortage claim later. This happens when the packaging isn't intact.

Learn more about shipping on:

https://brainly.com/question/758860

what other term is used to describe private clouds that are it infrastructures that can be accessed only by by an exclusive group of related entities that share the same purpose and requirements, such as all of the business units within a single organization?

Answers

Computing services delivered to a small group of customers only via a private internal network or the Internet as opposed to the broader public are referred to as private cloud services.

What is private cloud infrastructure?A private cloud is a type of cloud computing where a single user organization has exclusive access to the infrastructure.Computing services delivered to a small group of customers only via a private internal network or the Internet as opposed to the broader public are referred to as private cloud services.A private cloud is an on-demand cloud deployment architecture where the cloud computing infrastructure and services are privately hosted within a business's own data center or intranet using exclusive resources.Hosted.The servers are not shared with other businesses in a hosted private cloud environment.The server is used by a single company, but the service provider configures the network, updates the software, and maintains the hardware.

To learn more about private cloud refer

https://brainly.com/question/14756834

#SPJ4

Edhesive lesson practice 8.3, question 5

Edhesive lesson practice 8.3, question 5

Answers

Answer:

3

Explanation:

Following are the correct python code to find the length of the given parameter value.

Python code to find length:

print(len("stuff"))#printing length

Output:

please find the attached file.

Program Explanation:

In the given python code a print method is used inside this a "len" method is used that accepts a string value in the parameter.Python has a built-in function called len(). It determines an object's length. A character length of a text string is returned by LEN.

Find out more about the length method here:

brainly.com/question/13527881

Edhesive lesson practice 8.3, question 5

ITEMS
Evan spent 25% of his money on rent and g on food, together his
expenses totaled to $75.00. Calculate the total amount of money Evan had​

Answers

Answer:

Total money he had = $136 (Approx.)

Explanation:

Given:

Spend on rent = 25%

Spend on food = 30%

Total of expenses = $75

Find:

Total money he had

Computation:

Total money he had = [Total of expenses][100/ (Spend on rent + Spend on food)]

Total money he had = [75][100/ (25 + 30)]

Total money he had = [75][100/ (55)]

Total money he had = 136.36

Total money he had = $136 (Approx.)

A programmer for a weather website needs to display the proportion of days with freezing temperatures in a given month.


Their algorithm will operate on a list of temperatures for each day in the month. It must keep track of how many temperatures are below or equal to 32. Once it's done processing the list, it must display the ratio of freezing days over total days.
Which of these correctly expresses that algorithm in pseudocode?
A.
numFreezing ← 0

numDays ← 0

FOR EACH temp IN temps {

IF (temp ≤ 32) {

numFreezing ← numFreezing + 1

}

numDays ← numDays + 1

DISPLAY(numFreezing/numDays)

}

B.
numFreezing ← 0

numDays ← 0

FOR EACH temp IN temps {

IF (temp ≤ 32) {

numFreezing ← numFreezing + 1

}

numDays ← numDays + 1

}

DISPLAY(numFreezing/numDays)

C.
numFreezing ← 0

numDays ← 0

FOR EACH temp IN temps {

IF (temp < 32) {

numFreezing ← numFreezing + 1

}

numDays ← numDays + 1

}

DISPLAY(numFreezing/numDays)

D.
numFreezing ← 0

numDays ← 0

FOR EACH temp IN temps {

IF (temp ≤ 32) {

numFreezing ← numFreezing + 1

numDays ← numDays + 1

}

}

DISPLAY(numFreezing/numDays)

Answers

Answer:

B.

Explanation:

The correct Pseudocode for this scenario would be B. This code makes two variables for the number of total days (numDays) and number of freezing days (numFreezing). Then it loops through the entire data set and checks if each temp is less than or equal to 32 degrees. If it is, it adds it to numFreezing, if it is not then it skips this step, but still adds 1 to the total number of days after each loop. Once the entire loop is done it prints out the ratio, unlike answer A which prints out the ratio for every iteration of the loop.

numFreezing ← 0

numDays ← 0

FOR EACH temp IN temps {

IF (temp ≤ 32) {

numFreezing ← numFreezing + 1

}

numDays ← numDays + 1

}

DISPLAY(numFreezing/numDays)

how to create an e mail account

Answers

Answer:

Go into setting; go to accounts; look for create account or add account; it will then come up with a tab asking what you want to create the for ( choose Email) it will ask who you want to create it for (yourself or Bussiness), you choose whichever you want and then fill in your information.

Hope this helps....

Explanation:

rita has been given a task of writing the multiples of 7 from 70 to 140 . What statements should she write to display these on the QB64 screen ?

Answers

Answer:

....

Explanation:

Question # 3 Multiple Choice A data unit created at the transport layer by UDP is a _____. Responses datagram datagram packet packet frame frame segment

Answers

Answer:

A data unit created at the transport layer by UDP is a datagram.

Explanation:

The User Datagram Protocol (UDP) is a minimal, connectionless network protocol that belongs to the transport layer of the Internet protocol family. UDP enables applications to send datagrams to IP-based computer networks.

27. Which attribute is used to set the
border color of a table ?​

Answers

Is there a picture ?

Which loop prints the numbers 1, 3, 5, 7, …, 99?\


c = 1

while (c <= 99):
c = c + 2
print(c)

c = 1

while (c < 99):
c = c + 1
print(c)

c = 1

while (c <= 99):
print(c)
c = c + 2

c = 1

while (c < 99):
print(c)
c = c + 1

Answers

The loop that prints the numbers 1, 3, 5, 7, …, 99 is:

The Loop

c = 1

while (c <= 99):

   print(c)

   c = c + 2

This loop initializes the variable c to 1, then enters a while loop that continues as long as c is less than or equal to 99.

During each iteration of the loop, the value of c is printed using the print function, and then c is incremented by 2 using the c = c + 2 statement.

This means that the loop prints out every other odd number between 1 and 99, inclusive.

Read more about loops here:

https://brainly.com/question/19344465

#SPJ1

Open a new workbook in Excel, and then do the following:

Select Cell A1
Change the number format to time.
Input the current time in cell A1 (example 9:41)
Select the small green plus in the bottom right corner of cell A1 again and drag your cursor across row 1 to column G.

What happened? (Note, if you may need to double-click the cell if it is populated with # symbol) Can you figure out how to display the time in military time? (Hint: click More Numbers Formats in the Number Format dropdown menu.) Explain your results in the box below.

Answers

Use the shortcut of double-clicking to swiftly browse a spreadsheet. In the direction you clicked, Excel will choose a cell in that row or column. Just before the first blank cell, it halts at this cell.

What does "column" mean?

one of the two or more vertical sections of a printed page that are split by a rule or blank space.

A column in a table, spreadsheet, or chart is a row of vertically organized cells.

The column headings (column letters) in the Microsoft Excel spreadsheet below are A, B, C, D, E, F, G, and H.

As can be seen in the image where the last column H is marked in red, the selected cell (D8) is in the D column.

a strong upright structure that is primarily designed to support a larger structure above it, such a roof or horizontal beam, but is occasionally used for adornment.

A vertical line of entries in a table is frequently read from top to bottom rather than being a row.

To know more about column visit:--

brainly.com/question/25740584

#SPJ1

Name the malware which looks for security flaws in applications and systems which then allows cybercriminals to exploit it?

Answers

The malware which looks for security flaws in applications and systems which then allows cybercriminals to exploit it is called "Exploit".

The malware that looks for security flaws in applications and systems, which then allows cybercriminals to exploit it, is called "exploit kits." Exploit kits are typically sold on underground websites to hackers and cybercriminals, who use them to target vulnerable computers and steal sensitive information or cause damage to the system. Exploit kits can be difficult to detect and can be spread through malicious links, emails, or other forms of online communication.

Therefore, it's important to keep all software up to date with the latest security patches and to use reputable antivirus software to protect against exploit kits.

You can learn more about malware at

https://brainly.com/question/399317

#SPJ11

You are writing an algorithm that will subtract a smaller number from a larger
one. What should be the first step in your algorithm?
A. Subtract the smallest number from the largest number.
B. Show the difference between the two numbers.
C. Place the numbers in order from largest to smallest.
D. Find the numbers that are to be used in the math problem.

Answers

Place the numbers in order from largest to smallest. An algorithm is a detailed set of instructions created to carry out a certain activity. Algorithms are a step-by-step representation of how a software will carry out crucial actions.

What is  algorithm?

An algorithm is a step-by-step process that specifies a list of instructions to be carried out in a specific order in order to get the intended result. An algorithm can be implemented in more than one programming language because algorithms are typically constructed independent of the underlying languages.

The three basic phases of algorithm development are data input, data processing, and output of results. The particular order cannot be altered.

An algorithm is a detailed set of instructions created to carry out a certain activity. Algorithms are a step-by-step representation of how a software will carry out crucial actions.

To learn more about algorithm refer to:

brainly.com/question/11302120

#SPJ1

Answer:

D. Find the numbers that are to be used in the math problem.

Explanation:

yes

The web can be modeled as a directed graph where each web page is represented by a vertex and where an edge starts at the web page a and ends at the web page b if there is a link on a pointing to b. This model is called the web graph. The out-degree of a vertex is the number of links on the web page. True False

Answers

The given statement is true.The web graph is a model for a directed graph that helps to represent the web. This model is important because the internet is a vast and complex network of web pages that are linked together. Each web page is represented by a vertex in the graph, and an edge that starts at vertex a and ends at vertex b is created if there is a link on a that points to b.

In other words, each vertex is a webpage, and each directed edge represents a hyperlink from one webpage to another. The out-degree of a vertex is the number of links that point away from it. This means that the number of edges that originate from a vertex is equal to its out-degree. Therefore, the main answer is True. :We can define web graph as follows: The web graph is a model for a directed graph that helps to represent the web. This model is important because the internet is a vast and complex network of web pages that are linked together.

Each web page is represented by a vertex in the graph, and an edge that starts at vertex a and ends at vertex b is created if there is a link on a that points to b.In other words, each vertex is a webpage, and each directed edge represents a hyperlink from one webpage to another. The out-degree of a vertex is the number of links that point away from it. This means that the number of edges that originate from a vertex is equal to its out-degree. Therefore, the main answer is True.

To know more about web visit:

https://brainly.com/question/12913877

#SPJ11

What is the first step to move the chart to a different worksheet?

Answers

The first step to moving a chart to a different worksheet is to select the chart by clicking on it. This will activate the chart, allowing you to perform further actions such as moving or resizing it.

The first step to move a chart to a different worksheet is to select the chart by clicking on it. Once the chart is selected, you need to right-click on it and select the "Cut" option. Then, navigate to the worksheet where you want to move the chart and right-click on an empty cell where you want to place the chart.

From there, select the "Paste" option to paste the chart onto the new worksheet. This is the long answer to your question.

To know more about worksheet visit:-

https://brainly.com/question/13129393

#SPJ11

Which of the following are considered types of data? Select three options.
interpretation
numbers
text
Ophotographs
statistics

Answers

It's not only that this particular information might be considered to be more private or sensitive. These particular categories of personal data warrant special protection, according to the UK GDPR's recitals.

What are the four categories of data gathering?

Based on the methods used to acquire them, data can be divided into four basic categories: observational, experimental, simulational, and generated. The nature of the research data you gather could have an impact on how you manage that data.

What are the three categories of data gathering?

Different techniques can be employed to collect data under the main three core groupings of research methods (quantitative, qualitative, and mixed). Interviews can be conducted over the phone or in person.

To know more about data gathering here:

brainly.com/question/17538970

#SPJ1

Leslie has not properly bugeted for savings, retirement, or debt repayment

Answers

Savings, debt repayment, and retirement are the areas of Leslie's budget that are being negatively impacted by her underspending.

What happens if you don't budget correctly?A financial projection of a person, business, or government's earnings and expenses is simply referred to as a budget.It should be emphasized that the areas of Leslie's budget that her underspending is impacting include savings, debt reduction, and retirement. The most frequent effects of not budgeting are, in brief, a lack of savings, diminished financial stability, unrestrained spending, a greater risk of incurring debt, and increased financial stress. It will be challenging to live the same lifestyle in retirement as you had while working if you don't have any money.You might need to make changes like downsizing your house or apartment, giving up luxuries like cable television, an iPhone, or a gym membership, or driving a less expensive vehicle.

To learn more about budget refer

https://brainly.com/question/15464516

#SPJ1

Richard wants to share his handwritten class notes with Nick via email. In this scenario, which of the following can help Richard convert the notes into digital images so that he can share them via email? a. Bar coding device b. Digital printing software c. Document scanner d. Radio frequency identification tag

Answers

Answer: Document Scanner

Explanation: Cos then he can easily add the paper notes to his computer and email the client.

Python - Please help!

Convert the following while loop to its corresponding for loop :

i= 1
while i*i<n:
print(2* i + 1)
i += 1
else:
print('Hakuna Matata')​

Answers

Answer:

i= 1

for i in range(1,n):

     if i * i < n:

           print(2* i + 1)

     i += 1

else:

     print('Hakuna Matata')

Explanation:

First, there's a need to rewrite the code segment in your question (because of indentation)

i= 1

while i*i < n:

     print(2* i + 1)

     i += 1

else:

     print('Hakuna Matata')

The explanation of the equivalent of the above while loop is as follows

This line initializes i to 1

i= 1

This line iterates from 1 to n-1

for i in range(1,n):

This line checks if i * i is less than n

     if i * i < n:

The following line is executed if the above condition is satisfied; otherwise, nothing is done

           print(2* i + 1)

The value of i is incremented by 1 using this line

     i += 1

The following is executed at the end of the iteration

else:

     print('Hakuna Matata')

Note: Assume any value of n, both programs display the same output

You can't export data from Access to Word. True False

Answers

False. Exporting data from Access to Word is a relatively simple process that can be done in just a few steps. By doing so, you can create documents, reports, and other written materials that include data from your database.

You can export data from Access to Word.Access and Word are part of the Microsoft Office suite of productivity applications. Although they are separate applications, they can be used together to perform a variety of tasks. Access is a database management application that can be used to create, store, and manage data, while Word is a word processing application that can be used to create documents, reports, and other written materials.

While it is true that Access and Word are different applications, they can be used together to perform a variety of tasks. For example, you can export data from Access to Word to create a report or other document that includes information from your database. This process is known as a mail merge.In order to export data from Access to Word, you will need to follow these steps:Open the database that contains the data you want to export.Select the table or query that contains the data you want to export.

Click on the "External Data" tab in the ribbon.Select the "Word" option from the "Export" group.In the "Export - Word Document" dialog box, select the options you want for your export, such as the file name, file format, and data to include.Click "OK" to export the data from Access to Word.

To know more about export data visit :

https://brainly.com/question/14337731

#SPJ11

Other Questions
Question Down below. For grammatically correct sentence, how should subjects and verbs agree? Help pls, answer choices listed!! what are concave, indented areas, or openings in bones called? A company constructs a bridge 500 metres long. The cost of constructing the first me- tre is N1000 with an increase in cost of N500 per metre for every succeeding metre. Calculate the total cost. How do stabilizing and disruptive selection differ? how do stabilizing and disruptive selection differ? Match each term below with the correct number to complete the paragraph.Reagan wanted to end the ______1_____. His policy, known as the 2, gave aid tonations fighting the spread of communism. It led the United States into complexentanglements in many parts of the world. Reagan also initiated research for adefense system called "______ 3 "which pressured the Soviets into more 4 thanthey could afford. He met with the Soviet leader, _______5______, to discuss the possibility ofeliminating all _6______, and he challenged the Soviet Union to tear down theCold Warnuclear weaponsBerlin Wall Regan doctrine Star Wars Military spending Milhaud Gorbachev give short answer in 25 mins i will thumb up9. Is the following statement correct, wrong or partially correc? Why? "As preferred stocks have guaranteed dividends, they have lower risk than common stocks." [8] QUESTIONThomas invested $200 in an index fund with an averageannual rate of return of 8.4% and an expense ratio of 0.5%.What was Thomas' annual rate of return after fees? Ritual dances of indigenous cultures are primitive early dances.These practices today have evolved. Ritual dance practices tend tobe representative of honoring a deity, Gods, or ancestors.Movements x:20=5:xCalculate the positive value of x What is the purpose of decannulation? Why is ethanol used when making an elixir? Which equation is NOT equivalent to p- 7 = 22? Select all that apply.A. p-p-7 = 22-pB. p-7-p = 22 -C. p - 7 + 22 = 22 - 7OD. p - 7 + 7 = 22 - 22Ep-7 + 7 = 22 +7 Find the value of x in the triangle in the picture. Hexane burns in air to form carbon dioxide and water. The oxygen is store at 40.0 Celsius and at a pressure of 106.6kPa. How many moles of oxygen will react with 500. Grams of hexane what functions are performed through the up/down buttons on 2022 versas available advanced drive-assist display? Under normal conditions, which of these contract types poses the greatest risk to the buyer? Determine whether the series converges conditionally, absolutely or diverges.(a) X[infinity] n=1 (1)^n/( 3^n)(b) X[infinity] n=2 (1)^n/( n (ln n) )(c) X[infinity] n=0 (1)^n e^ (n)(d) X[infinity] n=0 (1)^n *(n 1) /(n + 2)(e) X[infinity] n=1 cos n /n^2(f) X[infinity] n=1 (1)^n tan (1/ n) can someone help me plssssssssWrite an informative essay that explains the qualities of a hero and how to recognize heroes in your life.