Answer: Player(String playerName)
Explanation:
A constructor is a code block of a class. It is always witnessed when a new instance of the class is created
In JAVA , a valid constructor header is given as " CLASS (parameter)"
here, Class → Player
parameter → player name (which is a string)
So, a valid constructor header for the Player class that accepts the player name as a parameter: Player(String playerName)
When an "is a" relationship exists between objects, it means that the specialized object has Group of answer choices Some of the characteristics of the general object, but not all Some of the characteristics of the general class, but not all, plus additional characteristics None of the characteristics of the general object All the characteristics of the general object, plus additional characteristics
Answer:
All the characteristics of the general object, plus additional characteristics
Explanation:
In case when an is a relationship exists between objects. Here is a relationship refers to a relationship in which there is a reference of one class to another class.
So this represent that the specialized object contains all the attributes of a general object along with it it also involved the extra attributes
Hence, the last option is correct
Case-Based Critical Thinking
Ryan is creating a website for an automobile company. He wants to include media files on the web page and make the page appealing to the viewers. 43. Ryan wants a particular embedded media clip to automatically restart when it has finished playing. Which of the following HTML audio and video element attributes must Ryan include in his code to accomplish this?
a. src.
b. loop.
c. controls.
s. preload.
Answer:
B. Loop
Explanation:
The use of loop which is a boolean attribute in HTML is an instruction that specifies a replay of the video once it has ended. It is inputted in this format;
<video controls loop>
<source src="dance.mp4" type=video/mp4">
</video>
To add a video to the HTML web page, the <iframe> element is used. the source would also indicate the video URL. The specification of the dimensions, that is the height and width of the video are also written. The code is now closed with the </iframe> element.
Write the steps to create labels in OpenOffice writer
1. Start up Open Office.Org.
2. Click on File >> New >> Labels.
3. In the label dialog box, click on the brand box. This will allow you to choose the type of paper that you use.
4. Select the type of document that you want. The usual standard is Avery, but feel free to explore and discover what you like.
5. Select if you want a single label, a document, and any other options. Some of the things you might want to do are:
- Create a variety of labels for folders or drawers
- Create a sheet of address labels
- Create decorative labels
6. Click New Document. Here, you see a sheet of blank labels.
7. Create the type of format/placement that you want for your labels. Once you are happy with it, copy it to the rest of the labels.
8. Fill your labels with necessary information.
9. Print them out.
A company has a network printer that is utilzed by several departments. Although the printer shows online and other departments can access the printer, the accounting group is unable to print to this network printer. Which of the following would the technician use to resolve the problem?
a. The printer needs a maintenance kit repalced.
b. The TCP/IP print spooler service need to be restarted.
c. The security settings for the print spooler need to be modified to include the department.
d. Replace the network cable on the printer
Answer: c. The security settings for the print spooler need to be modified to include the department.
Explanation:
The print spooler makes Windows computer enable to interact with the printer, and to commands the printer for print jobs .
If all the other departments can access the printer, but not the accounting group, then the technician should check the security settings for the print spooler and modify it accordingly to include the accounting group .
Hence, the correct answer is c. The security settings for the print spooler need to be modified to include the department.
Write a function, sublist, that takes in a list of numbers as the parameter. In the function, use a while loop to return a sublist of the input list. The sublist should contain the same values of the original list up until it reaches the number 5 (it should not contain the number 5).
Answer:
Following are the code to this question:
def sublist(l):#defining a method list sublist that accepts a list
val=[]#defining an empty list
x=0#defining x variable that store value 0
while(x<len(l)):#defining loop that check x is lessthen list length
if(l[x]==5):#defining if block that checks list value equal to 5
break#using break keyword
val.append(l[x])#add value in val list
x+= 1#increment the value of x variable by 1
return val#return val
l=[3,4,7,8,5,3,2]#defining list l
print(sublist(l))#using print method to call sublist method
Output:
[3, 4, 7, 8]
Explanation:
In the above python code, a method "sublist" is declared that accepts a list, inside the method an empty list "val" and an integer variable x is defined that stores "0" value. In the method, a while loop is declared that checks list length and define if block to checklist element value equal to "5". which the condition is true it will return before values. In the last step, a list "l" is declared that holds value and used the print method to call sublist to prints its return value.Eliza needs to share contact information with another user, but she wants to include only certain information in the
contact. What is the easiest way for her to achieve this?
A. Use the Edit Business Card dialog box to control the information included.
B. Export only select fields from the contact.
C. Save the contact as a VCF file.
D. Share your contacts foler with other user.
Answer:
A. Use the Edit Business Card dialog box to control the information included.
Explanation:
b was incorrect but A is correct on edge 2020 I did the unit test review
Using the Edit Business Card dialog box to control the information included is the easiest way for her to achieve this. Thus option A is correct.
What is information?Knowledge acquired by study, discussion, research, or education is referred to as information. Data is, in essence, the outcome of the data analysis and interpretation process. Info is the interpretation of those elements of knowledge, whereas data is the particular measurements, figures, or diagrams.
She can do this most easily while using the Edit Business Card Combobox to modify the material included. When you get a new email, a meeting submission, or a task plea, a notification called a pc alert flashes up on your computer. Desktop Alerts are on by default.
Depending on the product on the content you get in your Outlook, a Desktop Alert may or may not display certain information. Therefore, option A is the correct option.
Learn more about information, Here:
https://brainly.com/question/13629038
#SPJ5
You are a technician working for a large company and you notice a user has left a Post-it note attached to her monitor of a new password that she was just given. What should the technician do
Explanation:
When you notice that a user has left a Post-it note attached to her monitor of a new password that she was just given, you should immediately inform this to your senior authority. As this is potent sign of virus or malware threat to the system.
_____ should be scanned for viruses
Answer:
Computers/laptops should be scanned for viruses.
Your question has been heard loud and clear.
People's blood , the plasma in the people's blood should be scanned for viruses.
Thank you owo
Using a material on the internet for your assignment without acknowledging the source is known as A. Plagiarism B. Piracy C. Ethical D. Copyright
Answer:
A. Plagiarism
Explanation:
Plagiarism is simply the act of representing an author's thoughts , ideas , expression , writings as one's own.
Gregor installed a third stick of known-good RAM into his Core i7 system, bringing the total amount of RAM up to 3 GB. Within a few days, though, he started having random lockups and reboots, especially when doing memory intensive tasks such as gaming. What is most likely the problem
Answer:
The speed or quality was different.
Explanation:
The new ram that he installed most likely had a different rate, or was a different quality than the old ram.
If you have a 3D printer please show me a vid of you making something because I'm interested in getting one. Ty! Also can someone show me how to put more points in a question that I ask on Brainly?
Explanation:
Too add more points on your brainly question(phone), type your question
Then, see on your top left, you can see the points. It will show 10,which means you have to lose 10 points which is the minimum points for one question. If you are generous to give more points, click on it the you can scroll till the maximum point which is 100..but each points you give will divide 2.
For example, you just loose 10 points for your question but I only got 5 points
Hope you understand this
I'm not sure with laptop
HAVE A GOOD DAY!
You work in the Accounting department and have been using a network drive to post Excel workbook files to your file server as you complete them. When you attempt to save a workbook file to the drive, you see the error message: "You do not have access to the folder 'J:\'. See your administrator for access to this folder." What should you do first
Answer:
The answer is: Saving the workbook to another available drive or a flash drive to protect data, then contact with the system administrator to get access to the J folder.
Explanation:
Identify the statement below which is true. Cloud computing eliminates the need for companies to own their own software and servers. Cloud computing is a control technique for system availability. Cloud computing eliminates the need for backup of applications and data. Cloud computing refers to the practice of storing application files and backup data on satellites "in the clouds."
Answer:
The answer is "Cloud computing is a control technique for system availability".
Explanation:
The term cloud computing provides on-demand computer network services, which including storing data (information) and computing resources, without client-specific active management. Its definition is often used to identify network infrastructure for several web users, that's why the above choice is a correct and wrong choice can be described as follows:
It also needs in businesses with using their apps and servers but can't be removed, that's why it is wrong It does n't only one the satellites, that's why it is wrong It is used for storing data not for removing, that's why it is wrong.Write a pseudocode algorithm which inputs numeric scores and outputs how many of them are over 100. The end of the data is signalled by a user input of -1.
Answer:
calculateCountGreaterThan100()
{
declare variable count with zero
while True
{
input numeric values from user
if user inputted value > 100
increment the count
if user inputted value == -1
break the loop
}
print the value of count
}
Explanation:
First of all, let us have a look at the meaning of a pseudocode:
A pseudocode is nothing but a informative way of expressing our code in simple plain English.
It is not written in programming language so it does not have any syntax rules.
Here, we are asked to write pseudocode algorithm for inputting numeric scores and output the number how many of them are greater than 100. The end of numbers is signalled by a user input of -1.
The answer is:
calculateCountGreaterThan100()
{
declare variable count with zero
while True
{
input numeric values from user
if user inputted value > 100
increment the count
if user inputted value == -1
break the loop
}
print the value of count
}
Here, we have declared a variable with initial count as 0.
Then, in a loop we are taking input from user in which user is giving integer input.
If the value is greater then zero, the count is incremented.
If the value is -1, we come out of the loop and then print the count value.
Pseudocode algorithm are algorithms that are implemented using pseudocodes, and it does not obey the syntax of a programming language.
The Pseudocode algorithmThe pseudocode algorithm is as follows:
count = 0
input num
while num != -1:
if num > 100:
count++
print(count)
The flowThe flow of the above pseudocode algorithm is as follows
First, variable count is initialized to 0Next, we take input for numNext, a loop is repeated until the input is -1During each loop, the inputs over 100 are countedLastly, the count of inputs greater than 100 is printedRead more about pseudocode algorithm at:
https://brainly.com/question/11623795
Paavo was reviewing a request by an executive for a new subnotebook computer. The executive said that he wanted USB OTG support and asked Paavo’s opinion regarding its security. What would Paavo tell him about USB OTG security
Answer:
Connecting a mobile device as a peripheral to an infected computer could allow malware to be sent to that device.
Explanation:
Since in the question it is mentioned that Paavo reviewed a request by an executive for subnotebook computer i.e new. but he needs to USB OTG support so it is a USB i.e on the go that links the devices from one device to another
Therefore by links the mobile device to the computer i.e infected that allows malware we called virus so that we are able to send it to that device. By this, he wants to tell about the USB OTG security
What number system do people in America use?
Answer:
Base-10 (decimal)
Explanation:
What is a path and how do you know that it is filled and selected
Explanation:
A path represents a selected editing area of an image, this feature is typically available when using Adobe Photoshop software.
For example, a photographer may select the entire face area of his subject as his path (work path). To know when it is filled the photographer observes to see when the colour changes or other changes are applied to the background layer of the selected path.
Which method would be the BEST to protect security information and event management (SIEM) log data at rest from tampering by authorized users?A. Access control lists (ACLs) on log data drivesB. Deployment of write once read many (WORM) drivesC. Disk encryption using hardware security modules (HSM) on log data drivesD. Implementing the principle of least privilege on log data drives
Answer:
Option B (Deployment of write once read many (WORM) drives) is the appropriate one.
Explanation:
SIEM application goods/services consolidate safety information management (SIM) with security event management (SEM) throughout the area of device protection. We include an overview including its known vulnerabilities created by users and network equipment in actual environments.No quantity of administrative intervention will alter the substance on something like a WORM disc, even by physical disc disruption or failure. That would be the better-suggested choice.Chapter 21 discusses four aspects of the speaking situation you should take into account when planning the graphics you'll use in an oral presentation including the length of the presentation, the size and layout of the room, and the available equipment. What is the last aspect?
Answer:
The answer is "audience aptitude and experience "
Explanation:
The presentation is the ability to provide a variety of audiences with successful and stimulating interactions. The main objective of an oral presentation is to talk formally to a live audience about a particular subject. You have to write an oral speech that engages the audience and fulfills your goals.
In this type of presentation, the Listener-centric concept is effective as the productivity of a speaker is enhanced by creating and presenting the speech throughout the proper manner.
Which of the following statements are true? Select one or more: a. A socket is a kind of opening. b. A socket represents one endpoint of a network connection. c. A program uses a socket to communicate with another program over the network. d. Data written by a program to the socket at one end of the connection is transmitted to the socket on the other end of the connection, where it can be read by the program at that end.
Answer:
a. A socket is a kind of opening.
b. A socket represents one endpoint of a network connection.
c. A program uses a socket to communicate with another program over the network.
d. Data written by a program to the socket at one end of the connection is transmitted to the socket on the other end of the connection, where it can be read by the program at that end.
Explanation:
A socket is an endpoint in the network node of a computer network that serves the role of sending and receiving data written by a program across the network. The application programming interface specifies the attributes of a socket, through the socket descriptor. The socket address serves the purpose of making the socket identifiable by other hosts.
The socket address consists of the transport protocol, IP address, and port number. Just like a port serves as the endpoint in hardware, so does the socket also function as an endpoint in a network connection.
Do you know best way to know WiFi password which you are connected to?
Answer:
Download a wifi password saver on playstore or appstore
Explanation:
Answer:
Ask the person who set up the wifi router.
Look behind the wifi box and there should be a small sticker that says the password.
Call the wifi provider and say you forgot your wifi password
Reset your password using your account.
Asia pacific and Japanese sales team from cloud kicks have requested separate report folders for each region.The VP of sales needs one place to find the reports and still wants to retain visibility of the reports in each folder. What should a consultant recommended to meet this requirement.
Answer:
B) Create all new regional folders and move the reports to the respective region folder with viewer access.
Explanation:
Below are the options
A) Create grouped folders, keeping the top region folder sharing settings and limiting the sharing settings for the grouped folders for each region.
B) Create all new regional folders and move the reports to the respective region folder with viewer access.
C) Create all new regional folders and move the reports to the respective region folder with subscribe access.
D) Create subfolders, keeping the top region folder sharing settings and limiting the sharing settings for the subfolders for each region
In order to required reports at one place and also wants to retain the visibility for each folder the consultant should suggest that all new regional folders should be created and afterwards it would be moved to their relevant region folders by involving the viewer access feature so that the VP should access it anytime
Hence, the correct option is B.
Based on the information given, the correct option will be B. Create all new regional folders and move the reports to the respective region folder with viewer access.
From the information given, it was stated that the VP of sales needs one place to find the reports and still wants to retain visibility of the reports in each folder.
Therefore, it's important to create all new regional folders and move the reports to the respective region folder with viewer access.
Learn more about folders on:
https://brainly.com/question/20262915
Importance of taking correct body measurement....
Taking correct body measurements is of key importance especially to models and future models. So that they remember about the leftover weight in their body from thanksgiving , now when they take correct body measurements , they are aware and will counter such things to be better.
Administrator access initiative brings together people from industry, disability organizations, government, and research labs from around the world to develop guidelines and resources to help make the Web accessible to people with disabilities including auditory, cognitive, neurological, physical, speech, and visual disabilities.
a) true
b) false
Answer:
False.
Explanation:
Web Accessibility Initiative (WAI) brings together people from industry, disability organizations, government, and research labs from around the world to develop guidelines and resources to help make the Web accessible to people with disabilities including auditory, cognitive, neurological, physical, speech, and visual disabilities.
It is one of the features of the World Wide Web Consortium (W3C) develiped in 1997 and is aimed at developing standards and support materials to assist in understanding and implementing accessibility for users with disabilities.
Word Separator
Write a program that accepts as input a sentence in which all of the words are run together but the first character of each word is uppercase. Convert the sentence to a string in which the words are separated by spaces and only the first word starts with an uppercase letter. For example the string "StopAndSmellTheRoses." would be converted to "Stop and smell the roses."
Answer:
Following are the code to this question:
value=input("Enter string value: ")#defining string variable for input value from user
val= ""#defining another string variable val
i=0#defining integer variable and assign value 0
for x in value:#defining loop for proving spacing in value
if x.isupper() and i > 0:#defining if block to check value upper and greatern then 0
val+= " "#proving spacing in string value
val += x.lower()#convert another value into lower case
else:#defining else block
val += x#hold value in val variable
i += 1#increment i variable value
print (val)#print value
Output:
Enter string value: StopAndSmellTheRoses
Stop and smell the roses
Explanation:
In the above python code, a string variable "value" is defined that inputs the value from the user end, and another variable "val" is defined for saving calculated value.
In the next step, for loop is declared, that uses if block to check input value and convert the input value first letter into uppercase and print all value with space. If the condition is false it will return the user input value.
A user's computer will not boot. A technician notices four indicator lights on the backside of the
computer. Two of the lights are green, and two are amber. Which of the following documentation
should the technician read to determine what the lights are indicating?
A. Network diagram
B. Computer manual
C. Asset management
D. Wiring scheme
Answer:
B.
Explanation:
Computer manual is the user guide that comes along with the computer set to inform the users about the functions, ways to assemble the parts, and so on.
The user manual consists of guide for the users specially for electronic products such as computers, refrigerators; softwares, and so on. These manuals are written by technical writers, programmers, etc.
In the given scenario the technician needs to refer to computer manual to know the meaning of the lights on the backside of the computer.
So, the correct answer is option B.
what should i do after learning python? how can I make apps or gaming apps? IF YOUR ANSWER WILL BE GOOD I WILL MARK AS BRAINLIEST
Answer:
Here are some of the things that you can do after learning Python:
Learn a Web Development Framework
Learn Machine Learning
Start Teaching Python to Beginners (and earn some bucks)
These are the top three ways to proceed
Explanation:
CO! Oher...9
pressure
14.
large
The barometric height in a town is 65cmHg. Given that the standard atmospheric pressure
is 76cmHg and density of mercury is 13600kg/m", determine the altitude of the town. (Density of
(3mks)
air is 1.25kg/mº).
Answer:
Altitude of the town(h1) = 1,196.8 m
Explanation:
Given:
Height of barometer(h) = 65 cm Hg = 0.65
Standard atmospheric pressure = 76 cm Hg = 0.76
Density of mercury(Pm) = 13,600 kg/m³
Density of air (Pa) = 1.25 kg/m³
Find:
Altitude of the town(h1)
Computation:
Pressure due column = Δp mercury column
(Pa)(h1) = (Pm)(h)
(1.25)(h1) = (13,600)(0.76-0.65)
(1.25)(h1) = 1,496
Altitude of the town(h1) = 1,196.8 m
A user calls the helpdesk and states that they are receiving an IP conflict error on their computer. The user is on a company network that uses DHCP. The technician verifies the PC is using DHCP to obtain TCP/IP settings. Which of the following commands should the helpdesk technician use to resolve this issue? (Select two.)
A. IPCONFIG /REGISTERDNS
B. IPCONFIG /FLUSHDNS
C. IPCONFIG /RELEASE
D. IPCONFIG /RENEW
E. IPCONFIG /ALL
Answer:
a
Explanation:
none
One technique to find the "things" that need to be included in the new system begins by starting with a user and the use cases and then try to identify the necessary informational "things." This technique is called the _______. a. check list technique b. domain analysis technique c. noun technique d. brainstorming technique
Answer:
Coding is a skill where you take instructions (the steps in a task) and translate it into a languaage.
Explanation:
Coding is a skill where you take instructions (the steps in a task) and translate it into a language the computer understands since computers do not communicate like humans. They communicate in a language called BINARY and