100 POINTS!
Which options are available to users when using the Broadcast Slide Show dialog box? Check all that apply.
Edit Slide Show
Copy Link
Send in Email
Start Slide Show
Attach as PDF
Paste Link
Answer:
Edit Slide Show
Copy Link
Send in Email
Start Slide Show
Paste Link
Answer:
Edit Slide Show
Copy Link
Send in Email
Start Slide Show
Paste Link
why do computer architects prefer memory dump to be in base 16
Answer:
We use hexadecimal numbers primarily because they provide a more human-friendly representation and it is much easier to express binary number representations in hex than in any other base number system.
Explanation:
How many slides would be in a PowerPoint presentation based on the formatting of the Word outline?
A. two
B. Three
C. Eight
D. Eleven
Answer:
A. two
Explanation:
can i have brainliest please
Answer:
Explanation:
It depends on how the presentation is organized. If there is one slide for each major section, then the answer is B. Three as there are 3 sections.
But if each outline has its own slide, then there will be D. Eleven slides.
Tell the story, step by step, of how your computer finds the CodeHS server,
Answer:
huh .......................................
Explanation:
Implement the function printTwoLargest that inputs an arbitrary number of positive numbers from the user. The input of numbers stops when the first negative or zero value is entered by the user. The function then prints the two largest values entered by the user. If fewer than two distinct positive numbers are entered a message to that effect is printed instead of printing any numbers. Hint: Duplicates will cause problems. Try to make sure that you find a way to ignore them.
Answer:
The function in Python is as follows:
def printTwoLargest():
chk = 0
list1 = []
num = int(input("Enter: "))
while num > 0:
for i in list1:
if i == num:
chk+=1
break;
if chk == 0:
list1.append(num)
chk = 0
num = int(input("Enter: "))
list1.sort()
if len(list1) >= 2:
print("Largest:", list1[-1])
print("Second:", list1[-2])
else:
print("Length of list must be at least 2")
Explanation:
This defines the function
def printTwoLargest():
This initializes a check variable to 0
chk = 0
This initializes an empty list
list1 = []
This prompts the user for input
num = int(input("Enter: "))
The following loop is repeated until input is 0 or negative
while num > 0:
The following for loop checks for duplicate
for i in list1:
if i == num: If duplicate is found
chk+=1 The check variable is set to 1
break; And the for loop is exited
The input is appended to the list if the check variable is 0 (i.e. no duplicate)
if chk == 0:
list1.append(num)
This sets the check variable back to 0, for another input
chk = 0
This prompts the user for another input
num = int(input("Enter: "))
This sorts the list
list1.sort()
This prints the two largest if valid user input is 2 or more
if len(list1) >= 2:
print("Largest:", list1[-1])
print("Second:", list1[-2])
if otherwise, this prints that the length must be at least 2
else:
print("Length of list must be at least 2")
Puede pasar de un estado de bloqueo a un estado de conducción en ambos sentidos de polarización, aplicando un pulso de tensión en la puerta.
Answer:s
Explanation:n
PLEASE HELP!!!
I was trying to create a superhero class code, but i ran into this error
File "main.py", line 3
def_init(self, name = "", strengthpts = 0, alterego = "", villain "", powers = "", motto = ""):
IndentationError: expected an indented block
Here is my actual code:
class superhero:
def_init(self, name = "", strengthpts = 0, alterego = "", villain "", powers = "", motto = ""):
# Create a new Superhero with a name and other attributes
self.name = name
self.strengthPts = strengthPts
self.alterego = alterego
self.powers = powers
self.motto = motto
self.villain = villain
def addStrengthPts(self, points):
# Adds points to the superhero's strength.
self.strengthPts = self.strengthPts + points
def addname(self):
if(self.name == "Dr.Cyber"):
print("My hero's name is Dr.cyber!")
elif(self.name == "Mr.cyber"):
print("My hero's name is Mr.cyber!")
elif(self.name == "Cyber Guy"):
print("My hero's name is Cyber Guy!")
else:
print("My hero doesn't have a name")
def addalterego(self):
if(self.alterego == "John Evergreen"):
print("Dr.Cyber's alter ego is John Evergreen")
elif(self.alterego == "John Silversmith"):
print("Dr.Cyber's alter ego is John Silversmith.")
elif(self.alterego == "Johnathen Grey"):
print("Dr.Cyber's alter ego is Johnathen Grey.")
else:
print("Dr.Cyber Does not have an alter ego")
def addpowers(self):
if(self.powers == "flight, super strength, code rewrighting, electronics control, psychic powers"):
print(fly. He is super strong. He can rewrite the genetic code of any object around him to whatever he wants.He can control surrounding electronics to do what he wants. He can move objects with his mind.")
else:
print(Fly. He can rewrite the genetic code of any object around him. he can move objects with his mind.")
def addmotto(self):
if(self.motto == "error terminated!"):
print("rewritting the code!")
else:
print("error eliminated!")
def addvillain(self):
if(self.villain == "The Glitch"):
print("Dr.Cyber's Arch nemisis is The Glitch.")
elif(self.villain == "The Bug"):
print("Dr.Cyber's Arch nemisis is The Bug.")
else:
print("Dr.Cyber has no enemies!")
def main():
newhero = superhero("Dr.Cyber", "John Evergreen", "fly. He is super strong. He can rewrite the genetic code of any object around him to whatever he wants.He can control surrounding electronics to do what he wants. He can move objects with his mind.", "The Glitch", "error terminated!", "0")
print("My Superhero's name is " + newhero.name + ".")
print(newhero.name + "'s alter ego is " + newhero.alterego + ".")
print(newhero.name + " can " + newhero.powers + ".")
print(newhero.name + "'s arch nemisis is " + newhero.villain + ".")
print("when " + newhero.name + " fights " + newhero.villain + ", he lets out his famous motto " + newhero.motto + ".")
print(newhero.name + " defeated " + newhero.villain + ". Hooray!!!")
print(newhero.name + " gains 100 strengthpts.")
main()
PLEASE ONLY SUBMIT THE CORRECT VERSION OF THIS CODE!!! NOTHING ELSE!!!
Answer:
you need to properly indent it
Explanation:
align your codes
Mark the other guy as brainliest, I'm just showing you what he meant.
I'm not sure if that's all that's wrong with your code, I'm just explaining what he meant.
Answer:
def_init(self, name = "", strengthpts = 0, alterego = "", villain "", powers = "", motto = ""):
# Create a new Superhero with a name and other attributes
self.name = name
self.strengthPts = strengthPts
self.alterego = alterego
self.powers = powers
self.motto = motto
self.villain = villain
def addStrengthPts(self, points):
# Adds points to the superhero's strength.
self.strengthPts = self.strengthPts + points
def addname(self):
if(self.name == "Dr.Cyber"):
print("My hero's name is Dr.cyber!")
elif(self.name == "Mr.cyber"):
print("My hero's name is Mr.cyber!")
elif(self.name == "Cyber Guy"):
print("My hero's name is Cyber Guy!")
else:
print("My hero doesn't have a name")
def addalterego(self):
if(self.alterego == "John Evergreen"):
print("Dr.Cyber's alter ego is John Evergreen")
elif(self.alterego == "John Silversmith"):
print("Dr.Cyber's alter ego is John Silversmith.")
elif(self.alterego == "Johnathen Grey"):
print("Dr.Cyber's alter ego is Johnathen Grey.")
else:
print("Dr.Cyber Does not have an alter ego")
def addpowers(self):
if(self.powers == "flight, super strength, code rewrighting, electronics control, psychic powers"):
print(fly. He is super strong. He can rewrite the genetic code of any object around him to whatever he wants.He can control surrounding electronics to do what he wants. He can move objects with his mind.")
else:
print(Fly. He can rewrite the genetic code of any object around him. he can move objects with his mind.")
def addmotto(self):
if(self.motto == "error terminated!"):
print("rewritting the code!")
else:
print("error eliminated!")
def addvillain(self):
if(self.villain == "The Glitch"):
print("Dr.Cyber's Arch nemisis is The Glitch.")
elif(self.villain == "The Bug"):
print("Dr.Cyber's Arch nemisis is The Bug.")
else:
print("Dr.Cyber has no enemies!")
def main():
newhero = superhero("Dr.Cyber", "John Evergreen", "fly. He is super strong. He can rewrite the genetic code of any object around him to whatever he wants. He can control surrounding electronics to do what he wants. He can move objects with his mind.", "The Glitch", "error terminated!", "0")
print("My Superhero's name is " + newhero.name + ".")
print(newhero.name + "'s alter ego is " + newhero.alterego + ".")
print(newhero.name + " can " + newhero.powers + ".")
print(newhero.name + "'s arch nemisis is " + newhero.villain + ".")
print("when " + newhero.name + " fights " + newhero.villain + ", he lets out his famous motto " + newhero.motto + ".")
print(newhero.name + " defeated " + newhero.villain + ". Hooray!!!")
print(newhero.name + " gains 100 strengthpts.")
main()
4. Describe how changes in society's attitude toward people in wheelchairs may
have led to changes in the wheelchairs available to people who need them.
Were these changes made using science or technology or both?
**NEED THE ANSWER ASAP** Which print option should be selected to minimize the number of pages required to print the content of my presentation?
A. Handouts
B. Note Pages
C. Slides
D. Outline
HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP HELP
Answer:
I should be C! :D
Answer:
B
Explanation:
how to get bing with any node unblocker
Answer:
rawr xD broooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo
Explanation:
UwUOwO<3Using the drop-down menus, correctly complete the sentences.
A(n)
vis a set of step-by-step instructions that tell a computer exactly what to do.
The first step in creating a computer program is defining a(n)
the next step is creating a(n)
v problem that can be solved by a computer program.
A person writing a computer program is called a(n)
Answer:
It is computer program , Problem, Logic, Programmer
Explanation:
on edge
Where does Reiner take eren after they have a fight?
Answer:
So Reiner And Bertoldt wanted to take Eren and Ymir to Marley, a nation on the other side of the ocean so they can be devoured and there power can be given to a warrior canidate.
Answer:
what season tho?
Explanation:
Reiner took eren to the Forest
Consider the following code:
a = 3
b = 2
print (a ** b)
What is output?
O 8
O9
O 1
6
Explanation:
I think the output is 6
am not sure tho hope my answr helps
Type the correct answer in the box. Spell all words correctly.
Which type of cable would a network company lay if it wants to provide fast connectivity without electrical interference?
The company should use (blank) cables to provide fast connectivity without electrical interference.
Answer:
network cables also plz mark as brainly would really help
Explanation:
The type of cable that a network company can lay if it wants to provide fast connectivity without electrical interference is network cable.
What is network cable?Networking cables are known to be tools that are used in networking hardware so that they can be able to connect one network device to another.
Note that The type of cable that a network company can lay if it wants to provide fast connectivity without electrical interference is network cable.
Learn more about cables from
https://brainly.com/question/14705070
#SPJ2
Es la actividad que posibilita comunicar gráficamente ideas, hechos y valores procesados y sintetizados en términos de forma y comunicación, factores sociales, culturales, económicos, estéticos y tecnológicos
Answer:
La estadística es una rama de las matemáticas aplicadas que se ocupa de la recopilación, evaluación, análisis y presentación de datos o información. El trabajo también utiliza elementos de cognición, psicología, informática y ciencias de sistemas, cálculos numéricos y contribuciones de otras materias que tratan de matemáticas, datos y métodos informáticos intensivos.
El resultado, también llamado estadística, a menudo se presenta en forma numérica en números absolutos, números de frecuencia, números proporcionales, promedios, en tablas con series de tiempo o con otros números comparativos y a menudo también se ilustra en diagramas o figuras. El resultado se usa en parte para mostrar cómo se maneja algo en este momento y en parte como una herramienta para predecir eventos futuros mediante inducción. La estadística se utiliza en muchas disciplinas científicas, desde las ciencias naturales hasta las humanidades, pero también en la política y los negocios.
someone, please answer this.
This lesson showed you the general form of the syntax for a for loop in JavaScript:for
(initialize counter; condition; update counter) {code block;}
What does each part do, and why is it necessary?
Answer: A loop will continue running until the defined condition returns false . ... You can type js for , js while or js do while to get more info on any of these. ... initialization - Run before the first execution on the loop. ... But it can be used to decrement a counter too. statement - Code to be repeated in the loop.
Explanation:
Put the steps in order to produce the output shown below. Assume the indenting will be correct in the program.
JDoe
1. Line 1
answer = username ('Joann', 'Doe')
2. Line 2
print (answer)
3. Line 3
def username (strFirst, strLast):
4. Line 4
return strFirst[O] + strLast
Answer:
The correct code is:
def username (strFirst, strLast):
return strFirst[O] + strLast
answer = username ('Joann', 'Doe')
print (answer)
Explanation:
The given code illustrates the use of functions.
i.e passing values to a function and retrieving values from it
So, first: We start with the def statement
def username (strFirst, strLast): ----> This defines the function
Then the return statement
return strFirst[O] + strLast --- > This passes value to the main
Next, is the main function of the program which is:
answer = username ('Joann', 'Doe') ---> This passes values to the username function
print (answer) ---> This prints the returned value from the function
Explain the principle of a Kimball as a data input device
Answer:
k
Explanation:
bc i need points
Answer:
p=35
Explanation:
hoped this helped
can anyone help??
10*11+101
thank you ✨ for helping.!
Answer:
211
Explanation:
Answer:
211
Explanation:
Hi:)
Felicity wants to capture the attention of the regular subway commuters in her area though her print advertisements
Answer: billboard
Explanation:
Plato answer
Which of the statements below describe how to print a document?
Click on the Print icon at the tip of the screen.
Click on Print in the system tray.
Select Print from the Start menu.
Select Print from the File menu.
(On the picture above is what I have plz let me know if I’m wrong)
Who clarified the binary system of algebra
Answer:
Really good mine Bella
Explanation:
Yes it is it’s c with a L
i need an quote for a ad im using gatorade
Answer
Want the best aid for after a game, then try some Gatorade!
Explanation:
Hope this helps lol! plz mark as brainliest!
which operating systems have both workstation and server editions?
-ios
-android
-ubuntu
-windows
Answer:
WINDOWS
Explanation:
The operating system that have both workstation and server editions is windows. The correct option is D.
What is an operating system?The operating system (OS) controls all of the computer's software and hardware. It basically manages files, memory, as well as processes, handles input along with output, and controls peripheral devices such as disk drives and printers.
The most chief software that runs on a computer is the operating system. It is in charge of the computer's memory, processes, as well as all software and hardware.
Several computer programs typically run concurrently, all of which require access to the computer's processor (CPU), memory, and storage.
Operating systems now use networks to connect to one another as well as to servers for access to file systems and print servers. MS-DOS, Microsoft Windows, and UNIX are the three most popular operating systems.
Thus, the correct option is D.
For more details regarding operating system, visit:
https://brainly.com/question/6689423
#SPJ2
What type of information is appropriate for headers and footers? Check all that apply.
media
SmartArt
date and time
charts or graphs
O copyright notice
ООО
slide/page number
company or author's name
Answer:
Date and time
Copyright Notice
Slide/Page Number
Company or author's name.
Explanation:
Just did it.
Answer:
C. date and time
E. copyright notice
F. slide/page number
G. company or author’s name
Explanation:
hope this helps :)
Explain benefits and disadvantages of using BNC over F-Type connectors on coaxial cables
Answer:
The benefits and disadvantages of using BNC over F-Type connectors on coaxial cables are;
The benefits of the BNC includes;
1) Easy connect and disconnect for a more rapid connection unlike the F-Type connector which is a screw connector
2) Reduction on stress on the termination of the coaxial cable
3) Appropriate in systems that see frequent reconfiguration unlike te F-Type connector that is permanently attached
4) Prevent unwanted disconnection ensuring image consistency by locking into place
5) Can extend to 300 ft.
The disadvantages of the BNC connectors are;
1) A separate power supply for the cable is required
2) Is used only for video transmission
3) Cannot be used for audio
4) The center wire is not easily visible like those of the F-Type connector which serves as a pin
5) The BNC connector is not watertight like the F-Type connectors
6) There are no provision for properly and securely attaching the cable to the camera for field work such that it can be easily disconnected while in use unlike the F-Type connectors
7) It is not as easy to manufacture like the F-Type connector and it is more expensive
8) The installation of the BNC connector on a coaxial cable is more intricate and the center cable is hidden from view after the BNC is attached thereby making it not possible to see if there is an error in installation which is unlike the F-type connector that takes less than 30 seconds to be attached to a cable
9) The F-Type connector provides more cost savings during installation than the BNC connector
Explanation:
The BNC connector is a type of bayonet connector used more frequently on CCTV systems. The benefits of the BNC includes;
The F-Type connectors are usable on SATV, CATV, and Digital TV where they are used together with RG6 or RG11 cables
How can I restore tabs that just unexpectedly close out of nowhere ?
Answer:
hit control, shift, and t at the same time
Explanation:
this should work
A 1600 kilogram truck is moving at a speed of 12 m/s. How much kinetic energy does the car have?
Answer:
which one?
Explanation:
Which of the following items is the best list of items to bring to a job interview?
O copies of your resume, cellphone with contacts at the company, and a snack to share
copies of your academic work, written responses to interview questions, and a pen and paper to take notes
O copies of your cover letter, the contact information for your interviewer, and a voice recorder
O copies of your resume, the contact information for your interviewer and a pen and paper to take notes
Answer:
I am not exactly sure but I think it is:
D. Copies of your resume, the contact information for your interviewer and a pen and paper to take notes
Explanation: