Answer:
In comparison to permanent storage, non-permanent storage, also called volatile memory, is a storage device whose data is lost when its power source is disconnected. Examples of non-permanent storage include CPU cache and RAM.
Explanation:
i just know
Which of these is a common problem with data transmission? a.File format b.Network Speed c.File size d.Data routing
Answer:
Answer is b
Explanation:
a. File format had nothing to do with the data transmission
c. File size matters only if the network speed is low, so, it again a fault of network speed.
d. Data routing has noting to do with data transfer, only network routing is required.
7.4 Code Practice 1
Write a program that prompts the user to input a letter grade in either capital or lowercase.
Your program should then output the correct
number of the GPA. See the table below for possible inputs and expected outputs. Your program should define at least one function named
GPACalc that is called from your main program.
The GPACalc function should take exactly one parameter-a string for the letter grade as lower or upper case. It will return either an
integer for the GPA value or a string Invalid, if the letter grade parameter is invalid.
Can someone please help me with this quickly cause I feel like I’m overthinking this
In python 3.8
def GPAcalc(grade):
if grade.lower() == "a":
return 4
elif grade.lower() == "b":
return 3
elif grade.lower() == "c":
return 2
elif grade.lower() == "d":
return 1
elif grade.lower() == "f":
return 0
else:
return "Invalid"
print(GPAcalc(input("Input a letter grade: ")))
I hope this helps!
The program illustrates the use of conditional statements.
Conditional statements are statements whose execution depends on the truth value of the condition.
The program in Python, where comments are used to explain each line is as follows:
#This defines the GPAcalc function
def GPAcalc(grade):
#This converts grade to lower case
grade = grade.lower()
#The following if conditions returns the GPA value depending on the letter grade
if grade == "a":
return 4
elif grade == "b":
return 3
elif grade == "c":
return 2
elif grade == "d":
return 1
elif grade == "f":
return 0
#If the letter grade is Invalid, then the function returns Invalid
else:
return "Invalid"
#This gets input for grade
grade = input("Letter Grade: ")
#This prints the corresponding GPA value
print("GPA value:",GPAcalc(grade))
At the end of the program, the corresponding GPA value is printed
Read more about similar program at:
https://brainly.com/question/20318287
What is the highest numeral in a binary code?
Answer:
The highest numeral in binary code is 1
In binary, you can only have 1s and 0s
if you're asking for the biggest number that can be represented, it's 255, which is 11111111. (this is 8 1s)
Explanation:
Is this a trick question? lol
May I have brainliest please? :)
Social media marketers need the ability to do what?
Code in JavaScript
Collaborate across teams
Communicate with customers
Make a website useful
...............is a personal computer that fits on desk.
Answer:
desktop computer
Explanation:
i want pizzzzzzzaaaaaaaaaaa
Python - Write a program to print the multiplication table as shown in the image by using for loops.
Answer:
Explanation:
The following python code creates the multiplication table for 10 rows and 10 columns. This code uses nested for loops to traverse the table and print out the product of each multiplication. The image attached shows the output of the code.
for x in range(1, 11):
for y in range(1, 11):
z = x * y
print(z, end="\t")
print()
The program to print the multiplication table as shown in the image by using for loops is in the Source code.
The Python program that uses nested for loops to print the multiplication table:
Source code:
for i in range(1, 11):
for j in range(1, 11):
if i == 1 and j == 1:
print("x", end=" ")
elif i == 1:
print(j, end=" ")
elif j == 1:
print(i, end=" ")
else:
print(i * j, end=" ")
print()
This program will iterate through the values of `i` from 1 to 10 and `j` from 1 to 10. It checks for special cases when `i` or `j` is equal to 1 to print the headers (x and the numbers 1 to 10).
For other cases, it calculates the multiplication of `i` and `j` and prints the result.
Learn more about Nested loop here:
https://brainly.com/question/33832336
#SPJ6
If you wanted forests to appear on your map, which map layer would you select?
Select an answer:
Base
Land Cover
Terrain
Building Footprints
If you wanted forests to appear on your map, you would select the "Land Cover" map layer. The Land Cover map layer provides information about the different types of land cover or vegetation present in an area. So second option is the correct answer.
Land cover includes data on forests, grasslands, wetlands, agricultural areas, urban areas, and other land cover categories. By selecting the Land Cover layer, you can visualize and display the distribution and extent of forests on the map.
This layer is specifically designed to highlight and represent the various types of vegetation, including forests, making it the most appropriate choice when you want to show the presence and location of forests on your map.
The Land Cover layer helps to enhance the visual representation of the landscape and provide valuable information about the vegetation patterns and ecological features of an area.
So second option is the correct answer.
To learn more about map: https://brainly.com/question/105644
#SPJ11
1.Choose the best answer.:
a) Broadly, computers are of ................ purpose and ................ purpose
(i) specific, general (ii) specific, broad (iii) precise, broad (iv) None of them
b) .................. computers works on continuous signals
(i) Analog (ii) Digital (iii) PS/2 (iv) None of them
c) ................ computers are the largest and most expensive digital computers.
(i) Mainframe (ii) Mini (iii) Super (iv) Apple
d) .................. is the example of mainframe computer.
(i) CYBER 205 (ii) IBM 3081 (iii) VAX (iv) IBM 9375
e) Macintosh is the OS used in .................. computer.
(i) IBM (ii) mainframe (iii) super (iv) apple
f) .............. was mainframe computer brought first time to process census data in Nepal.
i) IBM 1400 ii) IBM1401 iii) IBM1402
g) ……… computer are used in hospital for Ultra Sound.
i) Analog ii) Digital iii)Laptop iv) Hybrid
h) Nowadays, most powerful super commuter is Sunway taihulight from .......................
i) India ii) Germany iii) China iv) Nepal
Answer:
specific, generaldigitalminiCYBER 205IBMIBM1401digitalGermanyWhat parts of the computer does it not need to function?
2
Select the correct answer.
Nick is a food blogger. He first writes his draft on an electronic document, checks and corrects mistakes, and pastes the content on his blog. Which
word processing feature does Nick use for checking and correcting mistakes?
A.
B.
C. Track Changes
O D. Comments and Track Changes
Comments
Spelling and Grammar
hts reserved.
Reset
Next
Sign out
Nov 30
Answer:
Explanation:
the answer is b
I need help with a python comp sci problem
For this problem you will use the KnockKnock.txt file to create a program that randomly selects a knock-knock joke from the file. It will then go through the traditional knock-knock format, with a small time lapse between lines as demonstrated in class.
I linked the contents to the KnockKnock.txt file and an example of the correct output.
The program based on the information is given below
import random
def select_joke():
with open("KnockKnock.txt", "r") as file:
jokes = file.readlines()
joke = random.choice(jokes)
return joke.strip()
selected_joke = select_joke()
print(selected_joke)
How to explain the programMake sure to have a file named "KnockKnock.txt" in the same directory as your Python script, and populate it with a list of knock-knock jokes, each on a new line. When you run the program, it will randomly select a joke from the file and print it to the console.
Remember to replace the file name with the correct path if the "KnockKnock.txt" file is located in a different directory.
Learn more about Program on
https://brainly.com/question/26789430
#SPJ1
You may use Linux to make a ______________ of the hard drive.
A. Bootable copy
B. Screen shot
C. New version
D. Forensically valid copy
You may use Linux to make a forensically valid copy of the hard drive. Hence, D. is the correct answer.
A redundant copy of your computer's system disk is called a bootable backup. The operating system and application software are identical to those on your system drive. Additionally identical are the user configuration and all data files.
Including all files, directories, and unallocated, free, and slack space, a forensic image (forensic copy) is a direct bit-by-bit, sector-by-sector replica of a physical storage device.
A screenshot is an image that captures the contents of a computer monitor. It is sometimes referred to as a screencap or screengrab. Using screenshots, you can record exactly what's on your screen for later sharing or reference.
To know more about Linux, click here:
https://brainly.com/question/30176895
#SPJ11
HTTP https CSS JavaScript and HTML are types of coding and formatting behind web pages true or false?
Answer:
True
Explanation:
In order to be able to run a webpage successfully, there are various coding and formatting that are required and can considered necessary.
They are:
a) Hypertext Transfer Protocol(HTTP): This is a protocol that is made use of on webpages. It is used to determine the information or data that is collected and transmitted through webpages. The commands that are programmed on webpages are modified by this protocol. The data or information that can be transmitted using HTTP includes: Pictures, Video or Audio recordings e.t.c.
b) Hypertext Transfer Protocol Secure(HTTPS) : This is an advanced or modified form of HTTP. The difference between them is HTTPS is more secure than HTTP. HTTPS is defined as a more secured protocol thorough which data or information can be transmitted from one webpage to another. HTTPS make used of an encrypted type of security during data transmission.
c) Cascading Style (CSS): It is a computer language technology that helps to define and modify the way a webpage looks like. Cascading Style can be defined as a formatting style that deal with the fonts, colour , layout of a webpage.
d) JavaScript :This is a programming language that is used on webpages. It is a set of coding that has commands embedded insided that is written to make webpages more interactive and fun for the users of the Internet.
e)Hypertext Markup Language (HTML): This is what is used to create webpages on the internet. Hypertext Markup Language defines what a webpage actually looks like which involves, the written document on the webpage
Answer:
true 100 percent true
Explanation:
its the truuth its the truuuth its the truuuuuuuth
yea aa
2. which core domain includes connection and closeness with others?
The core domain that includes connection and closeness with others is the social domain. The social domain refers to the relationships between an individual and other people, including the capacity to form and maintain interpersonal connections, attachments, and social networks.
Social domain comprises social interaction, communication, and emotional regulation, as well as the ability to read and interpret social cues and to understand the social rules that govern interpersonal relationships.
In early childhood development, social skills play a significant role as they allow children to establish relationships and connect with other people. They learn to communicate their needs and emotions, engage in imaginative play, and work together to solve problems.
Socialization is also critical in shaping a child's personality, behavior, and self-esteem.
In conclusion, the social domain is essential in a child's holistic development as it enables them to build and maintain relationships, closeness with others, and function effectively in society.
To learn more about closeness: https://brainly.com/question/29457666
#SPJ11
what are the component of cyber law?
Answer:
The very important component is "intellectual property".
Explanation:
Cyberlaw seems to be a component of the entire judicial process dealing with either the World wide web, virtual worlds as well as their corresponding legal problems. Intellectual property may also include locations such as technologies, literary criticism, songwriting, as well as industry. Nowadays it provides electronic products that are already offered mostly on the online platform.The _________________ is a useful device for computing probabilities wherein all the stages of events are represented.
The tree diagram is a useful device for computing probabilities wherein all the stages of events are represented.
A tree diagram is a graphical representation of a probability problem that helps in visualizing and calculating the probabilities of different outcomes. It consists of branches that represent the different possible outcomes at each stage of an event, with the probability associated with each outcome. The initial stage of the event is represented at the top of the tree, while subsequent stages branch out below. By systematically breaking down the event into stages and considering all possible outcomes, the tree diagram allows for a comprehensive analysis of the probabilities involved.
The tree diagram is particularly helpful when dealing with complex events that involve multiple stages and conditional probabilities. It enables the clear visualization of the various paths and outcomes, making it easier to calculate the probabilities associated with each specific scenario. The branches of the tree diagram can be labeled with the probabilities of the corresponding outcomes, allowing for straightforward calculations and the determination of overall probabilities.
By utilizing the tree diagram, one can effectively analyze the probabilities of different events and make informed decisions based on the likelihood of each outcome. It helps in organizing the information in a structured manner and provides a visual representation that aids in understanding the complex relationships between events and their probabilities.
Learn more about probabilities
brainly.com/question/29381779
#SPJ11
1. which feature enables you to ensure that when you select a child metadata, the parent element nested metadata is also selected?
The feature that enables you to ensure that when you select a child metadata, the parent element nested metadata is also selected is called cascading metadata.
Cascading metadata allows you to create relationships between elements, and when a child element is selected, its parent element is automatically selected. For example, if you have a metadata set that contains elements like "genre" and "sub-genre", then you can set up a cascading relationship between them so that when the user selects a "sub-genre" element, the "genre" element will be selected automatically.
Cascading metadata also works for more than two elements. You can set up cascading relationships for an unlimited number of elements so that when a child element is selected, all of its parent elements will also be selected.
Cascading metadata is a great way to ensure that all necessary metadata is selected when the user is entering data into a system. It's also a helpful tool for data organization and classification.
You can learn more about metadata at: brainly.com/question/14543147
#SPJ11
What is union select attack?
Answer:
i din men do bar jhad chuki thi aur man
Explanation:
fnvchv h i come to draw a sketch of vyghck for more artworks by me for more artworks by me for more artworks by me for more artworks of any reference perfect for me for more artworks for more artworks of the increasing the increasing the number is not reachable by phone at home and learn to read the increasing \(22 { + \times \\ e}^{2} i \\ 0y { \sqrt[ \sqrt[ \sqrt[ \sqrt[ \sqrt[ \sqrt[?]{?} ]{?} ]{?} ]{?} ]{?} ]{?} \times \frac{?}{?} \times \frac{?}{?} \times \frac{?}{?} \times \frac{?}{?} \times \frac{?}{?} \times \frac{?}{?} \times \frac{?}{?} \times \frac{?}{?} }^{?} \)m tujbhgCompare the printout on the SDV screen (Brain) with the list you created and coded. Why didn’t the Brain have 1s and 0s on it? Can you identify how the code creates what you saw on the Brain?
The printout on the SDV screen (Brain) and the list I created and coded, are different because the code creates a representation of the data on the Brain, rather than displaying the data itself in the form of 1s and 0s.
The code is used to create the visualization on the Brain by interpreting the data and displaying it in a way that is understandable for humans. This visualization can include various elements such as text, images, and graphics. The code is responsible for creating the layout, design, and functionality of the visualization, as well as for processing and displaying the data.What is the code about?It is likely that the code uses various programming libraries and frameworks to create the visualization on the Brain, and these libraries and frameworks have their own methods for handling and displaying data.
The code may also use algorithms and data structures to process and organize the data before it is displayed on the Brain.
In all, the printout on the SDV screen (Brain) and the list I created and coded are different because the code creates a representation of the data on the Brain rather than displaying the data itself in the form of 1s and 0s. The code uses various programming libraries, frameworks, algorithms and data structures to process and display the data in a way that is understandable for humans.
Learn more about coding from
https://brainly.com/question/27639923
#SPJ1
cookies that remain on your device indefinitely are called
Answer:
Persistent Cookies: Persistent cookies stay on the user's browsing device until the user clears them or until they reach their expiration. Persistent cookies are those that retain information on the user's specific preferences so that we can provide a “personalized” user experience.
Explanation:
I hope that this helps, if you have anymore questions, please, feel free to ask. I hope that you have an amazing rest of your day. ;D
Cookies that remain on your device indefinitely are called persistent cookies.
What are persistence cookies?Cookies that remain on your device indefinitely are called persistent cookies.
These cookies are stored on the user's device even after the browser is closed, and can be used to track the user's activity over time.
We have,
Persistent cookies:
It can be useful for storing information such as login credentials or user preferences, as they allow the user to remain logged in or have their preferences saved between browsing sessions.
However, they can also be used for tracking and advertising purposes, which has raised concerns about online privacy and security.
Many web browsers offer options for managing cookies, including the ability to delete or block persistent cookies.
Users can also use browser extensions or privacy tools to control how cookies are used on their devices.
Thus,
Cookies that remain on your device indefinitely are called persistent cookies.
Learn more about persistent cookies here:
https://brainly.com/question/29608733
#SPJ5
What are some ways you can give staying off your phone a "boost" and make it easier to do?
If you're trying to break a bad habit, what are some things you can do so that you don't slip back into old ways?
Please help this is due today and I really need help.
Answer:
go do something outside and leave your phone inside to charge
Explanation:
What type of model are Charts? Why?
Arrange the storage media in order of relative storage size from smallest to largest.
CD
thumb drive
DVD
hard disk
Flash memory
Blue-ray
Answer:
CD (700 MB)
DVD (17.0 GB)
Blue-ray (50 GB)
Thumb drive (2 TB)
Hard Disk (20 TB)
Flash Memory (100 TB)
***WARNING*** Values shown are for maximums in 2020.
Explanation:
For this problem let's assume 2020 standards and that the question is asking about the storage size in terms of data storage and not physical size. Let's define the maximums for each of the following items:
CD --> Maximum size of 700 MB (Standard)
thumb drive --> Maximum size 2TB (Made by Kingston)
DVD (1 sided/ 1 layer) --> 4.7 GB (Retrieved from Quora user Daniel Dillon)
DVD (1 sided/ 2 layer) --> 8.5 GB (Retrieved from Quora user Daniel Dillon)
DVD (2 sided/ 1 layer) --> 9.4 GB (Retrieved from Quora user Daniel Dillon)
DVD (2 sided/ 2 layer) --> 17.0 GB (Retrieved from Quora user Daniel Dillon)
hard disk --> 20 TB (Made by Western Digital and Segate)
Flash memory --> 100 TB ( Made by NimbusData retrieved from techrader.com)
Blue-ray (single-layer) --> 25 GB ( Standard issued by Samsung )
Blue-ray (dual-layer) --> 50 GB ( Standard issued by Samsung)
Now that we have these maximums as defined in 2020, let's sort them from smallest to largest in terms of data storage size.
Note, 1 MB < 1GB < 1TB.
CD (700 MB)
DVD (17.0 GB)
Blue-ray (50 GB)
Thumb drive (2 TB)
Hard Disk (20 TB)
Flash Memory (100 TB)
Note, the order of maximum storage may be different than what your assignment seeks based on whatever year's data the assignment is looking for. This assortment is for technology available in 2020.
Cheers.
The term "thumb drive" refers to a flash memory storage device with its own processor for storage management.
What is thumb drive?A thumb drive (also known as a USB drive or flash drive) is a type of flash memory storage device that contains its own processor to manage its storage. It is small, portable, and typically connects to a computer via a USB port.
Flash drive is a type of flash memory storage device that contains its own processor to manage its storage. It is small, portable, and typically connects to a computer via a USB port. It is also known as a thumb drive or USB drive. It stores data in flash memory, which is a type of non-volatile memory that retains data even when the power is turned off. Flash drives are commonly used for storing and transferring files between computers, and for storing backup copies of important data.
Therefore, The term "thumb drive" refers to a flash memory storage device with its own processor for storage management.
Learn more about Flash drive here:
brainly.com/question/30366040
#SPJ3
This inventor made their own fortune. They had little to no help in become one of the first black millionaires. They invented a cream to help hair grow back, along with many other beauty products. Who is this inventor?
Answer:
Madam C. J. Walker or their birth name, Sarah Breedlove.
Hope this helps!
PLS HELP ASAP! WILL GIVE BRANLIEST TO THE FIRST PERSON TO ANSWER. 100 points!
Use the information under the Nutrients That the Human Body Needs title to create a multilevel list. Your list should meet these requirements.
a. The first level should be the name of the nutrient.
b. The second level should contain the subheadings “Uses” and “Sources.”
c. The third level should contain the specific information about the second level.
What I did so far:
1) Carbohydrates
a)
Answer:
Carbohydrates are found in a wide array of both healthy and unhealthy foods eg potatoes, cookies, etc.
Explanation:
Answer:
1) carbohydrates
what do you mean by a)?
Select the one that uses the heading tag correctly.
a.
b.
c.
d.
Answer:
yes . where is option please check it
write a class definition line and a one line docstring for the classdog. write an init method for the classdog that gives each dog its ownname andbreed.test this on a successful creation of adog object.
category Dog
A canine with a name and breed.
Defined as self, name, and breed:
self.name equals name
breed = self.breed
foreign dog
if "__main" and "__name" match:
dog = sugar
Dog
"Sugar" and "border collie"
print(sugar.name)
print(sugar.breed)
What is Classdog?CLASS: The word class is used to define a class, which is a type of object that has methods and functions and describes what an object will be.
category Dog
# The class has a definition
Docstring, which is just a shortened version of documentation strings, offers a simple means of connecting Python modules, functions, classes, and methods with their corresponding documentation. That is, it reveals what they do.
It's stated by enclosing it in triple quotations.
A canine with a name and breed.
The method is then defined, and the class is given attributes (Name and Breed).
Defined as self, name, and breed:
self.name equals name
breed = self.breed
Next, we import the class: Make sure you save your source file with the name dog before proceeding.
We finally print out its characteristics.
foreign dog
if "__main" and "__name" match:
dog = sugar
Dog
"Sugar" and "border collie"
print(sugar.name)
print(sugar.breed)
To help you understand how the code functions, I've attached an image.
To Learn more About category Dog refer To:
https://brainly.com/question/5992870
#SPJ1
A career in culinary arts can best be described as working in the __________ industry.
A.
food
B.
clothing
C.
computer
D.
entertainment
Answer:
A-Food
Explanation:
in data and process modeling, a(n) shows what the system must do, regardless of how it will be implemented physically. a. organizational model b. physical model c. logical model d. relational model
The correct answer is c. logical model.
The logical model shows the data and processes in a system without including details about how they will be physically implemented. This is in contrast to the physical model, which shows the actual hardware and software components that will be used, and the relational model, which shows the relationships between different data entities. The organizational model, on the other hand, is a broader term that refers to the overall structure and hierarchy of an organization.