The typical phases of service included in an Architectural/Engineering design professional contract are Pre-design Phase, Schematic Design Phase, Design Development Phase, etc.,
1. Pre-design Phase: This phase involves initial discussions and consultations to define project goals, requirements, and constraints. It includes site analysis, feasibility studies, and preliminary cost estimates.
2. Schematic Design Phase: In this phase, the design team develops conceptual designs, sketches, and diagrams to illustrate the project's overall layout, form, and spatial relationships.
3. Design Development Phase: Here, the design is further refined, and detailed drawings, specifications, and materials are determined. The focus is on technical aspects, building systems, and coordination with other disciplines.
4. Construction Documents Phase: This phase involves preparing comprehensive construction documents that provide detailed instructions for the construction team. It includes drawings, specifications, and other necessary documentation.
5. Bidding and Negotiation Phase: During this phase, the design team assists the client in obtaining bids from contractors and helps evaluate the proposals. Negotiations may occur to finalize the construction contract.
6. Construction Administration Phase: In this phase, the design team provides oversight and support during the construction process, including site visits, reviewing progress, responding to contractor queries, and ensuring compliance with design intent and specifications.
These phases ensure a structured approach to the design process, allowing for effective communication, coordination, and successful completion of architectural and engineering projects.
To learn more about design visit:
brainly.com/question/33468045
#SPJ11
4. Security Passwords "Research This" Use a searcli engine to locale at least 2 different companies' lists of the 10 or 20 more common passwords in the past two years. Which passwords appear on both lists? Find a password-strength checking website and type three passwords to determine how easy or difficult they are to crack. Why do you think consumers continuc to use these passwords despite repeated warnings to avoid them? Do you have accounts using one or more of these passwords? What advice is.giyen for developing strong passwords? How do the companies gather data to determine common passwords?
According to various studies, "123456" has been the most common password in the past two years. Many users do not change the default passwords on their devices or use simple, easy-to-guess passwords such as "qwerty" or "password."
Password cracking tools can easily guess such passwords.The first thing to keep in mind when developing a strong password is to make it lengthy and complex. Use a mixture of uppercase and lowercase letters, numbers, and special characters. As an alternative, using passphrases is also a good idea. Furthermore, do not use the same password for multiple accounts, and avoid using simple patterns like "1111" or "abcd."To determine the most frequent passwords, data scientists typically analyze data breaches and attack methods used by hackers. They analyze the stolen data to look for patterns and identify frequently used passwords.
This data is then compiled into lists of the most commonly used passwords. Several websites can determine the strength of a password based on a series of tests. Users can input their passwords and see how strong they are.To conclude, users should prioritize their security by having strong passwords. The most common passwords like “123456” and “password” should be avoided. Instead, users can use passphrases and mix them up with symbols, uppercases, and numbers. To further add to their security, users can change their passwords every 60-90 days and avoid using the same passwords for different accounts.
To know more about passwords visit:
https://brainly.com/question/31815372
#SPJ11
Many businesses use robotic solutions. Which department of the food and beverage industry uses robotic solutions on a large scale?
The______ department of the food and beverage industry uses robotic solutions on a large scale.
A)assembling
B)lifting
C)packing
D)welding
FILL IN THE BLANK PLEASE
The "packing" department of the food and beverage industry uses robotic solutions on a large scale.What is the food and beverage industry?The food and beverage industry is a vast industry consisting of a wide range of companies and services that are involved in the production, processing, preparation, distribution, and sale of food and beverages.
The food and beverage industry is one of the largest industries worldwide, with millions of people employed in different roles and sectors of the industry.What is robotic solutions Robotics is a branch of engineering and science that deals with the design, construction, and operation of robots, which are machines that can perform complex tasks automatically and autonomously.
Robotics is a rapidly growing field, with many applications in various industries, including manufacturing, healthcare, transportation, and logistics. Robotic solutions refer to the use of robots and robotic systems to perform tasks and operations that are typically done by humans.
To know more about department visit:
https://brainly.com/question/30076519
#SPJ11
a) consider the binary number 11010010. what is the base-4 representation of (11010010)2? (there is a way to do this without converting the binary number into a decimal representation.) (b) consider the number d in hex. what is the base-4 representation of (d)16?
The place value can be used to convert a binary number, such as 11010010, into decimal form: 11010010 = 1 x 27 + 1 x 26 + 0 x 25 +1 x 24.In light of the aforementioned, the base-4 number system has 4 digits: 0, 1, 2, and 3. Any 2-bit number can be represented by a single base-4 integer since a 2-bit number can only represent one of the values 0, 1, 2, or 3.
What does base 4 mean?Base-4 is a quaternary number system. Any real number is represented by the digits 0, 1, 2, and 3.In light of the aforementioned, the base-4 number system has 4 digits: 0, 1, 2, and 3. Any 2-bit number can be represented by a single base-4 integer since a 2-bit number can only represent one of the values 0, 1, 2, or 3.The four digits of Quaternary (Base 4) are 0 through 3.Binary code 4 is 100. In a binary number system, we only use the digits 0 and 1 to represent a number, as opposed to the decimal number system, which uses the digits 0 to 9. (bits).To learn more about Quarternary number system refer to:
https://brainly.com/question/28424526
#SPJ4
The three most important factors that affect the distribution of resources are:
Answer:
The main factors that affect distribution of population are natural resources, climatic conditions, soils, cultural factors, age of human settlement, industrial development and means of transport and communication. The factors affecting distribution of population are described below one by one in a nutshell manner.
Explanation:
Hope it helps :)
Construct an algorithm to print the first 20 numbers in the Fibonacci series (in mathematics) thanks
Answer:
0+1=1
1+1=2
1+2=3
2+3=5
3+5=8
5+8=13
Explanation:
// C++ program to print
// first n Fibonacci numbers
#include <bits/stdc++.h>
using namespace std;
// Function to print
// first n Fibonacci Numbers
void printFibonacciNumbers(int n)
{
int f1 = 0, f2 = 1, i;
if (n < 1)
return;
cout << f1 << " ";
for (i = 1; i < n; i++) {
cout << f2 << " ";
int next = f1 + f2;
f1 = f2;
f2 = next;
}
}
// Driver Code
int main()
{
printFibonacciNumbers(7);
return 0;
}
What differentiates files stored on the same track and sector of different platters of a hard disk?.
Files that are stored on the same track and sector of different platters of a hard-disk drive are differentiated by a cylinder.
What is a hard-disk drive?A hard-disk drive can be defined as an electro-mechanical, non-volatile data storage device that is made up of magnetic disks (platters) that rotates at high speed. Also, hard-disk drive are commonly installed on computers and other digital service for the storage of files.
In Computer technology, the Files that are stored on the same track and sector of different platters of a hard-disk drive are typically differentiated from one another by a cylinder configured with tracks of equal diameters.
Read more on hard-disk here: https://brainly.com/question/26382243
Which of the following is the most reliable way to check the accuracy of a website?
Look at the date on the website
See who is responsible for the website.
Examine the sources cited by the website.
Review how the website was written.
Answer:
I think its examine the sources cited
If Pope wants to get into an industry that benefits from federal government incentives, what would be a possible option for him?
One possible option for Pope to benefit from federal government incentives would be to start a business in an industry that is eligible for government incentives, such as renewable energy, healthcare, or technology.
If Pope wants to get into an industry that benefits from federal government incentives, he could consider investing in renewable energy, such as solar or wind power. The federal government provides a range of incentives and subsidies for businesses involved in renewable energy production and distribution, including tax credits, grants, and loan guarantees. These incentives are designed to promote the development of clean, sustainable energy sources and reduce dependence on fossil fuels. Additionally, investing in renewable energy can be seen as a socially responsible choice that aligns with many consumers' values and can potentially yield long-term financial benefits
Learn more about federal government incentives here: brainly.com/question/14316209
#SPJ4
Jill is interested in a career as a paramedic. She is trained to use medical equipment, she remains calm under pressure, and she has good bedside manner. Which career pathway would best fit Jill’s interests and skills?
This question is incomplete because it lacks the appropriate options
Complete Question:
Jill is interested in a career as a paramedic. She is trained to use medical equipment, she remains calm under pressure, and she has good bedside manner. Which career pathway would best fit Jill’s interests and skills?
A. Security and Protective Services
B. Law Enforcement Services
C. Emergency and Fire Management Services
D. Correction Services
Answer:
c) Emergency and Fire Management Services
Explanation:
Emergency and Fire Management Services is a career path or occupation where personnels work to ensure that there is a prompt emergency response to incidents or accidents whereby the safety of human lives and properties are threatened.
Emergency and Fire Management services deal with the following incidents listed below:
a) Fire incidents
b) Car accidents
c) Medical emergencies
Staffs or Personnels that work in Emergency and Fire Management services:
a) Fire Fighters
b) Paramedics
Personnels who work with Emergency and Fire Management services should have the following traits or characteristics.
a) They must be calm regardless of any situations they are in
b) They must have the ability and training to use essential medical equipments.
c) They must have excellent people skills as well as good bedside manners.
d) They must possess the ability to work under intense pressure
e) They must possess the ability to calm victims of fire or car accidents
In the question above, the career pathway that is best for Jill based on the skills and interests that she possesses is a career pathway in Emergency and Fire Management Services.
Answer:
the person above me is right
Explanation:
which of these describe raw data?check all of the boxes that apply A) what a person buys B) where a person lives C) data that has been analyzed D) data that has not been analyzed
Given the formula
=IF(A1<10, "low", IF(A1<20, "middle", "high"))
If the value of A1 is 10, what will the formula return?
Answer: middle.
Explanation: It is not less than 10, so won't return low. It is less than 20, so answer is middle. If it were 20 or more
it would return the alternate "high"
How to hide location on iphone without them knowing?.
Go to the settings, go to location, go to do not share my location, unless its from an app, then go to the app in settings it should say share location click the sliding button make it look grey
Describe the consequences and implications of inadequate cyber security
Inadequate cyber security can have serious consequences and implications for individuals, businesses, and governments alike. For individuals, inadequate cyber security can result in identity theft, financial losses, and exposure of personal information.
For businesses, inadequate cyber security can lead to data breaches, reputational damage, financial losses, and even legal liability. Governments may also experience the loss of sensitive information and potential threats to national security. Additionally, inadequate cyber security can impact the broader economy by decreasing consumer confidence, decreasing investments, and creating instability in financial markets.
It can also undermine trust in critical infrastructure such as healthcare, transportation, and energy systems.
Learn more about cyber security: https://brainly.com/question/28004913
#SPJ11
a specific type of data stored for a record
options:
A. Table
B. Field
c. Cell
Answer:
Table
Explanation:
A set of data is stored in a table.
2015 POPULATION
6,341
8,863
1,057
6,839
9,362
7,459
2,382
613
5,533
71,474
126,427
38,640
54,792
Use the Microsoft Excel’s LEFT() function to extract the leading digits to create a new column, namely "Bins", with values from 1 to 9.
Use the COUNTIF() function to calculate the frequencies for each digit (i.e., the number of appearance for each "bin").
Convert frequencies to relative frequencies by dividing each frequency by the sum of all frequenci
Use =LEFT(A1,1) in B1 and copy down; use =COUNTIF(B:B,C1) in D1 and =D1/SUM(D:D) in E1, copy down to calculate frequencies and relative frequencies for the leading digit bins in the population data in column A.
How to extract leading digits and calculate frequencies in Excel for a population data set?Assuming that the population data is in column A, here are the steps to extract the leading digits and create a new column for "Bins":
In cell B1, enter the formula =LEFT(A1,1) and press Enter.
Copy the formula down to the rest of the cells in column B to extract the leading digit for each population value.
In cell C1, enter the value 1, and in cell C2, enter the formula =C1+1. Copy the formula down to the rest of the cells in column C to generate the values from 1 to 9.
Next, here are the steps to calculate the frequencies and relative frequencies:
In cell D1, enter the formula =COUNTIF(B:B,C1) to count the number of times the digit in column C appears in column B. Copy the formula down to the rest of the cells in column D to calculate the frequencies for each bin.
In cell E1, enter the formula =D1/SUM(D:D) to calculate the relative frequency for bin 1. Copy the formula down to the rest of the cells in column E to calculate the relative frequencies for all bins.
Note that the above formulas assume that the data starts in row 1. If the data starts in a different row, adjust the cell references accordingly.
Learn more about Bins.
brainly.com/question/24415267
#SPJ11
Here is the first line of a method declaration with some parts missing. public ________ scoreAnswer (studentAnswer ) Fill in the blanks in the method declaration using the following information: If scoreAnswer returns nothing and studentAnswer is a Paragraph object.
Answer:
void
Explanation:
The code snippet illustrates an object oriented programming (OOP)
From the question, the method name is scoreAnswer and it is not expected to return anything.
In OOP, when a method is expected to return nothing, the method is declared as void.
So, the blank will be replaced with the keyword void and the full statement is
public void scoreAnswer(studentAnswer)
How do I fix Java Lang StackOverflowError?
Answer:
A StackOverflowError in Java is usually caused by a recursive method that calls itself indefinitely or by an excessively deep call stack.
Explanation:
To fix this error, you can try the following:
Check your code for any recursive calls that may be causing the error and modify them to avoid infinite recursion.Increase the stack size of your JVM by adding the "-Xss" option when running your application. For example, you can use the command "java -Xss2m MyClass" to increase the stack size to 2MB.Simplify your code or optimize it to reduce the depth of the call stack.If none of the above solutions work, you may need to consider refactoring your code or using a different approach to solve the problem.You have two disks of the same make and model and wish to create redundant data storage. Which Windows feature would you use to accomplish this goal?
Disk Management is the Window's feature would you use to accomplish this goal.
Disk Management, what is that?Windows has a system program called Disk Management that gives you the ability to carry out complex storage chores. Disk management is useful for the following things, among others: Go to Initializing a new drive to learn how to set up a new drive. See Extend a basic volume for information on expanding a volume into space that is not currently occupied by another volume on the same drive.
Exactly how do I launch Disk Management?Select Disk Management from the context menu when you right-click (or long-press) the Start button to launch it. See Windows's Disk cleanup or Free up drive space if you need assistance with this task.
To know more about Disk Management visit
brainly.com/question/2742036
#SPJ4
Which type of word processing programs enables users to include illustrations within the program? A. popular B. widely used C. full featured D. advanced
Answer:
The answer is "Option C".
Explanation:
It is a comprehensive text processing platform, which allows people to download the picture to the program. This app supports different capabilities, allowing you to more sophisticatedly edit and format files. In this, Users can create, edit or print documents using this computer, that's why the full-featured choice is correct.
Answer:
C = full featured
Explanation:
on my icomfort thermostat we made it all the way to hook up the wi-fi but it tries but it will not go what do you do
Make sure your app is up to date and your mobile phone is within 3-5 feet of your thermostat. Restart your mobile device and turn off any apps that may enhance the security, including VPN's, GPS spoofers, etc. These can be turned on again once the connection of the thermostat is complete.
Define wi-fi?A wireless networking technology called Wi-Fi uses radio waves to deliver high-speed Internet access wirelessly. It's a frequent misperception that Wi-Fi stands for "wireless fidelity," although the acronym actually relates to IEEE 802.11x standards.Wi-Fi was the new technology's WECA moniker. (Wi-Fi is not an acronym for "wireless fidelity"; it was developed by a marketing company for WECA and selected for its catchy sound and resemblance to "hi-fi" [high-fidelity].Wi-Fi is more of a facility that provides smartphones, PCs, and other devices within a specific range with wireless Internet connection. On the other hand, computers communicate (send and receive information) through the Internet using the Internet Protocol.To learn more about wi-fi refer to:
https://brainly.com/question/19538224
#SPJ4
Q2-2) Answer the following two questions for the code given below: public class Square { public static void Main() { int num; string inputString: Console.WriteLine("Enter an integer"); inputString = C
The code given below is a basic C# program. This program takes an input integer from the user and computes its square. The program then outputs the result. There are two questions we need to answer about this program.
Question 1: What is the purpose of the program?The purpose of the program is to take an input integer from the user, compute its square, and output the result.
Question 2: What is the output of the program for the input 5?To find the output of the program for the input 5, we need to run the program and enter the input value. When we do this, the program computes the square of the input value and outputs the result. Here is what the output looks like:Enter an integer5The square of 5 is 25Therefore, the output of the program for the input 5 is "The square of 5 is 25".The code is given below:public class Square {public static void Main() {int num;string inputString;Console.WriteLine("Enter an integer");inputString = Console.ReadLine();num = Int32.Parse(inputString);Console.WriteLine("The square of " + num + " is " + (num * num));}}
To know more about output visit:
https://brainly.com/question/14227929
#SPJ11
All are database management systems programs except:
a) corel paradox
b) filemaker pro
c) microsoft database
d) spreadsheets
I wrote a Pong Project on CodeHs (Python) (turtle) and my code doesn't work can you guys help me:
#this part allows for the turtle to draw the paddles, ball, etc
import turtle
width = 800
height = 600
#this part will make the tittle screen
wn = turtle.Screen()
turtle.Screen("Pong Game")
wn.setup(width, height)
wn.bgcolor("black")
wn.tracer(0)
#this is the score
score_a = 0
score_b = 0
#this is the player 1 paddle
paddle_a = turtle.Turtle()
paddle_a.speed(0)
paddle_a.shape("square")
paddle_a.color("white")
paddle_a.shape.size(stretch_wid = 5, stretch_len = 1)
paddle_a.penup()
paddle_a.goto(-350, 0)
#this is the player 2 paddle
paddle_b = turtle.Turtle()
paddle_b.speed(0)
paddle_b.shape("square")
paddle_b.color("white")
paddle_b.shapesize(stretch_wid = 5, stretch_len = 1)
paddle_b.penup()
paddle_b.goto(350, 0)
#this is the ball
ball = turtle.Turtle()
ball.speed(0)
ball.shape("square")
ball.color("white")
ball.penup()
ball.goto(0, 0)
ball.dx = 2
ball.dy = -2
#Pen
pen = turtle.Turtle()
pen.speed(0)
pen.color("white")
pen.penup()
pen.hideturtle()
pen.goto(0, 260)
pen.write("Player A: 0 Player B: 0", align="center", font=("Courier", 24, "normal"))
#this is a really important code, this part makes it move players 1 and 2 paddles
def paddle_a_up():
y = paddle_a.ycor()
y += 20
paddle_a.sety(y)
def paddle_a_down():
y = paddle_a.ycor()
y -= 20
paddle_a.sety(y)
def paddle_b_up():
y = paddle_b.ycor()
y += 20
paddle_b.sety(y)
def paddle_b_down():
y = paddle_b.ycor()
y -= 20
paddle_b.sety(y)
#these are the controls for the paddles
wn.listen()
wn.onkeypress(paddle_a_up, "w")
wn.onkeypress(paddle_a_down, "s")
wn.onkeypress(paddle_b_up, "Up")
wn.onkeypress(paddle_b_down, "Down")
#this is the main game loop
while True:
wn.update()
#this will move the ball
ball.setx(ball.xcor() + ball.dx)
ball.sety(ball.ycor() + ball.dy)
#this is if the ball goes to the the other players score line
if ball.ycor() > 290:
ball.sety(290)
ball.dy *= -1
if ball.ycor() < -290:
ball.sety(-290)
ball.dy *= -1
if ball.xcor() > 390:
ball.goto(0, 0)
ball.dx *= -1
score_a += 1
pen.clear()
pen.write("Player A: {} Player B: {}".format(score_a, score_b), align="center", font=("Courier", 24, "normal"))
if ball.xcor() < -390:
ball.goto(0, 0)
ball.dx *= -1
score_b += 1
pen.clear()
pen.write("Player A: {} Player B: {}".format(score_a, score_b), align="center", font=("Courier", 24, "normal"))
# this makes the ball bounce off the paddles
if (ball.xcor() > 340 and ball.xcor() < 350) and (ball.ycor() < paddle_b.ycor() + 40 and ball.ycor() > paddle_b.ycor() - 40):
ball.setx(340)
ball.dx *= -1
if (ball.xcor() < -340 and ball.xcor() > -350) and (ball.ycor() < paddle_a.ycor() + 40 and ball.ycor() > paddle_a.ycor() - 40):
ball.setx(-340)
ball.dx *= -1
Answer:
Try this!
Explanation:
# This part allows for the turtle to draw the paddles, ball, etc
import turtle
width = 800
height = 600
# This part will make the title screen
wn = turtle.Screen()
wn.title("Pong Game")
wn.setup(width, height)
wn.bgcolor("black")
wn.tracer(0)
# This is the score
score_a = 0
score_b = 0
# This is the player 1 paddle
paddle_a = turtle.Turtle()
paddle_a.speed(0)
paddle_a.shape("square")
paddle_a.color("white")
paddle_a.shapesize(stretch_wid=5, stretch_len=1)
paddle_a.penup()
paddle_a.goto(-350, 0)
# This is the player 2 paddle
paddle_b = turtle.Turtle()
paddle_b.speed(0)
paddle_b.shape("square")
paddle_b.color("white")
paddle_b.shapesize(stretch_wid=5, stretch_len=1)
paddle_b.penup()
paddle_b.goto(350, 0)
# This is the ball
ball = turtle.Turtle()
ball.speed(0)
ball.shape("square")
ball.color("white")
ball.penup()
ball.goto(0, 0)
ball.dx = 2
ball.dy = -2
# Pen
pen = turtle.Turtle()
pen.speed(0)
pen.color("white")
pen.penup()
pen.hideturtle()
pen.goto(0, 260)
pen.write("Player A: 0 Player B: 0", align="center", font=("Courier", 24, "normal"))
# This is a really important code, this part makes it move players 1 and 2 paddles
def paddle_a_up():
y = paddle_a.ycor()
y += 20
paddle_a.sety(y)
def paddle_a_down():
y = paddle_a.ycor()
y -= 20
paddle_a.sety(y)
def paddle_b_up():
y = paddle_b.ycor()
y += 20
paddle_b.sety(y)
def paddle_b_down():
y = paddle_b.ycor()
y -= 20
paddle_b.sety(y)
# These are the controls for the paddles
wn.listen()
wn.onkeypress(paddle_a_up, "w")
wn.onkeypress(paddle_a_down, "s")
wn.onkeypress(paddle_b_up, "Up")
wn.onkeypress(paddle_b_down, "Down")
# This is the main game loop
while True:
wn.update()
# This will move the ball
ball.setx(ball.xcor() + ball.dx)
ball.sety(ball.ycor() + ball.dy)
# This is if the ball goes to the other player's score line
if ball.ycor() > 290:
ball.sety(290)
ball.dy *= -1
if ball.ycor() < -290:
ball.sety(-290)
ball.dy *= -1
Which of the following memory devices is volatile in nature?
A) magnetic disk
B) cache memory
C) erasable programmable read only memory (EPROM)
D) optical disk
B) The memory device that is volatile in nature among the options provided is cache memory.
Cache memory is a high-speed and relatively small memory unit that is located closer to the CPU. Its purpose is to store frequently accessed instructions and data for quick retrieval. However, cache memory is volatile, meaning that its contents are not retained when the power is turned off or lost. The data stored in cache memory is constantly changing based on the CPU's needs and is not meant for long-term storage.
In contrast, the other options listed are non-volatile memory devices:
Magnetic disk (option A) refers to hard disk drives (HDDs), which retain data even when power is turned off.
Erasable Programmable Read-Only Memory (EPROM) (option C) is a type of non-volatile memory that can be electrically programmed and erased.
Optical disk (option D) refers to storage media like CDs and DVDs, which are also non-volatile and retain data without the need for power.
Therefore, the correct answer is B) cache memory.
learn more about cache memory here:
https://brainly.com/question/29977825
#SPJ11
compared to individuals who are grieving for the loss of a loved one who died nonviolently, the process of mourning for families of murder victims lasts longer, is more intense, and is more complex.
The statement "Compared to individuals who are grieving for the loss of a loved one who died nonviolently, the process of mourning for families of murder victims lasts longer, is more intense, and is more complex" is a true statement because losing a family member due to violence is a tragedy that greatly affects the psychological condition of other family members.
Why do families of murder victims grieve for a longer period of time?Murder is a tragic event that causes pain and suffering not only to the family of the victim but also to the community. Because murder is an unexpected, abrupt, and violent death, families of murder victims are more likely to go through a longer and more complicated grieving process as compared to those who have lost a loved one through natural causes.
For many families, murder is an unbearable and unexpected tragedy that results in a wide range of emotions, such as shock, fear, anger, despair, and sadness. The senselessness and brutality of the death often lead to prolonged grief, and the families may be traumatized, and experience severe depression, and even post-traumatic stress disorder, all of which can prolong the mourning period.
To know more about post-traumatic stress disorder visit:
https://brainly.com/question/13097232
#SPJ11
Sora is preparing a presentation describing policies included in President Lyndon Johnson’s "Great Society” and wants to use a relevant online source.
Which source is the most relevant for the presentation?
a]-an interview with history students about the “Great Society”
b]-a photograph of Johnson making his “Great Society” speech
c]-a chart describing the conditions that led to the “Great Society”
d]-an audio recording of Johnson’s “Great Society” speech
Answer:
Option d) is correct
Explanation:
To prepare a presentation describing policies included in President Lyndon Johnson’s "Great Society”, the most relevant source that Sora should use is an audio recording of Johnson’s “Great Society” speech.
An audio recording of Johnson’s “Great Society” speech can give a more proper clarification and information regarding policies included in President Lyndon Johnson’s "Great Society”.
So,
Option d) is correct
Answer:
the answer is D
Explanation:
I just took the quiz :)
13.1.1 half pyramid write a program that fills half the canvas with circles in a diagonal formation. have tracy draw circles along the width of the canvas on the bottom row. have the number of circles decrease by 1 on each iteration until there is only 1 circle on the top row. follow these guidelines: - use a radius value of 25 pixels for all circles - create a variable called circle_amount that keeps track of how many circles should be in each row. hint: the bottom row should start with 8 circles!
The live demonstration below demonstrates how to pack an arbitrary number of balls into a pyramid using trigonometry.
Modify the NUM ROWS variable to change the number of tiers in the pyramid (and consequently the number of balls).
var canvas = document.getElementById('canvas');
canvas.width = 400;
canvas.height = 400;
var ctx = canvas.getContext('2d');
var balls = [];
var ballsLength = 15;
var Ball = function() {
this.x = 0;
this.y = 0;
this.radius = 10;
};
Ball.prototype.draw = function(x, y) {
this.x = x;
this.y = y;
ctx.fillStyle = '#333';
ctx.beginPath();
ctx.arc(this.x, this.y, this.radius, 0, Math.PI * 2, true);
ctx.fill();
ctx.closePath();
};
init();
function init() {
for (var i = 0; i < ballsLength; i++) {
balls.push(new Ball());
}
render();
}
function render() {
var NUM_ROWS = 5;
for (var i = 1; i <= NUM_ROWS; i++) {
for (var j = 0; j < i; j++) {
balls[i].draw(j * balls[0].radius * 2 + 150 - i * balls[0].radius, -(i * balls[0].radius * 2 * Math.sin(Math.PI / 3)) + 150);
}
}
//window.requestAnimationFrame(render);
}
Learn more about variable here-
https://brainly.com/question/18002997
#SPJ4
what is control structure write it's types .
Answer
Defination-:
A control statement is a statement and a statement whose execution its control.
Types-:
Selection StatementIteration StatementUnconditional branching Statementwhat is a communication protocols
Consider the following code:
x = 5 % 4
if (x == 1):
print (1)
elif (x == 2):
print (2)
elif (x == 3):
print (3)
else:
print (4)
What is output?
Answer:
1
Explanation:
The % (modulus) operator takes the remainder of the dividend when divided by the divisor. In this case, x = 1 since it is the remainder of 5 ÷ 4. Since x satisfies the condition of the first if-statement (x == 1), 1 is the output of this code.
Hope this helps :)