Activity 3. Checking Your Understanding on Series and Parallel Circuit
Write True if the statement is true and if the statement is false, change the
underlined word to make the statement true. Write your answers on a separate
sheet of paper.
1. In a series circuit, if one light bulb does not function all other light bulbs
will still function.
2. In a parallel circuit, not all light bulbs do not have the same brightness in
the circuit.
3. In a parallel circuit, loads are easy to control individually.
4. A parallel circuit is easy to install.
5. Series circuits do not overheat easily.
6. Adding more loads in parallel circuit may overload the circuit.
7. Every load in a parallel circuit has the same voltage.
8. The parallel circuit is difficult to install and repair due to the volume of
conducting wires required in the connection.
9. In a series circuit, loads are difficult to control individually.
Answer:
1.False-Parallel cercuit
2.False-series circuit
3.True
4.False-difficult
5-9-True
Explanation:
Sana makatulong pa yung sagot ko
There are many apps that help find you cheaper gas. If the cost of a gallon of regular gas is $3 at one station and $3.50 at another gas station and your car takes 12 gallons to fill up your car. How much extra are you spending at the more expensive gas station? $5 $6 $7 $8
Answer:
$7
Explanation:
what are the important reason to practice Opreational Health and Safety procedure?
To prevent injury
to protect the environment
its the law you can get fined a lot of dollars
Hope you get the question right :)
. While ________is the protocol used to view web pages, browsers also support protocols for functions such as transferring large files.
A)HTML
B)HTTP
C)FTP
Answer:
HTTP
Explanation:
Answer:
B) HTTP
Explanation:
This is hypertext transfer protocol.
The Scrum team is Using Kanban board to make work Visibility available to all. What cannot visible? a) percentage Completion b) Task move from left to Right
Answer:
a) percentage Completion
Explanation:
A Kanban board is a digital panel divided into five columns where work teams can view a job until its execution and thus optimize the flow of completed jobs, in addition to allowing the full execution of tasks. These columns are named refers to each phase of the production of a job, as a phase is completed it is possible to move the job to the next column, which allows us to conclude that the use of this type of frame allows the movement of tasks from right to left, but does not allow you to see the percentage of completion.
Which of the following represents a backup system that will aid in recovery for any type of disaster or disruption?
Transfer operations
Integrity operations
Redundancy operations
Independent operations
Answer: redundancy operations
Explanation:
why do many experts recommand longer time horizonal if you are doing high risk investment
Answer:In general, the longer your time horizon, the better you can handle fluctuations in value and take more risk in order to reap greater rewards.
Explanation:
What is the nature of the news in the film "EPIC 2015"?
Answer:
The narrator of "epic 2015" describes the year 2015 as the "worst of times" because it was a collection of trivial information that may not be true. There is another reason The narrator of "epic 2015" describes the year 2015 as the "worst of times" because we will not have news organizations.
Explanation:
1. What is a digital networking app?
Answer:
Digital Networking is a web based and mobile app that makes networking today easy and meaningful.
Explanation:
Two types of are desktop computers and notebook computer
Answer:
personal computer is the correct answer.
Two types of personal computer are desktop computers and notebook computer. Thus, option A is correct.
Today personal computer is changed to laptop mode. Personal computer is made of CPU, monitor, keyboard, printer and mouse. All input device and output device connected with wire or without wire.
Personal computers are also called as desktop or workstation. These days all become compatible device which is called as laptop. Basically all input devices and output device are fixed in laptop so end user can carry the laptop and used anywhere.
Laptop is charged and used, whereas desktop or workstation just fixed in the table and used it.
Learn more about computer on:
https://brainly.com/question/32297638
#SPJ2
being a media and information literate indibidual is important especially during this modern time.give atleast three example situations that show its importance in your daily life
Answer:
I REQUIRE POINTS CAUSE I NEED ASWERS FOR M HOMEWORK
Explanation:
Sam is developing a software program in Python and has a question about how to implement a particular feature. Which use of a resource is most likely to provide Sam with the best results?
A) joining a Python developer forum and posting a question to the forum to solicit feedback
B) joining a Python developer forum and following links to technical news sites
C) reviewing an Introduction to Computer Science textbook
D) reviewing the computer user manual
Answer:
A or D
Explanation:
i could be wrong
Answer:
probably A, i mean it makes the most sense cause why review a computer user manual? C is an introduction so I doubt that's the level of question he is asking about. B is a no when it states "News sites", I honestly don't think there is any news sites that would help in any way.
You wrote a program to find the factorial of a number. In mathematics, the factorial operation is used for positive integers and zero.
What does the function return if the user enters a negative three?
def factorial(number):
product = 1
while number > 0:
product = product * number
number = number - 1
return product
strNum = input("Enter a positive integer: ")
num = int(strNum)
print(factorial(num))
-6
1
There is no output due to a runtime error.
-3
Answer:
The correct answer is 1
Explanation:
Correct on edge 2020
Answer: 1
Explanation:
got it on Edge.
Question #3
Multiple Select
Which statements are true about a user-defined data type? Select 3 options.
It can only include one data type.
I
It can include bool data.
It cannot be changed once you define it.
It can include string data.
O It can include numeric data,
An attribute of a piece of data known as a “data type” instructs a computer system how to interpret that data's value.
What are the different type data type and their uses?Data is categorized into different types by a data type, which informs the compiler or interpreter of the programmer's intended usage of the data.
Most computer languages provide a variety of data types, including integer, real, character or string, and Boolean.
The operations that can be performed to create, alter, and use the variable in another calculation without running the risk are specified by the data type.
Knowing the various types of data makes it easier to make sure that the values of each property are as expected and that the data is gathered in the right format.
A programming language is said to be strongly typed if it only permits operations on variables that respect their data type.
Therefore, It can include string data, bool data, numeric data.
Learn more about data type here:
https://brainly.com/question/14581918
#SPJ2
Answer:
A D E
Explanation:
CA U ANSWER IN 5min. well lets find out ANSWER HERE. :)
Answer:
Both are True
I hope this helps!
Answer:
Explanation:
12 is 1
and 13 is false but i aint so sure
I need help with this question!
Answer:
5 and 10
Explanation:
Given
The above code segment
Required
Determine the outputs
Analysing the code segment line by line
[This initialises c to 0]
c = 0
[The following iteration is repeated as long as c is less than 10]
while (c < 10):
[This increments c by 5]. Recall that c is initially 0. Hence, c becomes 0 + 5 = 5
c = c + 5
[This prints the value of c which is 5]
print(c)
The iteration is then repeated because the condition is still true i.e. 5 is less than 10
c = c + 5 = 5 + 5 = 10
[This prints the value of c which is 10]
print(c)
The iteration won't be repeated because the condition is now false i.e. 10 is not less than 10.
Hence, the output is 5 and 10.
is spin to win paying or is a scam app
Answer:
scam bro.
Explanation:
Answer:
yes it's a scam app when I tried it and after a few days it hasn't been delivered to my house though
python 3.4 code practice question 2
“Write a program to convert a fraction to a decimal. Have your program ask for the numerator first, then the denominator. Make sure to check if the denominator is zero. If it is, print out “Error - cannot divide by zero.”
numerator = int(input("Enter a number: "))
denominator = int(input("Enter a number: "))
if denominator != 0:
print(numerator/denominator)
else:
print("Error - cannot divide by zero.")
The fraction can only be described as "undefined" if the denominator is ever 0.
Explain about the denominator is zero?
The mathematical error (not specified) of dividing a number by zero can be graciously overcame by using exception handling. The output of division by zero will be displayed as infinity if you write code without employing exception handling, which cannot be further processed.
A fraction cannot have zero as the denominator since zero cannot be divided by anything. The reason is that you get back 6 when you multiply the answer, 2, by the divisor, 3. Because the denominator cannot be zero, the fraction is invalid and has no value.
"Enter a number: " input = int numerator
Denominator: int ("Enter a number: "); input;
if the numerator!= 0
print(numerator/denominator)
else:
print("Error - cannot divide by zero")
("Error - cannot divide by zero.")
To learn more about denominator is zero refer to:
https://brainly.com/question/17546250
#SPJ2
There is a feature that allows you to lock the document, to avoid others making changes. True or False
Answer:
True
Explanation:
On teams and on word
______________ is a pre-designed format to help users with the creation of a document, like a flyer, brochures, or resumes. What's the answer for the blank?
A.PowerPoint
B.Excel
C.Template
D.Pie Chart
Why was that feast held
Answer:
if its christianity then its his and his diciples but for tech?
Explanation:
i dont really know
Answer:
because he wants to pray to god that he has such a good day in church, i guess.
Explanation:
White lines
A.separate traffic lanes moving in opposite directions
B.separate traffic moving in the same direction
C.indicate a handicap parking space
the
D.indicate temporary parking
Answer:
Its B
Explanation:
Answer: B
Explanation:
• Comments are blank which can be blank entered into documents
. Can be blank by clicking on Previous and blank icons in the blank group
electronically
notes
Comments
Next
navigated
Answer:
"can be blank by clicking on previous and blank icons in the blank group...
navigated
Explanation:
Been a while since i learned this this is a edu guess.
If you want to change a number in a cell, you must delete it first before entering a new number
True
False
This is with Google Sheets.
Answer:
true
Explanation:
hope this helps.................
DO NOW
1. What are the 4 things that make a computer a
computer?
Answer:
CPU, GPU, Hard drive, Video Card
Explanation:
Assume that your body mass index (BMI) program calculated a BMI of 20.6. What would be the value of category after this portion of the program was executed? # Determine the weight category. if BMI 39.9: category = "morbidly obese" elif BMI <= 24.9: category = "normal" elif BMI <= 39.9: category = "overweight"
The value of category will be _______.
A)overweight
B)normal
C)underweight
D)morbidly obese
Answer:
B normal is the answer
Answer:
Normal
Explanation:
yoooooo guys what up
can yall help
In three to five sentences, compare and contrast paraphrasing and summarizing.
will mark brainlist
Answer:
To put simply, paraphrasing refers to the conversion of the original or the concerned source material into the own or personal words of the reader or the interpreter. In contrast, summarizing mainly refers to the conversion of the main idea/concept/s or content of any original text or source material into the writer's or interpreter's own words.
Explanation:
Paraphrasing commonly engages putting any original text of any source material into the own words of the reader or the interpreter of the material.On the other hand,summarizing mainly involves converting the central idea/s or the content/s of the source material into the own words of the reader or interpreter of the source material.
Paraphrasing involves selection of any specific broader section or part of the source material and its conversion into a shorter version in terms of the own words of the reader or the interpreter,whereas,summarizing construes selection of the overall of main idea/s or content of the source material and putting it into a condensed form,expressed in the own words of the reader or interpreter.
A looping construct that continues to repeat until the expression becomes false is
A) a while loop.
B) a for loop.
C) an infinite loop.
D) a pass loop.
Answer:
A) a while loop.
Explanation:
A while loop is a programming construct that continues to repeat until the expression becomes false.
While loops are conditional statement that executes as long as the conditions remain true. They are used to automate tasks that are otherwise repetitive and would require redundant computing time to do them manually.
Answer: A. A while loop. I think
Explanation:
Which of the following should you consider when choosing a file format?
the browser you use most often
the age of the person who created the file
the need for future access and digital preservation
the length of time a file is under copyright law
Answer:
“The need for future access and digital preservation”
Explanation:
When choosing a file format, it is important to consider the need for future access and digital preservation. The correct option is 3.
What is file format?A file format is a method of organizing and storing data in a file that is standardized. It specifies how data in the file is organized and represented.
It is critical to consider the need for future access and digital preservation when selecting a file format.
This is due to the fact that different file formats have varying levels of compatibility with different software and operating systems, and some formats may become obsolete over time, making future access or opening of the file difficult or impossible.
Other factors to consider when selecting a file format include the intended use of the file, the file's quality and size, and any specific requirements or limitations of the software or platform being used.
Thus, the correct option is 3.
For more details regarding file format, visit:
https://brainly.com/question/1856005
#SPJ7
What are the requirements to access email on the web?
A. a webmail provider's URL and a password
B. a webmail provider's URL a username and a password
C. a credit or debit card, a username, and a password
D. an email server ID and a password
Answer:
it's B
Explanation:
You need to have a provider (such as outlook) and a username/password