it literALLY HAS NOTHING TO DO WITH MY ASSIGNMENT

Answers

Answer 1

Ansgokublue

Explanation:


Related Questions

You have installed Windows Server 2016 on a new server and want to centralize user logons and security policies. What type of software should you install and configure on this server

Answers

Answer:

Directory Service

Explanation:

The type of software that you should need to install and configure on this server is known as the directory services such as Microsoft office.

What is Software?

Software may be defined as a set of instructions, data, or programs which are considerably utilized in order to operate computers and execute specific tasks with respect to the instructions. The function of the software is absolutely the opposite of the hardware.

According to the context of this question, each and every directory service have some special class of software that enables the window to install and configure Microsoft's proprietary. These proprietaries mutually support the window and execute the function with respect to the user's instructions.

Therefore, the directory service is a type of software that you should need to install and configure on this server.

To learn more about Software, refer to the link:

https://brainly.com/question/28224061

#SPJ2

codehs python 4.7.6 Powers of Two
it says I'm wrong because I need

Answers

[tex]\huge\fbox\orange{A} \huge\fbox\red{N}\huge\fbox\blue{S}\huge\fbox\green{W}\huge\fbox\gray{E}\huge\fbox\purple{R}[/tex]

[tex]\huge\underline\mathtt\colorbox{cyan}{in attachment}[/tex]

Following are the program to calculate the power of two:

Program Explanation:

Defining an integer variable "i" that hold an integer value.Defining a for loop that checks "i" value in between 20, inside this it calculates power of two.At the last use print method to print its value.

Program:

i=1#holding integer value in i

for i in range(20):#defining a for that starts 1 to 20    

   i = 2 ** i#calculate power of 2 in i variable

   print(i)#print value

Output:

Please find the attached file.  

Learn more:

brainly.com/question/23170807

Consider the following instance variables and method from a class: private String descriptor; public String makeSentence(int quant, boolean sign) { String s = "Object is "; if (!sign) { s += "not "; } for (int i = 0; i < quant; i++) { s += "very "; } return s + descriptor; } Suppose an object of this class is initialized so the value of descriptor is "regular". What would be returned by the call makeSentence(3, false) made on this object?

Answers

The call makeSentence(3, false) will return

"Object is not very very very regular"

The program fragment is:

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

private String descriptor;

public String makeSentence(int quant, boolean sign) {

   String s = "Object is ";

   if (! sign) {

       s += "not ";

    }

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

       s += "very ";

   }

   return s + descriptor;

}

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

descriptor is an instance field of the class. When makeSentence(3, false) is called, it does the following;

Initializes a local variable s with "Object is "

s now contains "Object is "

Since sign== false, the if block executes

s now contains "Object is not "

The for loop will execute 3 times to append "very " to s

s now contains "Object is not very very very "

Finally the return statement returns a concatenation of the contents of descriptor (descriptor=="regular") and s

s now contains "Object is not very very very regular"

Learn more about programs here: https://brainly.com/question/19625875

What genre of games involves gameplay that is designed to simulate real-world or fictionalized activites such as flying a plane or managing a city and often requires resource management?

Simulation games
Puzzle games
Adventure games
Strategy games

Answers

Answer:

simulation games

Explanation:

Simulation games are a broad category of games where gameplay is designed to simulate real-world or fictionalized activities and often require resource management skills.

Answer:

Simulation games

Explanation:

Identify the link element that accesses a style sheet file named output. Css only when the device is a printer or a projection device.

Answers

There are different types of link element. The link element that accesses a style sheet file named output is:

<link href="output.css" media="print, projection" />

Style sheets often shows a key growth for Web page designers, widening their ability to boast the appearance of their pages.

In the web environments, people are very concerned with the content of their documents than the way it was presented.

There are techniques that often work for some of the people but not for all of the people and there is need therefore to make new techniques.

Learn more about link element from

https://brainly.com/question/25608430

What devices do not need device drivers to be manually installed, and start to function as soon as they are connected to a computer?.

Answers

Plug-and-play devices are electronic devices that do not require any device driver to be manually installed on the host device (computer) and as such they start functioning immediately they are connected to the host device (computer).

Plug-and-play (PnP) can be defined as a technology that is designed and developed to allow an operating system (OS) of a computer to automatically detect and configure a peripheral (input and output device) as soon as they are connected to the computer.

