A folder is a collection of related of data is true or false​

Answers

Answer 1

Answer:

false

Explanation:

may this answer is helpful for you

Answer 2
Yea I’m gonna have to agree with the person above I think it’s false as well

Related Questions

how to become a web developer ?​

Answers

Explanation:

1.By Learning web development Fundamentals.

2.Choose a development specialization.

What do ALT stand for

Answers

Answer:

please mark me brainliest

Explanation:

ALT, which stands for alanine transaminase, is an enzyme found mostly in the liver. When liver cells are damaged, they release ALT into the bloodstream. An ALT test measures the amount of ALT in the blood.

Alt stands for "Alternate Key." I hope that this helped you.

A class can _____ multiple interfaces. Select one: a. extend b. implement c. inherit d. overload e. override

Answers

Option B is the correct answer.

A class can implement multiple interfaces. Thus, the correct option for this question is B.

What do you mean by Interface?

An interface may be defined as the place or location at which independent and often unrelated systems meet with one another and function on or communicate with each other in order to convey information and data.

According to the context of this question, a class that has some characteristics and based on that also possesses multiple interfaces in order to implement all of them in specific circumstances.

These interfaces illustrate some unique qualities that meet the final outcome of the communication. These qualities developed a rapport in front of the user to make some distinguishable attributes.

Therefore, a class can implement multiple interfaces. Thus, the correct option for this question is B.

To learn more about Interfaces, refer to the link:

https://brainly.com/question/5080206

#SPJ2

Who made computer ? Which year?

Answers

Answer:

The first computer that resembled the modern machines we see today was invented by Charles Babbage between 1833 and 1871.

Answer:

Charles Babbage in 1991

Benedetta was cyber bullied by her classmates about her looks. WHAT computer ethics was violated?

Answers

Answer:

Digital Rights Foundation’s Cyber Harassment Helpline is Pakistan’s first dedicated, toll-free Helpline for victims of online harassment and violence.  The Helpline will provide a free, safe and confidential service. The Helpline aims to provide legal advice, digital security support, psychological counselling and a referral system to victims of online harassment. The Helpline will provide a judgment-free, private and gender-sensitive environment for all its callers.

Explanation:

Draw a system flowchart illustrating the steps performed by an operating system as it executes the instruction to back up a disk on a single-user computer system.

Answers

The flowchart's pseudo code is as follows:

The command BACKUP user issues through the user interface.UI executes the awakening File Manager instruction.File Manager resolves the address of a backup file that wakes up Device Manager.Device Manager opens the drive access path to back files in the Memory Manager I/O buffer that reads the file (or part of the data).In the I/O buffer, Memory Manager assigns memory to the processor manager.Processor Manager loads the I/O buffer memory file, and File Manager awakens.File Manager determines the document address be copied into the Processor Managers new disc.The Device Managers, Processor Manager copies memory to the I/O buffer.This device manager enables you to open a drive access path where a new disc awakens file manager will be duplicated by the I/O buffer.File Manager decides whether the file is copied completely If yes if you are jumping to point 11, you decide the next area of the file that will be backed up and Device Manager is returning to point 4.File Manager decides if this is the last backup item, if not, it wakes up Manager of Processor Activates Processor Manager for sending interface File N is backed up for a client can jump back to point 3 if affirmative. The Processor Manager activates the user interface to send the user message 'All files have been backed up'.

Learn more:

brainly.com/question/17373574

brainly.com/question/13152070

Which unit of the computer works of the output?​

Answers

Answer:

monitor

Explanation:

this is because monitor displays information so it an output

If the main cable in a bus topology is to be more than ____ yards long, the network will need one or more hubs.

Answers

Answer:

I think 10 yards

if wrong by chance correct me please

