Is this correct just need somebody to check my answer plz and use your honest answer
Answer:
your answer looks correct
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).
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
3. Find the best.
Write a program that will allow an instructor to enter a series of exam scores. After the last score, the instructor should enter a negative number as a signal that there is no more input. Print the average of all the scores and the highest score entered.
Do this with beginner c programming.
Example output:
Exam Average Program
Enter the scores when prompted, negative number to quit.
> 1
> 10
> 5
> -1
Average Score = 5.3333, best = 10
Answer:
1. is the answer
Explanation:
mark me as brainlestWrite a predicate function called same_ends that accepts a list of integers and an integer (n) as arguments. Return True if the first n numbers in the list are the same as the last n numbers in the list, and False otherwise. For example, if the list was [1, 2, 3, 4, 99, 1, 2, 3, 4], the function would return True if n is 4 and False if n is 3. Assume that n is between 1 and the length of the list, inclusive. Solve It!
Answer:
5=5
Explanation:
2+2 is 4
Below is the required Python code for the program.
PythonProgram code:
# Starting the code
# Defining a function
def same_ends(lst, n):
# Starting a loop
if lst[:n] == lst[-n:]:
return True
else:
return False
# Testing the function
lst = [1, 2, 3, 4, 99, 1, 2, 3, 4]
# Printing the values
print(same_ends(lst,4))
print(same_ends(lst,3))
Explanation:
Starting the code.Defining a function.Starting a loop.Testing the function.Printing the values.End up a code.Output:
Find below the attachment of the code output.
Find out more information about python here:
https://brainly.com/question/26497128
what type of information system would more be likely to be used by schools?
commercial
scientific data processing
information retrieval and management
automation
Answer:
probably
informaition retreival
Explanation:
What is the purpose of a project overview?
to provide specific roles for all of the “little people” working on the project
to provide an “up close” look at the project to the leadership
to provide an “in-depth” look at all of the tasks that will need to be done
to provide a “big picture” of the project to everyone involved
Answer:
option 3 should be the answer is this helps please give the brainliest award.
Answer: D
to provide a “big picture” of the project to everyone involved
this is the right answer
You must configure a certificate authority on your network to use EFS. True or False?
a. True
b. False
You do not need to configure a certificate authority on your network to use EFS.
EFS is the short form for Encryption File System. With EFS, users can encrypt their files and folders and even the entire content of a given drive. By encrypting these files and folders, the access to them are restricted and thus increasing, improving and enhancing the security level of the users' data.
In other words, even though there are other ways to restrict access (such as using logon authentication and NTFS file permissions), EFS allows to add another layer of security to data.
To encrypt and decrypt data files and folders in EFS, a certificate authority (CA) could be used. This is however not a requirement. In the case where there is no certificate authority, EFS will sign a default certificate that will be used for encryption. In other words, EFS will generate its own certificate if none does not exist.
The following are other things to note about EFS
i. EFS uses a public and private key pair to encrypt data.
ii. Users do not need to enable EFS. It is enabled by default.
iii. For EFS to encrypt a file, the NTFS file system must be used.
Since a certificate authority is not required on your network to use EFS, the correct option is:
(b) False.
Read more at: https://brainly.com/question/10410730
What the advantages and disadvantages of file sharing to the users
Answer:
.....................................
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
Pls help me to answer this question ASAP
Explain how AI smartphone software in the rental car can be a threat to privacy.
**Answer and I will give you brainiliest**
Answer:
because of the gravity of the earth
Explanation:
because of the gravity of the earth
Answer:
Well, just like there is spyware on phones there are very much likely have spyware on cars too. Think about it if a car can connect to your phone via Bluetooth and take calls it can very possibly have a microphone in it. If that microphone was activated it would be a invasion of privacy hence it can be a threat to privacy. This includes dashboard camera and maybe even when you connect your phone to Bluetooth there might still be a possibility that it can steal your data through that.
Match each term to its definition.
parameter
return value
function
a value that can be passed from a function back to the calling part of a program.
a value that can be passed to a function
a group of instructions that can be used to organize a program or perform a repeated task
Answer:
Parameter - A value that can be passed to a function
Return Value - A value that can be passed form a function back to the calling part of a program
Function - A group of instructions that can be used to organize a program or perform a reapeated task.
How many hours do you spend on the Internet per day?
What is nanotechnology?
Answer:
Nanotechnology is a field of research and innovation concerned with building 'things' - generally, materials and devices - on the scale of atoms and molecules.
Explanation:
The diameter of a human hair is, on average, 80,000 nanometres.A nanometre is one-billionth of a metre – ten times the diameter of a hydrogen atom.Answer:
Nanotechnology are the areas of science and engineering where phenomena that take place at dimensions in the nanometre scale are utilised in the design, characterisation, production and application of materials, structures, devices and systems.
1. What are the main uses for Protein in the body?
2. What are the main types of food you get Protein from?
Answer:
1 muscle building
2 meats, nuts
Explanation:
1 proteins are needed for growth ,they are used to repair worn out tissues, they are used to make enzymes and hormone they give energy ,they are used to make white blood cells stronger.
2 meat egg fish milk beans
9. These particular machines can be decentralized.
A) Risograph
B) Photocopier
C) Desktop computer
D) Printers
__and__??
Answer:
A, B
Explanation:
Because the desktop computer and the printers are decentralized, they're connected with another noce in a company.. So I suppose that the Risograph and photocopier isn't decentralized.
How many times will the loop body execute?
x = 3
while x >= 0:
X = X - 1
3
4
5
6
Answer:
B. 4
Explanation:
Rules :
x = x - 1
if x = 3, so :
x = x - 1
4 = 4 - 1
4 = 3
Option B
Take the midterm, quiz, and final exam of 5.1 million points, and the average score is 1) A if it is 90 or higher, 2) B if it is less than 90 and 80 or higher, 3) C if it is less than 80 and 70 or higher, 4) Write a program that outputs D if less than 70 and more than 60, 5) F if less than 60.
Answer:
B
Explanation:
Not so sure
Ctrl+Home moves the cell pointer to the cell__________MSExcel.
Answer:
key stroke
Explanation:
Ctrl+Home moves the cell pointer to the cell___key stroke_______MSExcel.
The answer will be
[tex]key \: \: \: \: stroke[/tex]
Hope it helps.
ray4918 here to help
Research on a latest advancement in computing and discuss its potential or how will it impact our lives in the future
Answer:
hqiauahhwbbwbwbbssbbs
Please help lol..
Type the correct answer in the box. Spell all words correctly. Which description uses two to three sentences? A short (two to three sentences) description of a story that includes the main character, the antagonist, and the genre of the story is a _____ .
Answer:
This would be called the summary or the synopsis. In further detail, it's a short, lively overview of a story, including the main character, the antagonist, and the genre.
Explanation:
Hope it helps!
Answer:
introduction
Explanation:
What keeps a collection of files in one location?
Answer:
A folder.
Explanation:
You can organize files into folders, which will separate them into groups. Keep in mind that this is meant for computers. Having a folder can group all of the files together, to make them easier to access.
-kiniwih426
PLZZZ HELPPP NOWW
A person's digital footprint consists of the following:
I. Comments you leave
II. Pictures you post
III. Topics you search
IV. Apps you use
V. Music you download
VI. Emails you send
Answer:
2 and 6 for sure maybe 3 I'm not too sure on that one
what is a "for loop" that will produce the following output:
1+2 = 3
2+3 = 5
4+5 = 9
8+9 = 17
16+17 = 33
32+33 = 65
64+65 = 129
any help would be very appreciated
Answer:
128+129= 257
Explanation:
128+129= 257
Answer:
1+2= 3
loop for all interger
What are the difference generation of computer system?
Answer:
5 generations
Explanation:
1st generation 1940's to 1950's vacuum tube based.
2nd generation 1950's to 1960's transistor based.
3rd generation 1960's to 1970's integrated circuit based.
4th generation 1970's to 1980's microprocessor based.
5th generation present and future artificial intelligence based.
Someone help me please i need to finish this
Answer:
My digital life is like a adventure because there is so much to discover.
Hope this help please give the brainliest award.
how do you unblock things on a school cromebook?
Answer:
School chromebooks are usually controlled/managed my administrators or teachers, so if you wanted to unblock things on a school chromebook you would have to ask an administrator or teacher at your school.
What is another term for the notes that a reader can add to text in a word-
processing document?
Columns
Formatting
Font
Comments
Another term for the notes that a reader can add to the text in a word-processing document is known as Comments. Thus, the correct option for this question is D.
What are the characteristics of word documents?The characteristics of word documents are as follows:
It allows a user to construct professional write-ups.It has editing and formatting tools that modify the existing documents.It authorizes the user to insert charts, tables, diagrams, etc. within the document to make it more attractive.According to the context of this question, a comment is another term that represents the notes a reader can normally insert within the existing document in order to modify or highlight the required text in the document.
Therefore, a comment is another term for the notes that a reader can add to the text in a word-processing document. Thus, the correct option for this question is D.
To learn more about word-processing documents, refer to the link:
https://brainly.com/question/1596648
#SPJ1
Project Description In this exercise, you are responsible for the design and implementation of a school dismissal database. School personal need a database to determine whether students ride the bus at the end of the school day or if students are pickup by an organization or designated adult. The database will be used by school personal to look-up the names of adults and organizations who have the authority to pick-up students from the school from school. To design the database, you will first review the preliminary design requirements. The preliminary design requirements are minimal and incomplete. Add requirements to complete the design of the database. Describe requirements on this document as indicated by the words, Complete this section of the document. You will use Oracle Data Modeler to create a logical and relational model. Then you will implement your database design as an Oracle database. After the Oracle database is created, reverse engineer the database to the relational and logical models.
Answer:
school bus for. the students