Information stored on CD-ROM disc must be read and then erased.True or false?​

Answers

Answer 1

Answer:

False

Explanation:


Related Questions

The image below shows an encoding for a black and white pixel image. The first two
bytes of the data (circled in red) are used to encode the width and height of the
image. What is the best term for this type of "data about the data"? Explain why it is
necessary to include this data in the encoding.

Answers

Answer:

where is the image i need the image

Explanation:

How can you place a paragraph of text in a box smaller than the text content, and add a scroll bar?
You can do this by using the __ property and setting it to ___.
(First blank: Border, Margin, Overflow.)
(Second Blank: Auto, hidden, scroll)

Answers

Answer:

I think it's overflow and hidden.

Explanation:

Answer:

You can do this by using the  overflow  property and setting it to  hidden .

Explanation:

How is a value list created?

by the user typing in values for the list
by the list pulling values from another table
by the list pulling values from the same table
by the user linking the list to another database

Answers

B I hope this helps!!!!

Answer:

A

Explanation:

edge

Why do numA and numB have the same scope in the subtract function?

def subtract(numA, numB):
return numA - numB

def divide(numC, numD):
return numC / numD

answer = subtract(24,6)
print (answer)
____________________
CHOICES
Only the subtract function can use or change the values of numA and numB.
numA and numB are both numeric.
numA and numB are similar names.
numA is passed the value 24 and numB is passed the value 6.

Answers

Answer:

Only the subtract function can use or change the values of numA and numB.

Explanation:

'scope' is about the parts of your program where a variable "exists", ie., can be used.

The other statements are factually true, but do not apply to the question.

Only the subtract function can use or change the values of numA and numB. So, the correct option is A.

What is Substract function?

In subtraction, the minuend is the primary number (from which a number must be subtracted) and the subtrahend is the second number (the number which is to be subtracted). The difference is the resultant number. In mathematics, the "minus" (-) operator is positioned in between the minuend and the subtrahend.

Use the minus symbol to carry out a basic subtraction operation (-). This is the simplest subtraction formula in Excel: =number1-number2. For instance, to subtract 10 from 100, write the equation below, which gives the answer of 90: =100-10. The values of numA and numB can only be used or modified using the subtract function.

Therefore, the correct option is A.

Learn more about Subtraction, here:

https://brainly.com/question/2346316

#SPJ2

What is bill Gates passion?

Answers

Computing. He makes software design and that revolves around computing

tO CrEaTe ToiLeT. Sorry, the real answer is to change the world via technology, and to keep on innovating.

I hope this helps, and Happy Holidays! :)

First time using this site so be mindful if I make any mistakes
For Micro Econ AP I am having a problem with this one question
It goes:
In what ways do households dispose of their income? How is it possible for a family's persoal consumption expenditures to exceed its after-tax income?

Answers

Answer:

Okay... Well

I will. help you out dear

The number of binary digits required to count 10010 is called _________​

Answers

Computer language code for computer people to hack and code

plz hurry i'm timed Which type of essay presents one side of an argument to convince readers to support it?

a descriptive essay
an expository essay
a narrative essay
a persuasive essay

Answers

Answer:

persuasive

Explanation:

Persuasive essay

Hope this helps

Provide an example by creating a short story or explanation of an instance where availability would be broken.

Answers

Incomplete/Incorrect question:

Provide an example by creating a short story or explanation of an instance where confidentiality would be broken.​

Explanation:

Note, the term confidentiality refers to a state or relationship between two parties in which private information is kept secret and not disclosed by those who are part of that relationship. Confidentiality is broken when this restricted information is disclosed to others without the consent of others.

For instance, a Doctor begins to share the health information of a patient (eg a popular celebrity, etc) with others such as his family members and friend

s without the consent of the celebrity.

With _________, users will receive recommendations for items liked by similar users.

Answers

Answer:

Collaborative filtering

Explanation:

Collaborative filtering is an algorithms family in which there are various ways to determine the same users or items also there are various ways to determine the rating depending upon the same users rating

Therefore as per the given situation, the above is the answer

Hence, the same is to be considered

Edhesive unit 2 lesson 5 coding activity 1 Write code which creates three regular polygons with 11, 14 and 19 sides respectively. All side lengths should be 1.0. The code should then print the three shapes, one on each line, in the order given (i.E. The one with 11 sides first and the one with 19 sides last). Sample run: regular hendecagon with side length 1.0 regular tetrakaidecagon with side length 1.0 regular enneadecagon with side length 1.0

Answers

Answer:

public class Polygon {

   private String name;

   private int sides;

   private double sideLength;

