Factory Design Pattern Assignment This assignment will give you practice in using the Factory/Abstract Factory Design Pattern. You are going to create a Terraforming program. What does terraform mean

Answers

Answer 1

Answer:

Terraform is an open-source infrastructure as code software tool that enables you to safely and predictably create, change, and improve infrastructure.


Related Questions

Page Setup options are important for printing a PowerPoint presentation a certain way. The button for the Page Setup dialog box is found in the
File tab.
Home tab.
Design tab.
Slide Show tab.

Answers

Answer: Design tab

Explanation:

The page setup simply refers to the parameters which are defined by a particular user which is vital in knowing how a printed page will appear. It allows user to customize the page layout. The parameters include size, page orientation, quality of print,margin etc.

It should be noted that page setup options are vital for printing a PowerPoint presentation in a certain way and the button for the Page Setup dialog box can be found in the design tab.

What is the hamming distance between the following bits? Sent
bits: 101100111, Received bits: 100111001
Select one: 5. Or 3 or 6 or4​

Answers

I think

the hamming distance between the following bits its 5

You want a cable that could be used as a bus segment for your office network. The cable should also be able to support up to 100 devices. Which cable should you use?

A.
RG-6
B.
RG-8
C.
RG-58U
D.
RG-59

Answers

Answer: C

Explanation:

Which line of code will use the overloaded multiplication operation?

class num:
def __init__(self,a):
self.number = a

def __add__(self,b):
return self.number + 2 * b.number

def __mul__(self, b):
return self.number + b.number

def __pow__(self, b):
return self.number + b.number

# main program
numA = num(5)
numB = num(10)

Which line of code will use the overloaded multiplication operation?

class num:
def __init__(self,a):
self.number = a

def __add__(self,b):
return self.number + 2 * b.number

def __mul__(self, b):
return self.number + b.number

def __pow__(self, b):
return self.number + b.number

# main program
numA = num(5)
numB = num(10)

a) product = numA * numB
b) product = numA.multiply(numB)
c) product = numA.mul(numB

Answers

For multiplication one: product = numA * numB

For the addition: result = numA + numB

got 100 on this ez

(searched all over internet and no one had the answer lul hope this helps!)

Answer: First option: product = numA * numB

second option-numA + numB

Explanation:

Which of the following is not the disadvantage of closed
network model?
Select one:
O Flexibility
O Public network connection
O Support
O External access​

Answers

Answer:

public network connection

Answer:

public network connection

Which of the following best explains how an analog audio signal is typically represented by a computer?
a. An analog audio signal is measured at regular intervals. Each measurement is stored as a sample, which is represented at the lowest level as a sequence of bits.
b. An analog audio signal is measured as a sequence of operations that describe how the sound can be reproduced. The operations are represented at the lowest level as programming instructions.
c. An analog audio signal is measured as input parameters to a program or procedure. The inputs are represented at the lowest level as a collection of variables.
d. An analog audio signal is measured as text that describes the attributes of the sound. The text is represented at the lowest level as a string.

Answers

Answer:

A. An analog audio signal is measured at regular intervals. Each measurement is stored as a sample, which is represented at the lowest level as a sequence of bits.

Explanation:

I took the test

what is the best plugin for subscription sites?

Answers

Answer:

Explanation:

MemberPress. MemberPress is a popular & well-supported membership plugin. ...

Restrict Content Pro. ...

Paid Memberships Pro. ...

Paid Member Subscriptions. ...

MemberMouse. ...

iThemes Exchange Membership Add-on. ...

Magic Members. ...

s2Member.

Write a C program that right shifts an integer variable 4 bits. The program should print the integer in bits before and after the shift operation. Does your system place 0s or 1s in the vacated bits?

Answers

Solution :

#include<[tex]$\text{stdio.h}$[/tex]>

#include<conio.h>

void dec_bin(int number) {

[tex]$\text{int x, y}$[/tex];

x = y = 0;

for(y = 15; y >= 0; y--) {

x = number / (1 << y);

number = number - x * (1 << y);

printf("%d", x);

}

printf("\n");

}

int main()

{

int k;

printf("Enter No u wanted to right shift by 4 : ");

scanf("%d",&k);

dec_bin(k);

k = k>>4; // right shift here.

dec_bin(k);

getch();

return 0;

}

a) Why is eavesdropping done in a network?
b) Solve the following using checksum and check the data at the
receiver:
01001101
00101000​

Answers

Answer:

An eavesdropping attack is the theft of information from a smartphone or other device while the user is sending or receiving data over a network.

Missing: checksum ‎01001101 ‎00101000

Write a MIPS assembly language program that prompts for a user to enter a series of floating point numbers and calls read_float to read in numbers and store them in an array only if the same number is not stored in the array yet. Then the program should display the array content on the console window.
Consult the green sheet and the chapter 3 for assembly instructions for floating point numbers. Here is one instruction that you might use:
c.eq.s $f2, $f4
bc1t Label1
Here if the value in the register $f2 is equals to the value in $f4, it jumps to the Label1. If it should jump when the value in the register $f2 is NOT equals to the value in $f4, then it should be:
c.eq.s $f2, $f4
bc1f Label1
To load a single precision floating point number (instead of lw for an integer), you might use:
l.s $f12, 0($t0)
To store a single precision floating point number (instead of sw for an integer), you might use:
s.s $f12, 0($t0)
To assign a constant floating point number (instead of li for an integer), you might use:
li.s $f12, 123.45
To copy a floating point number from one register to another (instead of move for an integer), you might use:
mov.s $f10, $f12
The following shows the syscall numbers needed for this assignment.
System Call System Call System Call
Number Operation Description
2 print_float $v0 = 2, $f12 = float number to be printed
4 print_string $v0 = 4, $a0 = address of beginning of ASCIIZ string
6 read_float $v0 = 6; user types a float number at keyboard; value is store in $f0
8 read_string $v0 = 8; user types string at keybd; addr of beginning of string is store in $a0; len in $a1
------------------------------------------
C program will ask a user to enter numbers and store them in an array
only if the same number is not in the array yet.
Then it prints out the result array content.
You need to write MIPS assembly code based on the following C code.
-------------------------------------------
void main( )
{
int arraysize = 10;
float array[arraysize];
int i, j, alreadyStored;
float num;
i = 0;
while (i < arraysize)
{
printf("Enter a number:\n");
//read an integer from a user input and store it in num1
scanf("%f", &num);
//check if the number is already stored in the array
alreadyStored = 0;
for (j = 0; j < i; j++)
{
if (array[j] == num)
{
alreadyStored = 1;
}
}
//Only if the same number is not in the array yet
if (alreadyStored == 0)
{
array[i] = num;
i++;
}
}
printf("The array contains the following:\n");
i = 0;
while (i < arraysize)
{
printf("%f\n", array[i]);
i++;
}
return;
}
Here are sample outputs (user input is in bold): -- note that you might get some rounding errors
Enter a number:
3
Enter a number:
54.4
Enter a number:
2
Enter a number:
5
Enter a number:
2
Enter a number:
-4
Enter a number:
5
Enter a number:
76
Enter a number:
-23
Enter a number:
43.53
Enter a number:
-43.53
Enter a number:
43.53
Enter a number:
65.43
The array contains the following:
3.00000000
54.40000153
2.00000000
5.00000000
-4.00000000
76.00000000
-23.00000000
43.52999878
-43.52999878
65.43000031

Answers

Explanation:

Here if the value in the register $f2 is equals to the value in $f4, it jumps to the Label1. If it should jump when the value in the register $f2 is NOT equals to the value in $f4, then it should be

is used for finding out about objects, properties and methods​

Answers

Answer:

science

Explanation:

A line beginning with a # will be transmitted to the programmer’s social media feed.

A.
True

B.
False

Answers

Answer:

True?

Explanation:

Answer:

The answer is false.

Explanation:

A “#” doesn’t do that in Python.

Other Questions
Select if the description is Fish, Amphibians, Reptiles, Birds, or Mammals. Some will have more than one answer.feed their young with milk from the motherare covered in hard, dry scales and breathe with lungsbreathe through both lungs and gillsusually give live birthspend part of their lives on land and part of their lives in waterusually lay eggsbreathe through gills and have finshave wings and beaks or billsare warm-bloodedare cold-bloodedlive only in waterhave some type of hair = Simplify the following algebraic expressions given below into their equivalent standard forms. (x + 10)(x + 10) The U.S. soldier had the heart of a lion simile or metaphor? Rewrite these sentences using the underlined nouns as verbs. The meaning muststay the same1) Mona gave us a big smile before introducing herself.2) The flower has a good smell3) The lunch had delicious taste4) I didn't send a reply to her email5) I had a guess that this question will be in the exam6) Amal decided to go on a diet in order to lose weight7) I gave the car a push8) Ahmed usually has a long rest after exercising in the gym9) Yesterday morning. I went for a run in the garden10) Oil prices had an increase in 2017The underlined words are 1) smile. 2) smell. 3)taste. 4) reply. 5) guess. 6) diet7) push. 8)rest. 9)run. 10) increase Which of the following is true of how packets are sent through the Internet?Packet metadata is only included on important packets to indicate they should get access to faster paths through the networkPacket metadata is used to route and reassemble information travelling through the InternetInformation sent through the internet is only encapsulated in packets if the message is too large to be sent as a datastreamInformation sent through the internet is split into two packets, one which contains the message and another which contains the metadata HELPP giving brainliest what is about Canadian railroad trilogy Find the profit or loss if:Cost price = $19.85 Selling price = $20.20tell me also wether its a profit or loss 1. Find (f(g(2)) for f(x)= 3x and g(x)= 5 - x. Answer the question in the picture? Find 3[g(4)] if g(x) = -2x + 10 Please help me......Low art or low culture includes popular music, tattoo art, and kitsch. Art critics maintain that these are sentimental works that are viewed as tasteless decorations. In a paragraph, explain why you agree or disagree with this evaluation. Flora drew the following graph to answer the question. What was her mistake when she drew her graph? Please help ASAP ASAP what were the Soviet Union and East allies concerns regarding Germany? What is the main religion in North Africa?1) Christianity2)Buddhism3)Hinduism4)Islam Types of submarines and the depths are below sea level they can safely reach are down below are shown in the table below. (The photo)Which two types of submarines can reach depths farthest from sea level?A) Pleasure, MilitaryB) Scientific, Alternative PropulsionC) Alternative Propulsion, MilitaryD) Guided Missile, Scientific . Descibe how the couple in the text will help save the environment in connection with Christmas. Comment * on their ideas. Discuss * ways in which ofdinary people can help save the environment. Give examples from your own life or the lives of others. pleeees help Someone please tell me the answers to this please I beg you For an upcoming election, 500 registered voters were surveyed on a tax increase. 43% were for a tax increase and 51% were against a tax increase. The margin of error was 6%. What is an accurate conclusion from the poll? a. Against a tax increase will win because it is above 50%. b. The nal result is undecided because of the margin of error. c. The nal result is undecided because percentages do not add up to 100%. d. Against a tax increase will win because the margin of error will increase their percentage.