On a related note, a plug-and-play device is an electronic device that do not require any device driver to be manually installed on the host device (computer) and as such it start to function immediately it is connected to the host device (computer).

In Computers and Technology, some examples of a plug-and-play device include the following:

External hard-driveComputer monitorKeyboardWeb-camMouse

Find more information: https://brainly.com/question/17402566

Question 8 of 10
When is a table the most effective way to present information?
O A. When graphs are more expensive to create.
O B. When you want to show the parts of a whole.
O C. When you want to show how parts fit together.
O D. When you want to make many details available in an organized
way.

Answers

Answer:

C

Explanation:

Tables and figures are particularly effective when large amounts of information have to be presented and discussed in an effective way.

Answer:

D. When you want to make many details available in an organized way.

Explanation:

Select the correct answer.
Which option would you use to insert two line breaks in your document?
A.<2br>
B.

C.


D.

Answers

Answer:

yes, I agree.

Explanation: ,

What color object would reflect more light?
O Red
O Black
O Blue
o White

Answers

Answer:

White

Explanation:

Red absorbs all light except red light, which it reflects

Black absorbs all light

Blue absorbs all light except blue light, which it reflects

White reflects all light because it has all colors except black.

Hope you do well!

HELP ME!!!!!!! %) select all the correct answer. What will be the output of using the element in the given HTML code? 1011 2 A. 10112 B. 10112 C. 21011 D. 21011

Answers

Answer:

A or B

Explanation:

I'm not sure I used HTML a bit but I am not a pro on it so this might be not correct

Tell me if I'm wrong :)

Answer:

The answer is B: 1011 with the two under

Explanation:

I got it correct on my test.

If you used D*n as the criterion in a Short Text field called FirstName, what would appear in that field in the query results

Answers

When querying a list or table, the use of wildcard symbols maybe used to optimize the search result. The words D*n will return First names which starts with D and ends with n.

The (*) denotes that the search returns any values or alphabets inbetween D and n.

Names such as Dean, Don, Drezn and other rated names would be included in the returned query.

Therefore, the returned query would include names starting with the letter D and ends with the letter n.

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

Which option ensures that items in a text box or table cell will be in the absolute center of that element?

*i chose b. center, align, middle and got a 100 edg21

Answers

Answer:

Center, Align, Middle

Explanation:is correct. post protected

RDP connection from outside the network to a server inside the network. Which network device will a network administrator MOST likely configure to allow this connection? Hub Switch Firewall

Answers

Answer:

Firewall

Explanation:

The firewall might block the Remote Desktop Protocol (RDP) connection. This is because hackers could use open connections to brute force passwords or control an infected computer. The firewall ensures that only authorised connections occur.

______ requires that any electronic communication must be backed up and secured with reasonable disaster recovery infrastructure.

Answers

SOX requirements requires that any electronic communication must be backed up and secured with reasonable disaster recovery infrastructure.

Sarbanes Oxley (SOX) requires that data security policies are being made, effectively communicated and enforced. This is needed for data security as well as protecting financial data needed for normal operations.

SOX requirements are needed to be met so as to perform compliance auditing.

Find out more at: https://brainly.com/question/17157670

How to make headers without bootstrap angular.

Answers

Answer:

The idea is page should be fixed and cannot be scroll. Header and footer always stick to top and bottom. the middle part is content which is scroll-able only. contents should not be overlapped by header and footer. Layout should work with different type of devices and screen.

Explanation:

When you begin designing a program, you work from a ____, a description of what your program should do.

Answers

Answer:

This is usually called a brief (you will also hear this in the design industry, as well as other places)

A business is having trouble keeping up with the competition. They cannot
respond to their customers like the competition. Which type of system will
likely be able to help them solve this issue?
A. Transaction processing system
B. Management communication system
C. Decision support system
D. Management information system

Answers

Answer:

Decision support system is the answer

Explanation:

Specifications What are the best practices you should communicate to the Design team about the formatting of the spec book

Answers

The Spec book, describes a formatted writing which contains the major specifications and description of the building blocks of an application or process. The design process should follow formatting guidelines such as ;

Inclusion of table of content, which gives a table like format of the content in the book within the first 25 pages.

Inclusion of the Spec section number in the header and footer section of each page of the book.

Avoid including any other value with the spec section number. Hence, the spec section number must be distinctly seperated.

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

Which option is used to apply formatting to multiple objects on a single slide while still maintaining the ability to manage these objects independently if desired?

it was B. Grouping feature edg21

Answers

Answer:

b. Grouping feature

Explanation:post protected

Can you make a phone app with angular?.

Answers

Answer:

yes

Explanation:

Project: On Assignment as a Web Developer
Assignment Directions:

Create a web page for a fictitious company: Widgets Inc. has hired you to make a mock-up for their new website. They are on a budget and only want to have a presence on the Internet. They do not need any fancy bells and whistles. They have sent you an email message with the basic parameters of the site.

The site should have at least three pages. They should include the landing page (commonly named index.htm), a contact page, and a "Meet the Company" page.
Each page should have an identical header containing the company name and motto: "We make widgets fun!"
Each page must include navigation back to the home page (without needing to use the Back button on the browser).
All font styles and alignment must be performed with inline CSS.
The company mascot is a dog, but there is no logo provided in this project. Any picture of a dog will do. Make sure it is prominently displayed on each page.
Each page should display in a web browser with a title.
All employees on the "Meet the Company" page can be random people's photos from the Internet. Please include Jack Sprat, President, Tom Thumb, Vice President, Sally Flag, Treasurer, and Monty Fuller, Secretary.
All text for these pages can be fake. See this website to create filler paragraphs.
Make up email addresses, but use the mail to: command as a hyperlink and display the person's name and not the actual address.
Each page should have a link to the other pages.
Link to at least three remote web pages. One of these should be formatted in an iframe.
The main page should have a sample product table including the following information:
Name Size Color Lead time Price Discount (for 10)
W-1 1X1 Blue 1 week $200.00 10%
R-2 2X2 Green 1 week $1,200.00 15%
D-2 2X3 Red 2 weeks $12,000.00 20%
Assignment Guidelines:

Projects will be assessed on following the requirements and style. Use color (creatively), at least two typefaces, headings, bold and italics, images, background colors, and so on to make your pages.

Submission Requirements:

Standard HTML

Question # 1

File Upload

Ensure that you fulfill all requirements, then upload your final web page project.

Answers

Answer:

It is not possible to upload files .html files here

_______ is the use of software to assist in the creation, analysis, and modification of the design of a component or product.

Answers

Answer:

C) Computer-aided Design

Explanation:

Options:

a. Computer-aided engineering

b. Computer-aided evaluation

c. Computer-aided design

d. Computer-aided manufacturing

C) Computer-aided design is correct answer

(Hope this helps can I pls have brainlist (crown)☺️)

In any and every instance when the Federal Government provides recovery support, all six Recovery Support Functions will be activated. A. TRUE

Answers

Answer:

what?

Explanation:

what are the questions lol

________ software consists of operating systems, utilities, device drivers, and language translators.

Answers

Answer:

"System"

Explanation:

System software consists of operating systems, utilities, device drivers, and language translators.

(not much explanation as it was a fill in the blank which explains itself haha)

Have a nice day!

    I hope this is what you are looking for, but if not - comment! I will edit and update my answer accordingly. (ノ^∇^)

- Heather

Recursive functions are ________ iterative algorithms. as efficient as less efficient than more efficient than impossible to compare to

Answers

Based on computer programming, Recursive functions are less efficient than iterative algorithms.

Recursive Function vs. Iterative Algorithm

During implementation, the Recursive functions require the module to call itself multiple times till the base condition is satisfied, thereby making the line of codes longer and slower to execute.

In contrast, the Iterative algorithm utilizes looping statements such as for LOOP, WHILE LOOP, or DO-WHILE LOOP to repeat the same steps, thereby making the line of codes shorter and faster to execute.

Hence, in this case, it is concluded that the correct answer is "less efficient than."

Learn more about Recursive Functions here: https://brainly.com/question/25647517

Is noreasters the kind of weather that a place has over a long period of time (true)or (false) ?

Answers

It is true hope this helps

We use the keyboard to point, click, and select menus and icons, and for onscreen navigation. True or False

Answers

Answer:

False.

Explanation:

Hope I could help. Hey, have a nice study time.

Answer:

false

Explanation:

we use our keyboard to type not click icons or point.

Question # 2
Multiple Select
Which of the following statements are true regarding feedback? Select 3 options.

-Feedback is used exclusively for marketing purposes.

