Answer:
# Function to convert decimal number
# to binary using recursion
def DecimalToBinary(num):
if num >= 1:
DecimalToBinary(num // 2)
print(num % 2, end = '')
# Driver Code
if __name__ == '__main__':
# decimal value
dec_val = 24
# Calling function
DecimalToBinary(dec_val)
Explanation:
Will give 5 star and the mark brainleist
PowerPoint SAM Capstone Project 1 can PLEASE someone do it for me I have some directions like steps and you just have to do it in a powerpoint slide please I would really appreciate it
Answer:
Sooo what's the question??
Explanation:
Answer:
kk
Explanation:
Type the correct answer in the box. Spell all words correctly. Complete the sentence based on what you know about target audiences. Two people belonging to the same may like different types of films.
Answer: Demographic
Explanation: For example, a 70-year-old retired war veteran may enjoy a war movie, but a retired banker of the same age may not. I got this correct on the test
A. Fill in the blanks:
1.
is an effective way to display data in pictorial form.
2. Data series are the bars or slices that show the
3. Barchart displays data in the form of long
rods.
4.
is the vertical axis that is used to plot the values.
5.
is a key that is used to identify the colours, patterns, or symbol assigned to a data series.
Answer:
1. Charts.
2. Data series.
3. Rectangular.
4. Y-axis.
5. Legend.
Explanation:
1. Charts: is an effective way to display data in pictorial form. It includes the use of pie charts, bar charts, venn diagram, etc.
2. Data series: are the bars or slices that show the data values. It comprises of related data sets.
3. Barchart displays data in the form of long rectangular rods. Generally, bar charts are used for the comparison of informations obtained from a data collection by representing each value (information) with rectangular bars respectively. A bar chart has a x-axis and a y-axis used to represent the various categories of data collected.
4. Y-axis: is the vertical axis that is used to plot the values. The other axis for plotting values is known as X-axis.
5. Legend: is a key that is used to identify the colours, patterns, or symbol assigned to a data series.
The ___ function can be entered by clicking the cell where you want to add the funtion such as cell J6. Then click the arrow next to the autosum button and choose averange
Answer:
The name of the function that can be added to a cell below a column of numbers or to the right of a row of numbers to find the average by clicking on the AutoSum button on the HOME tab is;
Average
Explanation:
The average function is the function used to quickly find the arithmetic mean, 'μ', or average of a number group, x₁, x₂, x₃, ...xₙ, which is given by dividing the sum of the numbers by the count, 'n', of the numbers, as follows;
μ = ∑x/n
The AutoSum can be used to find the average in Microsoft Excel by clicking on the next cell to row of cells to the right or immediately below the column of cells, then clicking on the down arrow on the right of the AutoSum button on the HOME tab and selecting Average from among the options, the average of the numbers in the column or row of cells will be displayed in the selected cell.
Therefore, we have;
The Average function can be entered by clicking the cell where you want to add the function such as cell J6. Then click the arrow next to the AutoSum button and choose average
When is it appropriate to delete an entire row or column as opposed to deleting the data in the row or column
Answer:
huh wdym
Explanation:
Can someone please help and answer the 6 questions on the bottom of the page
I’ll give you brainly
Spam answer will be reported please don’t spam
Ivan rigney
John benson 2
Mark nicholls 4
James mitchell 7
Paul matthews 13
Neil hooper 8
The unique identifier for each record in a database table is called the
A. Record Id
B. Id number
C. Primary key
D. Row number
Answer:
C
Explanation:
Thank the other person
Need Help ASAP! You might create a flowchart as part of the ___
phase of a software development project.
release
testing
design
coding
Answer:
design .
Explanation:
Answer:
Design
Explanation:
What is output? Select all that apply. c = 0 while (c < 5): c = c + 1 print(c) 6 5 2 4 3 0 1
Answer:
2 4 3 0 1
Explanation:
Which function is correctly written?
=Average(C4)
=Average(C2:010)
=Average(D5-D20)
Answer:
=Average(C2:010)
Explanation:
You us the ; between the numbers, and u need two numbers for average. Sorry if wrong.
Answer:
2:010
Explanation:
Which are malicious codes?
Select all that apply.
Spyware
Serum
Key loggers
Worms
JavaScript
Answer:
Spyware
Key Loggers
Worms
Issue: I don't know what Serum is.
Identify the causes of installation problems. (Choose all that apply)
Answer:
the last one
Explanation:
please mark brainliest
Answer: The answers are: A,B,D
edg.
An audio recording has five minutes of silence at the beginning. Which audio-editing technique will delete this unwanted silence?
topping and tailing
normalizing
equalizing
dithering
Answer:
topping and tailing
Explanation:
The best way to get clarification from someone is by
Answer:
Admit that you are unsure about what the speaker means.
Ask for repetition.
dash+dash=100
Both dash and dashare prime numbers.
How many different solutions can you find
Answer:
6
Explanation:
97+3 = 100
89+11 = 100
83+17 = 100
71+29 = 100
59+41 = 100
53+47 = 100
I counted them using excel, see pic.
Answer:
?
Explanation:
?
A program uses 4 bits to store numbers. When it adds 10 and 7, the result is 1. Which of the following best explains why?
1) the program is reporting the number of bits required to compute the sum
2) an overflow error led the program to reset to O at the number 16
3) 1" is an error code that indicates a rounding error
4) 4 bits is not enough to represent the number 10, so the computer reported only the tens value
Answer:
2
Explanation:
overflow
A data type overflow issue typically occurs when the data type used to store the data was unable to accommodate the data. In addition, some data types are limited in the size of the numbers they can hold. If a data type is a single byte and the amount of data to be saved is larger than 256, an overflow error will be generated. Thus, option B is correct.
What an overflow error led the program to reset?Using exception handling, these mistakes can be addressed. We will examine this exception handling in the section that follows.
We observed the Overflow error in the aforementioned programs, which happens when the current value exceeds the limit value. Furthermore, we must raise the overflow Error exception in order to manage this.
Therefore, When software encounters an overflow error, it means that it tried to write data outside the memory's capacity. Every program has memory set aside for a stack.
Learn more about overflow error here:
https://brainly.com/question/27493058
#SPJ2
Evaluate if the following function is a good candidate to be placed in a library. Why or why not?
Answer:
It cannot be a good candidate because the creator of the library is attempting to update the global variables player1Points and player2Points. The updated scores for each player won't be retained unless someone creates the global variables player1Points and player2Points in their program.
The updateScore function is meant to update the point of player1 and player2 ; since the variables player1 and player2 are only defined in the function, then they do not have a global scope. Hence, the function isn't right to be placed in a library.
Variables defined outside a function are called global variables ; hence, they can be referenced anywhere within the program.
Since the function references a global variable, then any program which intends to use the function must have the variables player1 and player2 must be defined globally in the program.
Hence, it is not a good candidate to be placed in a library.
Learn more:https://brainly.com/question/20720413
What are software applications?
Answer:
files that are stored on the computer
Explanation:
there is an actual definition, but it isnt listed here. Application software is commonly defined as any program or number of programs designed for end-users. That's it, in a nutshell.
Answer:
Lines of code that were written by developers.
Explanation:
Just took the test
Frankie is in charge of writing a script for a television show, along with six other writers. The script must be finished by the end of the week. Frankie’s co-workers all bring slightly different strengths to the table, but all are at least competent. Frankie wants to write the best possible script in the generous amount of time he has to work with. In this example, which style of leadership would be most effective for Frankie’s goals?
a.
Authoritarian
b.
Coaching
c.
Democratic
d.
Delegative
The style of leadership would be most effective for Frankie’s goals is Democratic. Thus, option C is correct.
What is Democratic leadership style?This is known to be a form of government where the the people rule through their elected representative. Note that The style of leadership would be most effective for Frankie’s goals is Democratic as it is where one can listen to what the people has to say.
A good leader must be willing to adopt the style which suits the situation they are in. When dealing with inexperienced employees, an authoritarian style might be the best.
A scripting language or script language is a programming language for a runtime system that automates the execution of tasks that would otherwise be performed individually by a human operator.
Therefore, The style of leadership would be most effective for Frankie’s goals is Democratic. Thus, option C is correct.
Learn more about Democratic from
brainly.com/question/3710021
#SPJ5
The binary number represented by the voltage graph below is
Answer:
The binary number represented by the voltage graph is bits
Explanation:
Answer:
Heres both answers and how to read them
Explanation:
100% on the quiz
what steps should you take if your harassed online
What is 36 Denary in Binary?? PLEASE ANSWER I WILL GIVE U BRAINLY!!
Answer:
100100
Explanation:
Heres my answer i hope it helps
Answer:
100100
If you want to know the binary representation of any decimal number up to 7 digits, check out the Decimal to binary converter.
Explanation:
what is your opinion on gaming? do you think it has more positive or negative impacts
Answer:
positive bc you can learn from them wwhat to do what not to do mistakes that you wont make in. real life
Answer
Positive Impacts
Enhances the Cognitive Functions – The online gamers can improve their cognitive functions by playing online games. The combination of focus and the surges of neurotransmitters will strengthen the neural circuits that make the brain.
Decision-Making and Accuracy – The online gamers can able to make the quick decision. Online gaming trains the brain to take quick decisions without losing the precision. Without any doubt, you can play these games in order to make quick & accurate judgments.
Hand and Eye Function – It is needless to mention that, the online gamers will play their games with the utmost coordination of their hand and eyes. Every online game requires the players to use their hand and eye for the game to be successful.
Enhance the Teamwork – Multiplayer online games will enhance the teamwork among the gamers. The gamers will use the most of their skills to win the game for their team. The gamers will learn about winning the game as a team.
Negative Impacts
Aggressive Behavior – Every player would like to win the game and hence they develop aggressive behavior. The shooting games will induce bad vision to the gamers and the gamers see the society in the same vision.
Loner – Of course, the gamers that spend most of their time in playing online games cannot spend time with their friends and families. If the same thing continues, they want to be alone all the time.
Wrong Values – Certain online games teaches wrong values to the gamers. The online games depict women as weaker characters and sexually provocative characters. The gamers will take that and they do behave badly with the women in reality.
Impact on Health – Yes, the gamers that take part in playing the online games would not like to participate in any such activities that make them fit and fine. Not taking part in the fitness activities leads to health disorders like video induced seizures, obesity, skeletal and postural disorder, never compression, muscular disorder, numbness in shoulders, hands and elbows.
Bad Academic Performance – Playing online games for a long time will create a negative impact on your child’s academic performance. The more your children spend in playing online games, the sooner they fall asleep. Lack of concentration will be an issue to the children that spend more time in playing online games. Some children would fall to the online games and a kind of addiction will happen to them.
Explanation:
Now, I hope that you might have understood the optimistic and pessimistic effects of playing online games. Playing is not a bad one, but you should stick to your limits.
Recognizing the trade-off between interesting design features and cost is part of which stage of the product development life cycle?
Answer: detailed product design
Explanation:
sunglasses sunglasses sunglasses sunglasses sunglasses sunglasses sunglasses sunglasses sunglasses sunglasses i am a failure sunglasses sunglasses sunglasses sunglasses sunglasses sunglasses sunglasses sunglasses sunglasses sunglasses sunglasses sunglasses sunglasses sunglasses
Answer:
SUNGLASSES!!!!! Also, side note, you're not a failure!
EISDHUOSHSD ITS WORLD WIDE HANDSOME
I need to change the subject before they get onto me. I am only revealing info today if you are a friend.
Let's change the subject to the Tillinghan Mystery (Totally not related to the Dad Mystery)
Who is Tillinghan, and what is his website?
Answer:
uuuuummmm i have no idea what your doing but tillingan is a doctor and his website is to sell children over internet
Explanation:
im scared of myself ik
a pair of shoes is on sale for 15% off with this discount customers will pay $9 if they buy the shoes
Answer:
do 15% on a calculator then divide by 9
Explanation:
What are the limitations of the ASCII character set? State why it is limited in this way?
Which of the following is the main cause of network failure?
A. cables that break
B. peripherals that get in the way
C. storms
D. human error
Answer:
Possibly A or C
Explanation:
Answer: human error is the right answer!!!!!
Explanation:
I took the quiz