   public Polygon(String name, int sides, double sideLength) {

       if (sideLength <= 0) throw new IllegalArgumentException("Length cannot be zero or negative.");

       if (sides <= 0) throw new IllegalArgumentException("Sides cannot be zero or negative.");

       this.name = name;

       this.sides = sides;

       this.sideLength = sideLength;

   }

   public String getName() {

       return name;

   }

   public void setName(String name) {

       this.name = name;

   }

   public double getSideLength() {

       return sideLength;

   }

   public void setSideLength(double sideLength) {

       if (sideLength <= 0) throw new IllegalArgumentException("Length cannot be zero or negative.");

       this.sideLength = sideLength;

   }

   public int getSides() {

       return sides;

   }

   public void setSides(int sides) {

       this.sides = sides;

   }

   (use the at sign here)Override

   public String toString() {

       return "regular " + name + " with side length " + String.format("%.1f", sideLength);

   }

}

public class TestPolygon {

   public static void main(String[] args) {

       Polygon sides11 = new Polygon("hendecagon", 11, 1);

       Polygon sides14 = new Polygon("tetrakaidecagon", 14, 1);

       Polygon sides19 = new Polygon("enneadecagon", 19, 1);

       System. out. println(sides11);

       System. out. println(sides14);

       System. out. println(sides19);

   }

}

Explanation:

This java source code defines a class that creates a regular polygon based on the number of sides given to it.

Below is a screenshot of the program code and output.

Type the correct answer in the box. Spell all words correctly.
What does Clara create that programmers can use to write code?
Clara works in a software development company. Her boss identifies that she has strong problem-solving skills. Clara’s boss places her on the planning team to create____ for programmers.
This is for Edmentum final! thanks

Answers

Answer:

design documents

Explanation:

Usually, in a software development company or information technology (IT) department, software is developed through a team effort. Such teams have programmers and various other professionals, such as software developers and engineers. These professionals perform parts of the entire software development process. For example, the programmer is not the only person in a team who can formulate a solution to a problem. Many times, software developers and system analysts do this. They create design documents for the programmer to follow. Based on these design documents, a programmer writes the code for the program.

Adam has created a document for publishing and needs to ensure that no changes can be made. He has accessed the
Developer tab and is using the Restrict Editing task pane. Which option should Adam choose?

Formatting Restrictions

Editing Restrictions

Start Enforcement

Track Changes

Answers

Answer:

formatting restricions

Explanation:

i took the test

Answer:

B) Editing Restrictions

Explanation:

By enabling this and leaving it as the default setting, the document is now read only and cannot be edited.

Your friend told you that your favorite celebrity couple split. What is the best media form to use?
a
Wiki
b
Social Network
c
Infotainment site
d
Forum

Answers

Answer:

b

Explanation:

I think social network is the first source of every update of reality even wiki gets info from social network

Answer:a)wiki

kalo salah maaf ya

What social media profession entails determining how and in what way an organization will create and maintain a social media presence?
social media strategist
social media marketer
social media manager
social media specialist

Answers

Answer:

i believe the answer is b.

Explanation:

Answer:

(a) strategist

Explanation:

its the proven answer on my test

this is very simple i just need someone to type out this for me

Answers

Answer:

#27

2i , -2i, i, -i            i^2 = -1

1(x - 2i)(x + 2i) 1(x-i)(x+i)

x^2 +2x-2x -4.2i x^2 -xi-xi -i

(x^2 + 4)      x^4 + 1

x^2 +x^2 +11x

x^4 +5x^2 +4

+4+2+2+-1

*This was not simple for me

Which of the following is an example of data an Earth-observing satellite would collect?
studying ocean and land changes

monitoring the movement of ships

tracking signals between different points on Earth

studying weather patterns

Answers

Answer:

A

Explanation:

Hopefully this helps

aquatic life zone such as acorans and their bays, estuaries, coastal wetlands, shorelines, coral reffs and mangrove forests?

Answers

Answer:

Iajajkwbwiw whw

Explanation:

Bshsiwiqnqiaowpwownsbbsdk akakwjnwkwnwkwnwoqknanamamalamkakakskwkwkwnwmw.

I hope u liked my answer. Thank u

How many bit make a byte .​

Answers

Answer:

It is easy .8 bits.You have to note this

Answer: 8

1 byte = 8 bit

Which file is usually the first file to be displayed when you navigate to a website?

A. Starter.html
B. Home.html
C.index.html
D. Template.html

Answers

Home. HTML is the first file to be displayed

Which feature in PowerPoint is used to correct common capitalization and text formatting issues but can also be modified for more robust and personalized corrections?

Grammar Checker
Insights
Spelling Checker
AutoCorrect

Answers

Answer:

AutoCorrect: D on edge