LAB: Input and formatted output: House real estate summary
Sites like Zillow get input about house prices from a database and provide nice summaries for readers. Write a program with two inputs, current price and last month's price (both integers). Then, output a summary listing the price, the change since last month, and the estimated monthly mortgage computed as (currentPrice * 0.051) / 12 (Note: Output directly, do not store in a variable, and end with a newline).
Ex: If the input is:
200000 210000
the output is:
This house is $200000. The change is $-10000 since last month.
The estimated monthly mortgage is $850.0.
Note: Getting the precise spacing, punctuation, and newlines exactly right is a key point of this assignment. Such precision is an important part of programming.
LabProgram.java
1 import java.util.Scanner;
2
3 public class LabProgram {
4 public static void main(String[] args) {
5 Scanner scnr = new Scanner(System.in);
6 int currentPrice;
7 int lastMonthsPrice;
8 currentPrice - scnr.nextInt();
10 last MonthsPrice = scnr.nextInt();
11
12 /* Type your code here. */
13 }
14 ]
15

Answers

Answer:

current_price = int(input())

last_months_price = int(input())

change = current_price - last_months_price

mortgage = current_price * 0.051 / 12

print('This house is $', end= '')

print(current_price, end= '. ')

print('The change is $', end= '')

print(change, end= ' ')

print('since last month.')

print('The estimated monthly mortgage is $', end= '')

print(mortgage, end='.\n')

In this exercise, using the knowledge of computational language in python, we have that this code will be written as:

The code is in the attached image.

We can write the python  as:

current_price = int(input())

last_months_price = int(input())

change = current_price - last_months_price

mortgage = current_price * 0.051 / 12

print('This house is $', end= '')

print(current_price, end= '. ')

print('The change is $', end= '')

print(change, end= ' ')

print('since last month.')

print('The estimated monthly mortgage is $', end= '')

print(mortgage, end='.\n')

See more about python at brainly.com/question/13437928?

What is the value of total returned by the call secret(3) ? int secret int num) { int total= 10; switch(num) { case 1: case 2: total=5. break case 3. total= 10: case 4: total=total+3: case 8: total=total+6. break default: total=total+ 4. break} return total; }​

Answers

Answer:

19

Explanation:

Without break; statements, the switch "falls through" to the next case. So the code is directed to case 3, which sets total to 10. Then another 3 gets added and another 6, because cases 4 and 8 are also executed. That brings the total to 19.

So, always use a compile rule or code checker that checks your code for missing breaks, because it is hardly ever what you want on purpose.

Which of these was the first era of computing concerned with? Choose one

1. Computation

2. Communication

3. Electronic commerce ​

Answers

1. Computation

Answer

1.John Von Neumann's architecture model was proposed not only to staire data but to also execute instructions

what are the functions of an input device​

Answers

Answer:

To feed the computer with data/instructions

Answer:

The function of an input device is to communicate information to a computer or other sort of information processing equipment. Input devices are types of peripheral devices that communicate with processing units. The most common forms of input device for personal computers are keyboards and mice.

1.1 The Android smart watch as presented in Figure 4 could be regarded as a computer. Is this statement true or false? Provide a detailed motivation of your answer.​

Answers

Answer:

false a watch and laptop are completely different.

Explanation:

what is computer virus​

Answers

Answer:

A type of malicious code or program written to alter the way a computer operates and is designed to spread from one computer to another.

Once a virus has successfully attached to a program, file, or document, the virus will lie dormant until circumstances cause the computer or device to execute its code. In order for a virus to infect your computer, you have to run the infected program, which in turn causes the virus code to be executed.

Answer:

Computer virus :

In more technical terms, a computer virus is a type of malicious code or program written to alter the way a computer operates and is designed to spread from one computer to another. A virus operates by inserting or attaching itself to a legitimate program or document that supports macros in order to execute its code.

Which of the following acts as the central authority in the network?

Answers

The answer would be Server.

What do you understand by animation?How is it helpful in a presentations?​

Answers

Answer:

Animation can help make a PowerPoint presentation more dynamic, and help make information more memorable. ... Animation can be useful in making a presentation more dynamic, and help to emphasize points, but too much animation can be distracting. Do not let animation and sound take the focus away from what you are saying.

Explanation:

TWACB

which describes a platform

Answers

Answer:

Explanation: In IT, a platform is any hardware or software used to host an application or service. An application platform, for example, consists of hardware, an operating system and coordinating programs that use the instruction set for a particular processor or microprocessor.

hope it is helpful

