Answer:
"The choice of programming language determines the type of game you can make."
Explanation:
Programming language enables us to write efficient programs and develop online things based on the certain type of code.
Compare Ethernet frames to other frames.
•Most frames use CRC, but Ethernet does not. •Most frames use a protocol called CSMA/CD.
•Ethernet frames generally do not have stop frames.
•Ethernet frames have more parts in their frame footers.
What actions does Kareem need to take to change the timing of an animation in one
of his presentation slides?
a) Change the order of the animation for the slide.
b) Change the type of animation for the slide.
c) Change the delay and duration for the slide.
d) Change the trigger for the slide.
What Kareem needs to do to change the timing of animation is change the delay and duration for the slide.
A typical Presentation slide helps to keep an audience's attention during a presentation and as well provide additional supporting information.
A presentation slides entails the use of text, images, artworks, aesigns, animation to facilitate a smart slide for proper presentation.
Animation basically move on the slides and are timed/programmed to move in a specific time or direction.
Therefore, in conclusion, Option C is correct. All Kareem have to do to change the timing of an animation in the slide is changing the delay and duration for the animation.
Read more on this here
brainly.com/question/11389651
What are other ways you could use the shake or compass code blocks in physical computing projects?
Answer:
There are different ways of quick navigation between files and functions. ... You should use the menu 'Remove file from project' instead of deleting files. ... A Makefile generation tool for Code::Blocks IDE
Most people have unexpected expenses at some time. Yes. No.
Answer:
Yes
Explanation:
identifica clases de técnicas que se emplean para el desarrollo y emplean empleo de las cosas que nos rodean hechos para satisfacer la necesidad del ser humano.
AYUDA ES PARA HOYY
Y PORFAVOR EXPLÍQUENME EN ESPAÑOL
Answer:
HEY I SAID PHYSICS NOT COMPUTER STUFF
Explanation:
I CAN'T EVEN READ IT
Identify uses of embedded computers?
Answer:
Explanation:
Applications that embedded computers are deployed for range from Industrial Automation and Control, Intelligent Transportation, Medical Imaging, Digital Signage, to unmanned military & defence – to name but a few. There numerous applications where a Embedded Computer can be deployed
What is the use of Word Processing and Spreadsheet in an organization?
How to resize images for the Wallpaper subreddit in r.eddit.
Answer:
You can probably use a website to change the resolution of the image.
Technician A says that long hair should be secured to avoid entanglement. Technician B says that hairnets are NOT an effective means to secure hair. Who is correct? Select one: a. Technician A b. Technician B c. Both A and B Or d. Neither A nor B
Answer:
technician A if you use the net it still saves the hair than letting it long and exposed
Write a Python program in which a student enters the number of college credits earned. If the number of credits is greater than 90, 'Senior Status' is displayed; if greater than 60, 'Junior Status' is displayed; if greater than 30, 'Sophomore Status' is displayed; else, 'Freshman Status' is displayed.
Answer:
CONCEPT:Python code to get the status of Student based on thier Earnings CODE: def main(): print('Student Classification Software.') try: userCredit =int( input('\nPlease enter student credits: ')) if userCredit >90: print('\nSenior Status') elif 60 <userCredit <90 : print('\nJunior Status') elif 30 < userCredit < 60: print('\nSophomore Status') else: # this mean userCredit >= 26...
Explanation:
A certain university classifies students according to credits earned. A student with less than 30 hours is a Freshman. At least 30 credits are required to be a Sophomore, 60 to be a Junior, and 90 to be a Senior. Write a program that calculates class standing from the number of credits earned with the following specifications:
Write a function named determineStatus() that prompts the user for how many credits they have earned and uses a decision structure (if, else, etc.) to determine the class standing of the student. The function should display the standing to the student (85 points).
If the user tries to enter a negative value, the program should alert the user that negative numbers are not allowed (5 points).
Write a main() function that calls the determineStatus() function (5 points).
highlight and detail two ways that you can use excel to make you more efficient as a college student
MS excel is a office program and is quite commonly used in day to day business. The application is easy to use and have various advantages, as it can be used for statistical and scientific purposes.
The application can be made easy and presented in numerous ways. In order to highlight the importance of this software as a college student one can show the methods to interpret the data. Making worksheets and visualizing large amounts of data. Use of shortcuts for formula and use graphics to enhance presentations.Learn more about the detail two ways that you can use excel to make you.
brainly.com/question/24325415.
what is the full form of MHz
Answer:
megahertz
Explanation:
what is true of open source software
Answer:
lo que es cierto del software de código abierto?
opera con los principios subyacentes de la producción de iguales y la colaboración masiva, creando un desarrollo de software más sostenible para los usuarios finales.
Explanation:
Which of these would be a good name for a variable that holds a person’s first name?
tomSmith
N01
firstName
lastName
Answer:
firstNAme
Explanation:
Answer:
firstName
Explanation:
I took the test
Please please help I don’t understand this
Answer:
Yes and yes
Explanation:
It’s is this because yes and yes
Of the following options, which is most helpful in developing the effective study habit of staying organized? Keep pens, pencils, and highlighters off the desk. Put all computer files in one folder on the desktop. Store notes for all courses in a single notebook. Use a calendar to keep track of assignment due dates.
Answer:
use a calendar to keep track of due dates.
Explanation: If you use a calendar all of your assignments will be kept track of and will be organized not causing you to stress or become unmotivated to do any work at all.
Use a calendar to keep track of assignment due dates is most helpful in developing the effective study habit of staying organized. Hence, option D is correct.
What is effective study?Longer study sessions are less effective than shorter, more concentrated ones. In fact, one of the best study methods is to spread out your studying over a few sessions. During rigorous study sessions, which might last 30 or 45 minutes each, active learning strategies are applied.
Spaced practice, also known as scattered practice, is learning that occurs throughout a number of sessions at various times. Effective study methods can help you feel better about yourself, more competent, and more confident.
They can aid in reducing the pressure brought on by due dates and exams. You might be able to cut down on the amount of time you spend studying and free up more time by strengthening your study habits.
Thus, option D is correct.
For more information about effective study, click here:
https://brainly.com/question/10336207
#SPJ2
Who is the best Attack on Titan Character?
A.) Levi
B.) Eren
C.) Armin
D.) Mikasa
E.) Other
Answer:
Levi
Explanation:
Levi is just a massive W of a character
Write a program that get
the age of 50 people and
display the number of
people that fall under:
1. Baby : 0-5
2. Kids and teenagers: 6-17
3. Adults : 18 and over
Answer:
people = list(map(int, input().split())) # gets input and makes them into an integer
for i in range(len(people)):
if 0 <= people[i] <= 5:
print('Baby') # You didn't specify how you want to 'store' the info, but I'm just going to print it out
elif 6 <= people[i] <= 17:
print('Teen')
elif 18 <= people[i]:
print('Adults')
Explanation:
This is the basic structure of the code. This is written in Python 3x. If you are writing in a different language, then just use the template given to you!
Draw a flowchart or write pseudocode to represent the logic of a program that allows the user to enter a value for hours worked in a day. The program calculates the hours worked in a five-day week and the hours worked in a 252-day work year. The program outputs all the results.
Answer:
i think its 2131
Explanation:
c
Which format has the largest file size?
The code below the directions is all I have gotten so far would love any help to solve this thanks.
Answer:
variable = input("Enter some text: ")
midIndex = (len(variable) // 2)
midFix = variable[midIndex-1:midIndex+2]
print('Length is:', len(variable))
print('Middle index is:', midIndex)
print('Midfix of 3 is:', midFix)
Explanation:
You will want to do integer division here (//)
Also, keep in mind that the very first character of the string has index 0, which is why the midFix runs from midIndex-1 to midIndex+2
Can Microsoft Office training and skills make you more productive, confident, and marketable?
Answer:
Microsoft Office training can give you the confidence to use the tools you are provided. Having your MS Office skills professionally trained with significantly increases your work efficiency and confidence, which will also bring you with a sense of job satisfaction at work.
someone pls help me!!!
Answer:
I think it’s really cool. You don’t have to find someone’s Gm ail and then write a subject and whatever else. You can just send it like a message. I love how it has the call option because it means that you don’t have to have a number to call your friends or family. And you can do business em ail while messaging whoever you need to instead of going back and forth.
You can promote your business. You can also promote your video and share your screen. It is also a good way to talk to customers to discuss what you need to. A bunch of people have emails and it’s fairly simple to just add your friend and text them.
It might be hard to figure out at first. But when you get used to it it’s fairly simple. It can also shut down due to a bug and stop working, which makes it even more complicated. You can also get creeps that can hack into your Gm ail and read all of your information.
Explanation: heres a better one with no typos
Electronic payment system is a——–.
a. An informal report.
b. Not having legal sanction.
c. Always a statistical report.
d. Formal report.
[tex]\huge \mathcal \fcolorbox{cyan}{black}{ \blue{AnSweR}}[/tex]
Electronic payment system is a Formal report.With working from home now becoming a norm what is an effective network for an organization to secure its internal resources access by employees working from home
Answer:
Always encrypt data never store anything in plain text someone could use wireshark to pull out a data packet and if the data is not encrypted, expect things to happen.
arithmetic test is given twice within a few days to a student. The highest possible score is 40. He receives a score of 35 the first time and a score of 18 the second time. If similarly varying results are obtained from other students, the test result is probably unreliable in the idea o
Similar varying results obtained as scores from other students indicates that the test is; Unreliable.
This is about test reliability and it is based on consistent results. This implies that it is a measure of how well a characteristic of a test is measured dependably or consistently.With reference to the above on test reliability, applying it to our question. If the student took the test twice and got a similar result the two times, then the test is said to measure the score reliably but if the two scores are not similar but vary widely from each other, then the test is said not to measure the score consistently and is said to be unreliable.
In our question, since varying results scores are continually obtained for two same tests of same students, then we can say the test does not measure the scores reliably and we can conclude that the test is unreliable.Read more at; https://brainly.com/question/15136257
PLZ HELP I WILL GIVE BRAINLYEST
Answer:
software program and application software
in that order
Please help me ASAP!!
In Python, year = 2018 is known as a(n):
O conditional expression.
Otest case.
Oassignment statement.
O declarative indicator.
Answer:
assignment statement
Explanation:
it is assigning the number 2018 to variable called year
it is NOT checking to see if it was true (then it would be ==
Laptop is a small computer which may run with battery.
True or false....
Answer:
True
Explanation:
True all devices unless hooked up to a charger will run out of battery
Answer:
TRUE IS THE ANSWER
I HOPE IT IS HELPFUL
What the three factors that AI is using for information gathering
Answer and I will give you brainiliest
Answer:
AI uses accelerometers, infrared, magnetic and other electronic sensors to gather data