Explanation:

Answer:

D.AutoCorrect

Explanation:

a software function that automatically makes or suggests corrections for mistakes in spelling or grammar made while typing.: a computer feature that attempts to correct the spelling of a word as the user types it The iPad boasts an autocorrect system that will try to figure out what you mean to type even when you don't quite tap the right keys.

What is the "middle" value for the "vertical-align" property based on?
a) a line's x-height
b) the height of the age
c) the shortest element on a line
d) the number of elements on a line

Answers

Answer: a) a line's x-height.

Explanation: The middle of the parent element is calculated by taking the x-height, halving it, and adding it to the baseline. Therefore, the "middle" value for the "vertical-align" property must be also based on the line's x-height.

what is not a type of application software

Answers

Windows nt is not a type of application software.

What are movies filmed before 1990's?

Answers

Answer: Once Upon a Time in the West (1968) PG-13 | 165 min | Western. ...

Cinema Paradiso (1988) R | 155 min | Drama. ...

Blade Runner (1982) R | 117 min | Action, Sci-Fi, Thriller. ...

2001: A Space Odyssey (1968) G | 149 min | Adventure, Sci-Fi. ...

Apocalypse Now (1979) ...

Chinatown (1974) ...

Stardust Memories (1980) ...

Le Notti Bianche (1957)

Explanation:

(This is for photography segment exam btw)

Who created the first known photograph?

A. George Eastman
B. Ansel Adams
C. Joseph Niepce
D. Louis Daguerre

Answers

Answer:

C. Joseph Niepce

Explanation:

C is correct for sureee

True or false binary code is a base ten system

Answers

Answer:

false it is a two base system

Dora has inserted a text box into a Word document that she is formatting. Which strategy will not format text boxes? Create a link between two text boxes. Set the height and width of the text box. Add background images to the text box. Link the text box to another document.​

Answers

Answer:

D. Link the text box to another document.​

Explanation:

A text box is an object that you may add to your page that allows you to place and enter text wherever in it. The correct option is D.

What is a text box?

A text box is an object that you may add to your page that allows you to place and enter text wherever in it. Content boxes may be handy for attracting attention to a certain text and also for moving text about in your document.

Dora has inserted a text box into a Word document that she is formatting. Therefore, the strategy that will not format text boxes is strategy will not format text boxes.

Hence, the correct option is D.

Learn more about Text Box:

https://brainly.com/question/13812028

#SPJ2

Which of the components of the box model is transparent and does not take a background color? content padding border margin

Answers

Answer:

the answer is

ও d- margin

Explanation:

⁂ just did the cumulative exam review, hope this helped ☺

Margin is the component of the box model which is transparent and does not take a background color. Thus, the correct option is D.

What is background color?

The background color is, in most of the cases, displayed in the form of an RGB triplet or a hexadecimal code of colors. The three separate pairs of different numbers which are given in the command, represent the different set of color values of the RGB spectrum. The first value in this set stands for the red color, the second color stands for the green color and the last one stands for the blue color.

The background style of the content, padding, and border areas of a box model are specified by the background property of the generating element of the system. Margin backgrounds are the elements which are always transparent in color.

Therefore, the correct option is D.

Learn more about Background color here:

https://brainly.com/question/14928554

#SPJ2

What is the missing line of code?
class vehicle:


self.model = strModel
self.color = strColor

def __str__(self):
return self.model + ' ' + self.color

Answers

Answer:

def__init__(self,strModel,strColor):

The missing line of the given code is as follows:

Class vehicle: def__init__(self,str Model,str Color).

What is the significance of programming code?

The significance of programming code may be determined by the fact that it implies a computer finishing the commands that are given by the user over and over again. As a result of this, people do not have to do the task repeatedly.

When it comes to using string commands in python, the sequence of characters inside either single quotes, double quotes, or triple quotes leads to their assignment to a variable. This variable more frequently relies on the instruction given by the user in a specific period of time.

Therefore, the missing line of the given code is well mentioned above with respect to python and code programming.

To learn more about Python programming, refer to the link:

https://brainly.com/question/26497128

#SPJ3

If a computer company develops a touchscreen tablet with the intent that it will have to be replaced within two years by the consumer, this is known as which of the following? consumer fraud supply and demand planned obsolescence innovative commerce

Answers

Answer:

b

Explanation:

demand planned obsolescence

