Answer:
I think, project execution. He is writing the requirements document. which mean it doesn't project closure and initiation. then he did it which mean it doesn't project planning.
Edhesive 11.1 lesson practice please
Answer:
1. Bits
2. Bitrate
3. The amount of time it takes for bits to travel from one place to another.
4. Used to send bits wirelessly.
5. Cables that carry light and dramatically increase the speed and accuracy of information over the internet.
6. 8
7. The number of bits per second a system can transmit.
Explanation:
hey lol
In this exercise we have to use the knowledge in computational language in java to write the code.
This code can be found in the attached image.
So we have the code in a simpler way like:
public class Person{
private String firstName,lastName;
public Person(String first,String last)
{
firstName=first;lastName=last;
}
public int throwDisc(int pow)
{
if(pow<1){pow=1;}if(pow>10){pow=10;
}
return pow*2;
}
public String toString(){return lastName+", "+firstName;
}
}
public class Coach extends Person{
private String role;
public Coach(String first,String last,String rol)
{
super(first,last);role=rol;
}
public String toString(){return super.toString()+"\n Role: "+role;
}
}
import java.util.*;
public class UltimateTeam
{
private ArrayList<UltimatePlayer> players=new ArrayList<UltimatePlayer>();
private ArrayList<Coach> coaches=new ArrayList<Coach>();
public UltimateTeam(ArrayList<UltimatePlayer> p,ArrayList<Coach> c)
{
for(UltimatePlayer up:p){players.add(up);}for(Coach co:c)
{
coaches.add(co);
}
}public String getCutters()
{
String list="";for(UltimatePlayer p:players){if(p.getPosition().contains("cutter")){list+=p.toString()+"\n";}}return list;
}
public String getHandlers()
{
String list="";for(UltimatePlayer p:players){if(p.getPosition().contains("handler")){list+=p.toString()+"\n";}}return list;
}
public String toString()
{
String list="COACHES\n";for(Coach c:coaches)
{
list+=c.toString()+"\n";
}
list+="\nPLAYERS\n";for(UltimatePlayer p:players)
{
list+=p.toString()+"\n";
}return list;
}
}
public class Captain extends UltimatePlayer
{
private boolean type;
public Captain(String f,String l,String p,boolean t){super(f,l,p);
type=t;
}
public int throwDisc(int pow)
{
if(pow<1){pow=1;}if(pow>10)
{
pow=10;
}
return pow*5;
}
public boolean getType()
{
return type;
}
public String toString()
{
String off="";if(getType())
{
off="offense";
}
else{off="defense";
}
return super.toString()+"\n Captain: "+off;
}
}
public class UltimatePlayer extends Person
{
private int jerseyNumber=-1;
private static int id=0;
private String position="";
public UltimatePlayer(String f,String l,String p)
{
super(f,l);
if(p.contains("cutter"))
{
position="cutter";
}
else
{
position="handler";
}
id++;
jerseyNumber=id;
}
public String getPosition()
{
return position
}
public int throwDisc(int pow)
{
if(pow<1){pow=1;
}
if(pow>10){pow=10;
}
return pow*4;
}
public String toString()
{
return super.toString()+"\n Jersey #: "+jerseyNumber+"\n Position: "+position;
}
}
See more about JAVA at brainly.com/question/12975450
How do i fix this to make it run ???
class Main {
public static void main(String[] args) {
// Length and sides.
Cube shape1 = new Cube(5, 6);
HalfSquare shape3 = new HalfSquare(4, 20, 4, 5);
// Cluster of print statements to deliver stats about the shape.
// Shape 1
System.out.println(shape1.toString());
System.out.println("");
System.out.println(shape1.toStringCube());
System.out.println("");
// Shape 2
System.out.println("");
System.out.println(shape3.toString());
System.out.println("");
System.out.println(shape3.toStringHalfSquare());
}
}
// Main Class
class Shapes {
private int sidesNum;
// Constructors, Mutators, and Accessors
public Shapes(int SN){
setSidesNum(SN);
}
public void setSidesNum(int value){
this.sidesNum = value;
return;
}
public int sideNumber(){
return this.sidesNum;
}
// shapes, shapes, and more shapes
public String toString() {
return " This shape has: " + sideNumber() + " sides.";
}
}
class Cube extends Shapes{
private int volume;
// Constructors, Mutators, and Accessors
public Cube(int Vol, int SN){
super(SN);
setVolume(Vol);
}
public void setVolume(int value){
this.volume = value;
return;
}
public int getVolume(){
return this.volume;
}
public String toStringCube() {
return " " + "Volume of a cube = " + Math.pow(getVolume(), 3 ) + " squared. Surface area = " + Math.pow(getVolume(), 2) * sideNumber() + " units2.";
}
}
class HalfSquare extends Shapes{
private int length;
private int width;
private int height;
// Constructors, Mutators, and Accessors
public HalfSquare(int lngh, int hght, int wdt, int SN){
super(SN);
setLength(lngh);
setHeight(hght);
setWidth(wdt);
}
public void setLength(int value5){
this.length = value5;
return;
}
public void setWidth(int value6){
this.width = value6;
return;
}
public void setHeight(int value7){
this.height = value7;
return;
}
public int getLength(){
return this.length;
}
public int getWidth(){
return this.width;
}
public int getHeight(){
return this.height;
}
public String toStringhalfSquare() {
double hypot = (Math.sqrt((getLength() * getLength()) + (getHeight() * getHeight())));
return "The volume of a prism = " + (getLength() * getWidth() * getHeight()) * .5 + " squared. The hypotenuse = " + hypot + ", The surface area =" + ((getLength() * getHeight()) + (hypot * getWidth()) + getHeight() * getWidth() ) + " units2";
}
}
Explanation:
Ask a professional
Edhesive 8.3 lesson practice pls help
Answer:
String data type
Explanation:
See attachment for complete question
Required
Data type in stuff
On line 1 of the program, stuff is initialized as an empty list.
Line 2 to line 4; some elements are appended into stuff list
These elements are written in quotes
In programming, when an expression is written in quotes, such expressions are referred to as strings.
Hence, the elements stored in stuff are string datatypes
The data types in the elements "stuff" are string datatypes
What is strings data type?String data type are data types in programming which is used when an expression is written in quotes(" ").
What is programming?Programming can be defined as process of building or designing a computer program. It involves building computer instructions or algorithm and the use of the instructions to perform a particular task.
There are different types of programming language:
JavaJavaScriptPHPSQLpythonRubySwiftLearn more about programming:
https://brainly.com/question/16397886
Edhesive 11.4 code practice
Answer:
<!DOCTYPE html>
<html>
<body>
<h2>Billboard Hot 100 Songs 1980</h2>
<p>1. Blondie - “Call Me“</p>
<h2>Billboard Hot R&B/Hip-Hop Songs 1980</h2>
<p>1. Michael Jackson - “Rock with You“</p>
<h2>Billboard Hot Country Songs 1980</h2>
<p>1. Kenny Rogers - “Coward of the County”</p>
</body>
</html>
Mainly for edhesive users
100% on edhesive code practice 11.4
Why do we use compliment method?
Answer:
uh to be respectful and help give people some positive feelings ?
Answer:
In mathematics and computing, the method of complements is a technique to encode a symmetric range of positive and negative integers in a way that they can use the same algorithm (hardware) for addition throughout the whole range. ... Thus subtraction of any number is implemented by adding its complement.
PLSSSSS HELPP!! Tropical rainforests are home to many kinds of birds, including parrots, toucans and eagles. Each different species of birds rely on different organisms as food sources. How does this help the birds survive in the rainforest?
A.It allows different birds to reproduce more often.
B.It allows different birds to escape from predators.
C.It reduces competition between different bird species.
D.It allows different birds to build better nests.
Answer:
C I believe
Explanation:
What does a touch ring allow an artist to do on an a digital tablet
Which of these is a type of array .
( library , file , index , tulle )?
Answer:
index
Explanation:
i want to learn i am not sure
Which of these examples demonstrate portfolio income?
Answer:
Explanation:
is money that describe when a car house is sold
Can someone tell me which key is the num lock
Nicole is in a study group to prepare for a test on plant biology, a subject she knows a lot about. During their meetings, she always comes prepared, helps other students, does most of the talking, and handles all of the tasks.
What does Nicole need to do to make the study group more effective?
come better prepared and offer relevant information
let other students participate more and share the workload
share more of her opinions and answer questions
keep her thoughts to herself and let others do all the talking
Answer:
let other students participate more and share the workload
Explanation:
Answer:
The person above me is right, give them brainliest please
Explanation:
Got it right on Edge, have a good day~
PLTW activity 2.1.5 PLEASE HELP I NEED STEP 5
FAKE ANSWER WILL NOT BE GIVEN POINTS
Answer:
Computing is any goal-oriented activity requiring, benefiting from, or creating computing machinery. It includes the study and experimentation of algorithmic processes and development of both hardware and software. It has scientific, engineering, mathematical, technological and social aspects.
Hope it helps uwhat is the output of this line of code
print("hello" + "goodbye")
A - "hello" + "goodbye"
B- hello + goodbye
C - hello goodbye
D - hellogoodbye
Answer:
D - hellogoodbye
Explanation:
since your merging two string together you will simply just get one string in total
Answer:
D
Explanation:
List three features of the third generation of computers
Explanation:
Features:
1.They were small and efficient than previous generation.
2.They use integrated circuits as main electronic circuit.
3.The operating speed was increased unto nano seconds.
Hope it helps and have a good day.
11.5 Code Practice edhesive
In this code practice, we will continue to employ W3Schools tools to practice writing HTML. You should have already read through the tutorials for the four HTML topics below, found in Lesson 11.5. Now, complete the exercises linked below for each topic. Once you complete these exercises, move onto the next set of instructions below.
HTML Styles (Links to an external site.)
HTML Formatting (Links to an external site.)
HTML CSS (Links to an external site.)
HTML Links (Links to an external site.)
Create a web page that has two paragraphs. One of the paragraphs should be aligned to the center and have red text. The other paragraph should be aligned to the right and be in italics. Refer to the sample below for clarification.
11.5 Code Practice example
Your program should begin and end with the following tags:
# Insert your code here!
In the programming environment, you will notice that once you type one tag (for example, the html opening tag), the environment automatically populates the closing tag for you. Be careful not to double up on closing tags, otherwise your HTML will not run.
As you write your web page, you can click the "Run Code" button to view it in real time.
I really don't understand how to do this?
Answer:
<html>
<body>
<p style="text-align:center;color:red;">This is a paragraph.</p>
<p style="text-align:right;color:red;">This is a paragraph.</p>
<p><i> This text is italic</i></p>
</body>
</html>
Explanation:
i got a 100%
n this exercise we have to use the knowledge in computational language in HTML to write the following code:
We have the code can be found in the attached image.
So in an easier way we have that the code is
<html>
<body>
<p style="text-align:center;color:red;">This is a paragraph.</p>
<p style="text-align:right;color:red;">This is a paragraph.</p>
<p><i> This text is italic</i></p>
</body>
</html>
See more about HTML at brainly.com/question/15093505
Help!!!
I don't know how to do this problem....
Like
NOTHING
This is all I have right now
```
def findCharacteristic(choice, edges):
edges = edges.replace(" ","")
vertices = edges
max = 0
for char in vertices:
if int(char) >max:
max = int(char)
print (max)
x = [[0]*max]*max
print(x)
if __name__ == '__m
```
Answer:
ummmm try the inequality protragathron theorum
Explanation:
ok
The purpose of project management is _____. executing a requirement improvement working toward a common goal completing a project
Answer:
working toward a common goal.
Explanation:
Project management can be defined as the process of designing, planning, developing, leading and execution of a project plan or activities using a set of skills, tools, knowledge, techniques and experience to achieve the set goals and objectives of creating a unique product or service.
Generally, projects are considered to be temporary because they usually have a start-time and an end-time to complete, execute or implement a project plan.
Furthermore, the main purpose of project management is working toward a common goal.
This ultimately implies that, project managers should ensure adequate attention and time is taken to identify, analyze and manage capital, raw materials, people, system of tasks and other resources, so as to effectively and efficiently achieve a common goal with all project stakeholders.
The fundamentals of Project Management which are universal across all fields and businesses includes;
1. Project initiation.
2. Project planning.
3. Project execution.
4. Monitoring and controlling of the project.
5. Adapting and closure of project.
In conclusion, it is very important and essential that project managers in various organizations, businesses and professions adopt the aforementioned fundamentals in order to successfully achieve their aim, objectives and goals set for a project.
and, or, not are examples of boolean logic
true a example boolean logic is (and, or, and not)
-scav
I'm playing robl.
ox right now add me as a friend and we can play together if u want
Name: aftonfam_rules
I'll add you later! btw do you play gach a onli ne? My user name is Wolfie
_
Rolbox
HD
If you know javascript...plz help me
Having trouble using "\" to ecape
first pic is instructions...second is what i have...
Answer:
if you mean escape there is to be a button at the top of your keyboard either saying esc or escape
Nicole is in a study group to prepare for a test on plant biology, a subject she knows a lot about. During their meetings, she always comes prepared, helps other students, does most of the talking, and handles all of the tasks. What does Nicole need to do to make the study group more effective? come better prepared and offer relevant information let other students participate more and share the workload share more of her opinions and answer questions keep her thoughts to herself and let others do all the talking
Answer:
B
Explanation
Let other students participate more and share the workload.
Have a good day everyone!
Answer:
let other students participate more and share the workload
Explanation:
If the cell to the right of the cell you are typing in is ________, the data can "bleed" over that cell.
A. Full
B. Numerical
C. Empty
D. Formatted
**ATTENTION** If you send me a file, or a link for something to download your answer will be reported. Please answer through text. Thank you!
Top-down programming divides a very large or complex programming task into smaller, more manageable chunks.
true
false
Answer:
A
Explanation:
Top-down is a programming style, the mainstay of traditional procedural languages, in which design begins by specifying complex pieces and then dividing them into successively smaller pieces.
Answer:
True
Explanation:
WHATS A Video editor
Answer:
A video editor is involved in video production and the post-production of film making. ... Video editors usually use non-linear editing software to accomplish the task of editing. A video editor is a technically inclined individual that makes creative video editing decisions
A software that edits videos.
Some examples are: Capcut, Video star, and Filmora.
More advanced applications may cost money
Who created and unleashed the Morris Worm on the internet, which was mishandled and resulted in the first felony conviction in the United States under the Computer Fraud and Abuse Act?
Answer:
Robert Morris received the first conviction for a cyber crime under what. the computer fraud and abuse act of 1986. Upgrade to ... A virus/ worm developed by the US and Israel and UK .
Need answer ASAP. Plz
-Infinity ⇒ NEGATIVE_INFINITY
Infinity ⇒ POSITIVE_INFINITY
1.7...e+308 ⇒MAX_VALUE
5e-324 ⇒ MIN_VALUE
if and if else check for a condition, these are known as
Answer:
i think its conditional statements
but im not sure though
Which physical force is most easily compared to voltage?
inertia
friction
heat
gravity
Answer: A
Explanation:
Voltage is the electrical force that causes free electrons to move from one atom to another. Just as water needs some pressure to force it through a pipe, electrical current needs some force to make it flow. ... Voltage is sometimes referred to as the measure of a potential difference between two points along a conductor.
Need the answer ASAP. Thanks
Answer:
join
Explanation:
The Scratch blocks are organized into 9 color-coded categories. Select all that apply.
Question 14 options:
Motion
Control
Group
Stack
Operators
Events
Sound
Loop
Looks
More Blocks
Data
Sensing