-Feedback includes only the unsolicited opinions of customers.

-Feedback can be gathered from everyday activities, like support calls.

-The type of feedback gathered, depends on the phase of the project and the goals for the feedback.

-Customer surveys can be used to ask specific questions.

Answers

The statement that are true regarding feedback are:

c. Feedback can be gathered from everyday activities, like support calls.

d. The type of feedback gathered depends on the phase of the project and the goals for the feedback.

e. Customer surveys can be used to ask specific questions.

What are feedbacks?

Feedbacks are the return compliments or suggestions that are given by customers after taking any service by any company. The business updates its products in response to client input.

He requested input from his employer. According to the sensors' feedback, the computer adjusts. The microphone was providing some input to us. These feedbacks are important for the company or any other person to improve herself.

Therefore, the correct options are c, d, and e.

To learn more about feedback, refer to the link:

https://brainly.com/question/26994432

#SPJ2

Set the Append Only property to _____ to allow users to add data to a Long Text field but not to change or remove existing data.

Answers

A computer data storage is made of many features. Set the Append Only property to YES to allow users to add data to a Long Text field but not to change or remove existing data.

Append-only is known to be a characteristic or component of computer data storage. It is where new data can be appended to the storage, but where existing data is said to be immutable.

A field's data type is very essential property as it shows what kind of data the field can store.

Learn more from

https://brainly.com/question/24795103

What happens as a blog's audience grows?
A. It acquires more insurance.
B. Its influence widens.
O C. Its HTML becomes longer.
O D. It acquires more domain names.

Answers

Answer:

ᴀ. ɪᴛ ᴀᴄǫᴜɪʀᴇs ᴍᴏʀᴇ ɪɴsᴜʀᴀɴᴄᴇ.

Explanation:

Hᴏᴘᴇ Iᴛ's Hᴇʟᴘ

Explanation:

[tex]a \: it \: acquiresmore \insurance[/tex]

A. it's acquires more insurance

Other Questions
Ryan invests a sum of money in a savings account with a fixed annual interest rate of 4. 31. A cell uses active transport to move sodium ions out of the cell. Why does the cell use active transport instead of diffusion to move sodium ions out of the cell?. In one or two paragraphs, describe the structure of the executive branch. Be sure to include descriptions of the types of departments and agencies that make up the executive branch, including some examples of their responsibilities. True or false: For a spontaneous redox reaction, the products are stronger oxidizing and reducing agents than the reactants. What is the slope of the line, y=54x? A car of the year 2020 is topped with 25% of its price. If the list price says $ 25,000, what will the discounted price be? Line A is represented by the following equation: x + y = 2What is most likely the equation for line B so the set of equations has no solution? Where is the center of the cold air mass? ( name the region of the state near the center) HELPPP LAST ATTEMPT!! Use the diagram showing m || n, as well as the relationships between interior and exterior angles of ABC, to answer the questions.The measure of angle ABC is .The measure of angle BAC is .The measure of angle ACB is . Solve for xx69=5 Suppose a self-regulating economy is in a recessionary gap at the time the Fed enacts expansionary monetary policy. Furthermore, suppose the Fed is able to enact expansionary monetary policy in such a precise way that the economy moves from a recessionary gap into long-run equilibrium, if there are no other changes in the economy. The combination of expansionary monetary policy and a self-regulating economy will cause: __________a. Real GDP to rise to a level above Natural Real GDP b. Real GDP to rise to a level below Natural Real GDP c. Real GDP to rise to a level dqual to Natural Real GDP. d. a recessionary gap to turn into an inflationary gap. Kendra earns $11.60 per hour working at the movie theater. Each week, she donates 110 of her earnings to Best Friends Animal Society, her favorite charity. If Kendra worked 812 hours last week, how much money did she donate to the charity?$ plsss help!!!!!!!!!!!!!!!!!!!! if 1/3 of a gallon of paint covers 1/8 how much paint is needed to cover the entire wall Use the dropdown menus to select the best answers.There is/are bone(s) in the lower arm.There is/are bone(s) in the upper arm. Which type of cell division is responsible for the sequoia tree growing bigger?MitosisMeiosisCell DifferentiationRandom Fertilization If 25 g of Al was added to 90 g of HCl, what mass of H2 will be produced? How did Joan Mitchell or Marsden Hartley use the element of texture in their work? Can someone please help me