2) A comunicação é um dos gerenciamentos mais relevantes a serem definidos no início do projeto, mas especificamente no grupo de processo de planejamento. Pois será por meio desta definição que todos deverão manter a distribuição da informação de forma clara e objetiva, principalmente o gerente de projeto.

De acordo com as informações apresentadas no quadro a seguir, faça a associação dos métodos de comunicação na coluna A com as suas respectivas descrições na Coluna B e as TICS na Coluna C referente ao método de comunicação.

Coluna A - Métodos de comunicação

Coluna B - Descrição

Coluna C - TICs

I.Comunicação Interativa
a. Útil para informar muitas pessoas, com grandes volumes de informação. De forma geral as pessoas acessam o conteúdo remotamente, escolhendo quando querem obter as informações, especificando um tempo para isso acontecer.
1. e-mails, cartas, correio de voz, relatórios, mensagens por meio do celular etc.

II.Comunicação ativa (push)
b. Troca de informações entre dois ou mais stakeholder. Esta é a maneira que se entende ser a mais eficiente para garantir um entendimento comum a todos os envolvidos
2. Intranets, e-learning e portais de conhecimento corporativo etc.

III.Comunicação passiva (pull)
c. Devem ser direcionadas para os interessados específicos, que foram designados a obter as informações ou que necessitam destas. De forma geral não se tem garantias de que a informação foi recebida ou mesmo compreendidas, só havendo a garantia da distribuição
3. Reuniões presenciais ou a distância por meio de vídeo conferência, telefone ou Internet.



Assinale a alternativa que apresenta a associação CORRETA entra as colunas.

Alternativas:

a)
I – b – 2; II – c – 1; III – a – 3.

b)
I – b – 3; II – c – 1; III – a – 2.

c)
I – c – 3; II – a – 1; III – b – 2.

d)
I – a – 2; II – c – 3; III – b – 1.

e)
I – b – 1; II – a – 2; III – c – 3.

Answers

I’m so sorry but I need points but I hope you find the answer


"Desktop" is a computer term that refers to:
a) The initial screen showing icons for folders, files, and applications
b) The part of your work area where the computer monitor sits
c) Something that can and should be ignored by most users
d) The st of all the contents on a particular computer
e) None of the above
1 BACK

Answers

Answer:

a) The initial screen showing icons for folders, files, and applications

"Desktop" is a computer term that refers to: a) The initial screen showing icons for folders, files, and applications.

What is a computer?

A computer can be defined as a programmable-electronic device that is designed and developed to receive data in raw form as an input and then processes these data into an output (useful information) that could be used by an end user.

What is a computer desktop?

A computer desktop refers to the initial screen or homepage that automatically comes up after a computer successfully completes a boot-up process. Thus, a computer desktop is considered to e the homepage of a computer.

Furthermore, a computer desktop can be used to display or show the icons for the following items:

FilesRecycle binFoldersSoftware application

Read more on computer here: https://brainly.com/question/959479

Name the wireless technology that may work with one device and not with another.


a. 802.11n


b. none of the above


c. Wi-Fi


d. Cellular

Answers

Answer: Im guessing b

Explanation:

bc the other ones work devices.

The wireless technology that may work with one device and not with another is not among the options. So the answer is none of the above.

Wireless technology often gives the ability for people to communicate between two or more entities over distances without the use of wires or cables of any sort.

Cellular network such as Mobile networks uses various radio frequencies in its communication with other devices.

Conclusively, This WiFi connection can connect to more than 250 devices. They can connect to computers, cameras, tablets, mobile smartphones, appliances etc.

Learn more from

https://brainly.com/question/19976907

What is the term for unsolicited Email​

Answers

Spam - unnecessary or unprecedented emails

Original IPv6 Address
Oe56:1102:0e75:8d23:3528:7e0d:419b:bdce
Compress
I

Answers

e56:11c2:e75:8d23:3528:7e0d:419b:bdce

Responsible use of computer is known as ................. .​

Answers

Answer:

This refers to the proper etiquettes and attitudinal posture to display while handling or using a computer system to ensure maximum performance, confidentiality and respect for other people's right.

Explanation:

A Lost link is an interruption or loss of the control link between the control station and the unmanned aircraft, preventing control of the aircraft. As a result, the unmanned aircraft performs pre-set lost link procedures. Such procedures ensure that the unmanned aircraft:

Answers

Answer:

There is nothing to answer from this statement.

Explanation:

Can you rephrase the statement into question?

Which of these areas of technology best classifies television?

a. Information and Communication

b. Bio-related and Agricultural

c. Medical

d. Environmental

e. Production, which includes manufacturing and construction

f. Transportation

g. Energy and Power

h. Nanotechnology

Answers

Answer:

a. Information and Communication

h. nanotechnology

Explanation:

[tex].[/tex]

what is storage devices?​

Answers

Answer:

A storage device is a device used to keep softcopy for future reference

A storage device is a kind of hardware, which is also known as storage, storage medium, digital storage, or storage media that has the ability to store information either temporarily or permanently.

1. The most common cause of a stuck accelerator is the
A. engine
B. steering wheel
C. brakes
D. floor mat

Answers

D. Floor mat. Floor mats are dangerous because they can slip, wedging the accelerator.

Answer:

D: Floor Mat

Explanation:

The floor mat can easily get flipped up onto either the breaks or the gas pedal, causing your car to malfunction.

write the working of dot matrix printer?

no links

Answers

The working of dot matrix printer is provided in the picture.

You can change the default margin size for Word documents. A. True B. False​

Answers

Answer:

False

Explanation:

Word processing is an application that allows you to create a variety of documents, including letters, resumes, and more.

If someone has the IP address 127.0.0.1 and tries to connect to the address 127.255.252.255, which are they attempting to connect to: ________

a. The local loopback interface
b. The local router on the network
c. The internet
d. A private server located on the local network

Answers

B is the answer i think
Other Questions
Escoge el artculo de ropa que los chicos no se ponen cuando hace fro.la corbatael vestido cortola camiseta con mangas largasel cinturn 510 please show a step by step explanation Simplify: 6m2,2 3mn + 14mn + 10mn2 + 9 O 27m2n2 + 9 16m?n? + 11mn + 9 16m4n" + 1lm?n? + 9 0 16mn+ 17mn + 9 Find the number that makes the ratio equivalent to 11:4.44: Question 8 (5 points)Which of the following reflects Congress acting on an implied power in the Constitution? (5 points)O aordering the creation of a new design for a quarter coinObapproving the spending of funds for new army vehiclescreating a set of national standards for public schoolsOdmaking a change to the rates charged for income tax What is celibacy and why is it better to/than sex?Explain. NEED HELP ASAPgiving brainly In a GP the second and fourth terms are 0.04 and I respectively find the common ratio and the first term Solve the simultaneous equations. to. 3 significant figures.3x^2 + y^2 = 202x + y =3 URGENT! HELP ME I WILL MARK YOU BRAINLIEST !!!!pleasee fasterr !!!!! Draw the keto and enol forms of 3,3-dimethylbutan-2-one, circle the more stable tautomer, and propose a mechanism for the conversion of one tautomer to the other in acidic conditions. The logarithmic function f(x) = ln(x) is the ___ logarithmic function and has a base ___ (1-\sqrt{x})/1+\sqrt{x} A steel ball has a volume of 1500 cm.The density of the ball is 95 g/cm'.Find the mass of the ball in kg. Which development made travel between states faster and easier? Electricity Highway system Roman bathhouses Telephones Is the following number rational or irrational?TV4Choose 1 answer:ARationalIrrational 69. Who is considered the Father of Our Country" and first presidentunder the Constitution ?*O George WashingtonO Thomas JeffersonO Alexander HamiltonO John Adams Match the questions with the answers.1 Do you celebrate April Fool's Day? d2 What sports do you play?3 Does your brother like shopping?4 Do they usually go to the carnival?5 What time does the party start?6 How often do you go to the cinema?7 Does Anna play for your team?8 Does it often rain here?a Every weekend.b Nine o'clock in the evening.c Yes, he does.d Yes, I do.e No, it doesn'tf Yes, they do.g Football and basketball.h No, she doesn't plz answer it plzstep by step plz is the mistake one two three or is their no mistake