Other Questions
Unscramble the following words to identify some health care facilities (10 points)(I will give brainliest) In the first six lines, circle all the uses of the words it and thing. What is it? How is it described? Which pairing of sacred text and religion is correct?A: Muslim- Old TestamentB:Judaism - Torah C: Christianity - Talmud D: Roman Catholic - Koran What is the solution to StartFraction negative 3 over 7 EndFraction m less-than 21?m 49m > -49m < -49 Two functions are shown below. f(x) = 3x + 7 g(x) = 2x + 12 What is the value of x where the graphs of f(x) and g(x) intersect? When two polarizers are overlapped, what angle relative to one another will allow for all of the incoming light to be blocked? * 1-calculate the mass of 4 moles of Na2-what is the mass of 0.3 moles of water H2o H:1 O:163-compute the number of moles found in 10g of ethanol C2H5OH C:12 O:16please help me as fast you can HELP ME PLEASE!!!!!Marisa saved $3000 to take a bike trip from Florida to California. She estimated her expenses to be $40 per day. The cost of a ticket to fly back is $240. The inequality below can be used to find the maximum number of days (d) for which Marisa can pay the expenses on the bike trip. 40d + 240 3000 Which inequality expresses the maximum number of days Marisa can pay the expenses for her bike trip?d81d75d69d40 The first question is in the USA, which is celebrated on February 2 and is also a film?Join if you wanna:)The first question is in the USA, which is celebrated on February 2 and is also a film? Please help .. What is the molarity of a 0.30-liter solution containing 0.50 moles of H2SO4?A 1.7MB 0.6MC 0.8MD 0.15M Please help me!!!NOTICE! TRAVELLERS intending to embark on the Atlantic voyage are reminded that a state of war exists between Germany and her allies and Great Britain and her allies; that the zone of war includes the waters adjacent to the British Isles; that, in accordance with formal notice given by the Imperial German Government, vessels flying the flag of Great Britain, or any of her allies, are liable to destruction in those waters and that travellers sailing in the war zone on the ships of Great Britain or her allies do so at their own risk.IMPERIAL GERMAN EMBASSY,Washington, DC, April 22, 1915What is the greatest risk Germany took by establishing this policy?wasting its energy chasing down passenger shipsharming innocent people and making new enemiesangering the British by denying them war suppliesfailing to prevent delivery of supplies by other routes Explain how to determine if you have a direct variation or proportional relationshipgiven a graph You ride your bike to school. As you approach an intersection, you decrease your speed by 1.5 miles per hour per second. Select an inequality that represents the time t (in seconds) until your speed decreases by more than 10.5 miles per hour. Then solve the inequality. How many fluid ounces are in a gallon?1 cup= 8 ounces1 pint= 2 cups1 quart=2pints1 gallon= 4 quarts 10 points and brainliest is it A, B, C, DWhich of the following words means a comparison between two things for the purpose of explanation or clarification?A. analogyB. anecdoteC. attention getterD. imagery 40 POINTS PLS HELP! 1. A description of what genetically modified foods are.2. A list of crops that are typically genetically modified.3. An explanation of why crops are genetically modified.4. A description of how crops are genetically modified.5. A list of how genetically modified crops affect society and the environment. ___________________________________Same as top but these are questions: 1. What are genetically modified foods? 2. What crops are typically genetically modified?3. Why are crops genetically modified.4. How are crops genetically modified? 5. how do genetically modified foods affect society in the environment.___________________________________And PLS, don't use this just for points!Thank you! List three Jim Crow laws Siberia is a huge portion of land that covers the majority of __________.A.eastern EuropeB.western EuropeC.eastern RussiaD.western RussiaWILL MARK BRAINLIEST IF RIGHT Please help!!! A lot of points!What conclusion can be made about Madeleine's maturity as she handled the text's mainconflict? Support your answer with details from the text. PLEASE HELPP 29. Compose a complete sentence in French using the words provided. Pay attention to noun-adjective agreement.Mes chaussures / tre / blanc et gris.30. Rewrite the following sentence in the feminine singular form.Ils sont tolrants et gnreux.31. Complete the statement below using the cue in parentheses: Quelle est sa nationalit? (U.S)Elle est de New York. Elle_________.32. Use the 24-hour system to answer the question below. Write out the time in French using words.Quelle heure estil? (4:20 p.m.)33. Rewrite the following sentence in the negative.J'ai des crayons dans mon sac.34. Rewrite the following sentence in the affirmative.Elle n'a pas de soeur.35. Compose a complete sentence using the words provided. Don't forget to conjugate the verb!Ils / aller / le caf.36. Compose a complete sentence using the words provided.Je / vouloir / manger / le restaurant.38. Answer the following question in the affirmative in French without repeating the word ptes. Replace the word ptes with the appropriate pronoun.Tu veux des ptes?39. Answer the following question with a complete sentence in French saying that you do like chocolate.Tu n'aimes pas le chocolat?40. Compose a complete sentence in French using the words provided.Ils / prendre / le train.