Answer:
h
Explanation:
What is the definition of a nested function?
O a cell that is used in two different functions
O arguments defined inside of two functions
O arguments defined inside of arguments inside of a function
O a function defined inside of another function
Answer:
d
Explanation:
Answer:
D. a function defined inside of another function
Explanation:
hope this helps :)
Because all residential electrical outlets are never used at the same time, the NEC® allows a diversity or____ nothing to be used when sizing the general lighting load for electric services.
Answer:
Conincident factor
Explanation:
Coincident factor is derived as the Maximum Demand of System divided by the Sum of Individual maximum Demands.
Diversity factor is the proportion or percentage of the total of the peak demands of each unit within the various subdivisions of a system in relation to the total demand of the whole system, or any section of the system.
After calculating the diversity factor the result must be greater than 1.
Cheers
The coincident factor is calculated by dividing the system's maximum demand by the sum of constituent maximum demands.
This diversity factor is the percentage or proportion of peak demand of each unit within the various divisions of a system in proportion to the overall demand of the overall network or any segment of the network.This result of computing the diversification factor has to be higher than 1.Since all household plug sockets are seldom operated at the same time, the NEC enables a diversity or coincidental factor to be used when measuring the general illumination load for electric services.Therefore, the final answer is "coincident factor".
Learn more:
brainly.com/question/12579961
Consider the following instructions for a game element: Move Forward If not at end, move forward Else stop This is an example of which type of programming structure? A Iteration B Looping с Selection D Object OPEN
Answer:
C.
Explanation:
Which of the following is something that an Information Technology (IT) professional would do?
Collect and utilize data
Create and improve software
Manage grades and enrollments
Build and repair computers
Answer:
Probably the last one, build and repair computers.
Let's review. What can be stored in a
variable? Why is using a meaningful
name for the variable important?
Answer:
In this lesson students work with partners to investigate several versions of the "Thermostat App" to understand how variables store and update information. To begin, students examine a version of the app where the temperature displayed changes each time a button is clicked. The next two versions of the app demonstrate how variables can store strings. Students learn about the patterns they are observing, specifically "Counter Pattern with Event" and "Variables with String Concatenation Pattern". To conclude the lesson, students review and discuss the programming patterns that they will make use of in the programs they write.
Explanation:
basta isagot mo
i’m failing this class and i’m stuck on this one, this is the code from the last lesson:
def GPAcalc(grade, weighted):
grade = grade.lower()
dictionary = {"a":4, "b":3, "c":2, "d":1, "f":0}
if weighted == 1 and grade in dictionary:
return "Your GPA score is: " + str(dictionary[grade] + 1)
elif weighted == 0 and grade in dictionary:
return "Your GPA score is: " + str(dictionary[grade])
else:
return"Invalid"
print(GPAcalc(input("Enter your Letter Grade: "), int(input("Is it weighted? (1 = yes, 0 = no) "))))
lst=([])
def avgGPA(lst1):
total = 0
count = 0
for x in lst:
if type(x) == int:
total += x
count += 1
return total/count
def GPAcalc(grade, weighted):
grade = grade.lower()
dictionary = {"a": 4, "b": 3, "c": 2, "d": 1, "f": 0}
if weighted == 1 and grade in dictionary:
lst.append(dictionary[grade]+1)
return "Your GPA score is: " + str(dictionary[grade] + 1)
elif weighted == 0 and grade in dictionary:
lst.append(dictionary[grade])
return "Your GPA score is: " + str(dictionary[grade])
else:
lst.append("Invalid")
return "Invalid"
classes = int(input("How many Classes are you taking? "))
i = 0
while i < classes:
print(GPAcalc(input("Enter your Letter Grade: "), int(input("Is it weighted? (1 = yes) "))))
i += 1
print("Your weighted GPA is a "+str(avgGPA(lst)))
If you need me to change any code, I'll do my best. I hope this helps!
Choose the correct item. Check your answers in the text.
3
Answer:
You should do that
Explanation:
You didnt say anything
What is the next line?
>>> aDeque = deque('happy')
>>> aDeque.append('me')
>>> aDeque
deque(['happy', 'me'])
deque(['h', 'a', 'p', 'p', 'y', 'me'])
an error statement
deque(['happyme'])
Answer:
deque(['h', 'a', 'p', 'p', 'y', 'me'])
Explanation:
Answer: B)deque(['h', 'a', 'p', 'p', 'y', 'me'])
Explanation:
Edge2021
what is the purpose of the domain name system
Answer:
The Domain Name System (DNS) is a central part of the internet, providing a way to match names (a website you're seeking) to numbers (the address for the website). Anything connected to the internet - laptops, tablets, mobile phones, websites - has an Internet Protocol (IP) address made up of numbers.
Explanation:
Which of the following would most likely be the target audience for a product
advertised on TV during Saturday morning cartoons?
A. Young adults between the ages of 17 and 25
B. Children between the ages of 5 and 12
C. Men over the age of 65
D. Women over the age of 50
Answer:
B
Explanation:
They are saturday morning cartoons. Saturday morning cartoons are meant towards an audience of young children.
I think its b if i get wrong i sorry
How does Python recognize a tuple?
You use brackets around the data values.
You use parentheses around the data values.
You declare myTuple to be a tuple, as in "myTuple = new tuple".
You use tuple when you create it, as in "myTuple = tuple(3, 5)".
Answer:
B) You use parentheses around the data values
Explanation:
It was C) on my end, but the answer is still the same :)
Python recognizes a tuple if you declare myTuple to be a tuple, as in "myTuple = new tuple". The correct option is C.
What is python?Python is a popular computer programming language used to create software and websites, automate processes, and analyze data. Python is a general-purpose language, which means it may be used to make many various types of applications and isn't tailored for any particular issues.
Python is frequently considered as one of the simplest programming languages to learn for novices. Python is a wonderful place to start if you're interested in learning a programming language. In addition, it is one of the most popular.
Therefore, the correct option is C, You declare myTuple to be a tuple, as in "myTuple = new tuple".
To learn more about python, refer to the link:
https://brainly.com/question/18502436
#SPJ2
Which are some examples of transitional words?
look, prepare, send
next, then, finally
can't, won't, wouldn't
if, even, all
Answer:
then,next,finally
.............
Look at the slide.
An example of a slide. There is a title. There is one main bullet entry with 3 subentries below it. There is a lot of text on the slide. There is no image. The background is dark red and the text is black.
How could the slide best be improved?
by choosing a better font
by providing more information
by using a lighter background
by enlarging the heading
Answer:
c
Explanation:
Answer:
the answer is c
Explanation:
100%
The code below is repetitious. What is the output of this program?
num = 3
num = num + 1
num = num + 1
num = num + 1
print(num)
Answer:
6
Explanation:
Answer:
6
Explanation:
Edge 2021
The introduction of an academic paper must include a:
A) thesis statement
B)transition sentence
C) quotation
D) restatement
Answer:
A
Explanation:
The introduction of an academic paper must include a: Thesis Statement
Answer:
A.) Thesis Statement
Explanation:
You should start with a thesis statement that way your audience knows what your paper will be about. It makes a claim, directly answering a question.
Hope this helped♥
Dr. Thomas likes to follow up with her patients to make sure they were happy with their care. She sends all patients an email encouraging them to call her office with any questions or to schedule future appointments. Dr. Thomas chooses email as the for this communication.
Answer:
lean media
Explanation:
Dr. Thomas uses email as a medium of lean media to convey messages.
Lean media may be defined as the source of conveying messages that are short or of lean capacity. It is meant for instant messages and message and information that is not considered to be of out most importance. Whereas a rich media is a video chat or face to face communication.
Dr. Thomas send emails to her patients to follow up with them and also encourages her patients to call her for appointments or any questions. She uses email as a source of lean media for this communication.
Answer:
lean media
Explanation:
Catherine purchased dried herbs from the grocery store. Which structure would she use if wanted to create a mixture of powdered herbs by pounding them repeatedly using a mortar and pestle?
A.
looping structure
B.
selection structure
C.
sequence structure
D.
conditional structure
Answer: C. sequence structure
Explanation:
Catherine would use the sequence structure to achieve her results of powdered herb after pounding the herbs.
In a sequence structure, an action, or event, tends to lead to the next action in an order which has been predetermined. The sequence can contain any number of actions, but no actions can or must be skipped in the sequence.
This means she has to go through the pounding process to achieve the powdered state.
Answer:
A. Looping structure
Explanation:
I just took the test
Which of the following correctly describes the reason for quality customer service?
Nina is learning about clouds in her science class so she puts the phrase "types of clouds" in a search engine. In which step of a crawler-based search engine is this phrase most important?
A) indexing
B) crawling
C) ranking
D) retrieving
Answer: d. Retrieving
Explanation:
A crawler-based search engine is a type of search engines whereby a "crawler" or "spider' is used in searching the Internet. The function of the spider or the crawler is to help dig through the web pages, and then pull out the keywords relating to what the person typed in the search engine. Examples include Yahoo and Google.
Based on the information given in the question, the step of a crawler-based search engine that this phrase is most important is the retrieving stage. At that stage, the person is trying to get some information relating to what was typed in the search engine.
C
Describe the scope of the variables in this code.
class cholesterol:
low Density = 0
highDensity = 0
class patient:
definit__(self, firstName.lastName,id Num):
self.firstName = f[rstName
self.lastName = lastName
self.id Num = idNum
def str (self):
return self.firstName +""+self.lastName + " + self.id Num
The scope of high Density is limited to the patient class
The scope of firstName is limited to the cholesterol class
Answer:
The scope of highDensity is accessible by the entire program .
The scope of firstName is limited to the patient class .
Explanation:
Correct answer edge 2020
The scope of highDensity is limited to the cholesterol class and the scope of the firstName is limited to the patient class.
Variable scopeThe accessibility of a program is described by the scope of a variable.
To put it another way, it's the part of the program where the variable is identified.
The place you declared a variable determines the scope. There are two major scopes of variables in python.
Global variablesLocal variablesTherefore, the scope of highDensity is limited to the cholesterol class and the scope of the firstName is limited to the patient class.
learn more on variable scope here: https://brainly.com/question/21065208
#SPJ2
Next, let's examine what happens when you apply a style to an element that contains other elements. The body element in the HTML file contains all the elements that are displayed. Clear the existing code from the style sheet, and set the color of the body element to green. Write the code for the style change and record what you observe.
Answer:
When the body element CSS color style was changed, The color of all the text in the HTML file changed to the specified color, the same goes for font-size, font-weight, etc.
Explanation:
HTML or hypertext markup language is a markup language used in web development to implement the position and structure of the web page. It has no style, so, CSS or cascading style sheet is used to style the HTML elements in the web page.
How are computer networks connected?
Answer:Computer networks connect nodes like computers, routers, and switches using cables, fiber optics, or wireless signals. These connections allow devices in a network to communicate and share information and resources. Networks follow protocols, which define how communications are sent and received.
Explanation.
hope this helped you find what your looking for
Ha Yoon sees funny quotes on top of images frequently in her social media feed. One day, she has an idea for one of her own. Which of these websites would be most likely to help her create what she wants? Group of answer choices a PDF generator an infographic template a meme generator a digital image editor
Answer:
Digital Image Editor
Explanation:
Ha Yoon is not trying to create a meme, or a text document (PDF), so the answer must be Digital Image Editor.
Which are examples of basic text structures? Check all that apply.
chronological order
random order
order of importance
comparison and contrast
cause and solution
Answer:
B, D, E.
Explanation:
Write at leaat 20 shortcuts on the Microsoft word.
Answer:
Open a document: Ctrl + O.
Create a new document: Ctrl + N.
Save the current document: Ctrl + S.
Open the Save As window: F12.
Close the current document: Ctrl + W.
Split the window: Alt + Ctrl + S.
Copy: Ctrl+C
Paste: Ctrl+V
Cut the current selection: Ctrl + X
Copy the current selection: Ctrl + C
Paste the contents of the clipboard: Ctrl + V
Bold: Ctrl + B
Italics: Ctrl + I
Underline: Ctrl + U
Underline words only: Ctrl + Shift + W
Center: Ctrl + E
Make the font smaller: Ctrl + [
Make the font bigger: Ctrl + ]
Change text to uppercase: Ctrl + Shift + A
Change text to lowercase: Ctrl + Shift K
Insert a page break: Ctrl + Enter
Add a hyperlink: Ctrl + K
Explanation:
Write a program that outputs a subtraction practice problem for a student, outputting the larger random number
first and the smaller random number second.
this is in C++ and i cant figure it out
Answer:
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main(void)
{
srand(time(NULL));
int num1, num2;
int val;
while (true)
{
num1 = rand() % 100 + 1; //Random number between 1-100
num2 = rand() % 100 + 1; //Random number between 1-100
if (num1 >= num2)
{
printf("%d - %d = ", num1, num2);
scanf("%d",&val);
if (val == num1-num2)
{
printf("Correct!\n");
}
else
{
printf("Incorrect!\n");
}
}
else
{
printf("%d - %d = ", num2, num1);
scanf("%d",&val);
if (val == num2-num1)
{
printf("Correct!\n");
}
else
{
printf("Incorrect!\n");
}
}
}
}
Explanation:
First, we create two random numbers and save the values. Then we check to see which value is larger. Based on that, we change how we display the format to the user. Then we check to see if the user input number is equivalent to the subtraction problem. If it is, we display Correct! Else, we display Incorrect!
Cheers.
If a song is public domain, that means:
Check all that apply.
Portions of the song may be used at will.
The song may be recreated without fee.
No fee is owed for using the original song in its entirety.
None of the above.
Answer: C
Explanation:
Public Domain mean public owns it and it don’t belong to an individual author or artist. Anyone can use a public domain without obtaining permission but can’t ever own it
Answer:
It’s actually A,B, and C
Explanation:
Macro photographs are what type of photographs? A. Close-up B. Telephoto C. Abstract D. All of the above
Answer:
A
Explanation:
they are close up. they are not telephoto or abstract
marco can be telephoto, but it is not nessacarily always telephoto. marco is by definition a close up photo
What are the key components to planning a presentation?
Check all that apply:
audience
conclusion
methods
purpose
thesis
title
topic
1,3,4,7 just took on edge
Answer:
1 3 4 7
Explanation:
Which rules should be remembered when creating formulas using nested functions? Check all that apply.
Use an equal sign at the beginning of the formula.
Use open and close parenthesis for each set of nested functions.
Use an equal sign before each function.
All arguments should be in CAPS.
Functions should be in CAPS.
Separate functions with commas.
Answer:
Use an equal sign at the beginning of the formula (A)
Use open and close parenthesis for each set of nested functions (B)
Functions should be in CAPS
Separate functions with commas
Explanation:
Answer:
A
B
E
F
Explanation: