Answer:
public class TestSoccerPlayer {
public static void main(String[] args) {
SoccerPlayer playerOne = new SoccerPlayer("Rinco",9,16,22);
System.out.println("The player of the season is "+playerOne.getName()+" His Jessey Number is "+playerOne.getJerseyNum()
+" In the 2019/2020 season he scored and total of "+playerOne.getGoalsScored()+" and "+
playerOne.getAssists()+" Asists");
}
}
See the SoccerPlayer class with the feilds and methods (constructor, getter and setters) in the explanation section
Explanation:
public class SoccerPlayer {
private String name;
private int jerseyNum;
private int goalsScored;
private int assists;
public SoccerPlayer(String name, int jerseyNum, int goalsScored, int assists) {
this.name = name;
this.jerseyNum = jerseyNum;
this.goalsScored = goalsScored;
this.assists = assists;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getJerseyNum() {
return jerseyNum;
}
public void setJerseyNum(int jerseyNum) {
this.jerseyNum = jerseyNum;
}
public int getGoalsScored() {
return goalsScored;
}
public void setGoalsScored(int goalsScored) {
this.goalsScored = goalsScored;
}
public int getAssists() {
return assists;
}
public void setAssists(int assists) {
this.assists = assists;
}
}
Answer:
a. Availability of software licensing
Explanation:
With feasibility analysis, we take into consideration economic, technical, legal, and scheduling factors to make sure that our project completes successfully. Acquiring license for a software can be free of cost or paid subscription. So a business analyst needs to make an account of the cost of accessing the software services. Also while automating a software installation process, it would require automatic authentication which would again require details of licensing. So in my best knowledge, analyzing availability of software licensing is a must and foremost step for a feasibility study.
c) Which type of graph will be suitable for representing only gold medals information? (2 marks)
d) In which column(s) might replication have been used?
(2 marks)
e) What Excel formula can be used to calculate the overall total medals awarded? (3 marks)
14) Write the Excel functions for the following: (5 Marks each)
a. Give the total number of medals for Germany and Great Britain.
b. Give the average number of silver medals for a European country,
c. Sum the Medals Total for Gold for those countries with less than 20 games involvement.
d. Search the database (the whole spreadsheet) to find ‘Italy’ and also the corresponding Medals Total.
Answer:
a) highlight row F by clicking on F, go to toolbar at top undar DATA click filter, you will see an arrow next to F now, click the dropdown on the arrow and sort
Explanation:
Answer:
A. HTTPS
Explanation:
Default HTTP port is 80. This means that the server request is received on port 80. But default HTTP request is susceptible to interception. In order to prevent it, HTTP communication is secured using SSL encryption (HTTPS protocol). In this case the Url string begins with 'https://' which differentiates it from normal web request. The default port used for HTTPS service is 443 instead of 80.
Answer:
nooooooo
Explanation:
The advantages and the disadvantages of the communication with the used of the technology are: Quickly communicate and the lack of privacy.
The term communication refers to the exchange of thoughts, ideas, and messages that are shared between two or more people. Without language, a person can survive, but without communication, no one can survive. Communication is divided into two categories, such as interpersonal and intrapersonal.
Advantages of the communication with the used of the technology are:
Disadvantages of the communication with the used of the technology are:
Hence, the significance of the communication are the aforementioned.
Learn more about on communication, here:
#SPJ2
Answer:
ADVANTAGES:
First, the evolution of technology is beneficial to humans for several reasons. At the medical level, technology can help treat more sick people and consequently save many lives and combat very harmful viruses and bacteria.
2-Technology has also increased the productivity of almost every industry in the world. Thanks to technology, we can even pay with bitcoins instead of using banks
DISADVANTAGES:
1-Lack of Privacy. You might think that a quick text or IM offers more privacy than a telephone call in a crowded room. ...
2-Distraction from Real Life. ...
3-Potential for Misunderstanding. ...
4-Decline of Grammar and Spelling...
5- Near people are far and far people are near through communication technology. we have no time to sit with our relatives but constantly communicate far away people . I think this is biggest disadvantage
Explanation: