How do you calculate the file size of a text file?

Answers

Answer 1

Answer:

It is calculated by multiplying the surface area of a document (height x width) to be scanned by the bit depth and the dpi2. Because image file size is represented in bytes, which are made up of 8 bits, divide this figure by 8.


Related Questions

________ software consists of operating systems, utilities, device drivers, and language translators.

Answers

Answer:

"System"

Explanation:

System software consists of operating systems, utilities, device drivers, and language translators.

(not much explanation as it was a fill in the blank which explains itself haha)

Have a nice day!

    I hope this is what you are looking for, but if not - comment! I will edit and update my answer accordingly. (ノ^∇^)

- Heather

List four types of Web browsers

Answers

Answer:

internet explorer safari tor firefox

Explanation:

Independence Day celebration in school paragraph ​

Answers

Answer:

We celebrated the Independence day in our school compound, with great pump and show. The school building and the ground were cleaned and decorated for the occasion. A flag pole was put up at the top of the school building. The seating arrangement was made on the platform

Explanation:

please Mark my answer in brainlist

What type of programing code do game developers use.

Answers

Explanation:

object oriented programming languages like C#, C++, Java are used by developers to develop a game.

Would my phone still work if I snapped it in half?

Answers

Probably not
Not a good idea my friend

Depends on if you wanna get it repaired or not

______ focuses on filtering data as it enters the system to determine which data to keep and which to discard.

Answers

The answer is Stream processing

What devices do not need device drivers to be manually installed, and start to function as soon as they are connected to a computer?.

Answers

Plug-and-play devices are electronic devices that do not require any device driver to be manually installed on the host device (computer) and as such they start functioning immediately they are connected to the host device (computer).

Plug-and-play (PnP) can be defined as a technology that is designed and developed to allow an operating system (OS) of a computer to automatically detect and configure a peripheral (input and output device) as soon as they are connected to the computer.

On a related note, a plug-and-play device is an electronic device that do not require any device driver to be manually installed on the host device (computer) and as such it start to function immediately it is connected to the host device (computer).

In Computers and Technology, some examples of a plug-and-play device include the following:

External hard-driveComputer monitorKeyboardWeb-camMouse

Find more information: https://brainly.com/question/17402566

3.5 code practice python

Answers

Answer: This chapter is about variables in Python. So a variable can be any data type. And to find the datatype of a variable we need to use below code: x =10 print (type (x)) This will output: integer Now we can covert a string into integer as below:x=input("Enter X:")But above x is considered as string, and we need to convert it to integer to make use in for loop or any calculation.we can use:int(x), and this will convert x to int from string.Also, we have operators to change the variable values like =. +=, -=, /=, *= etc. So you need to remember these, and you will be up with all that is required for understanding variables. And rest is self explanatory certainly.

Explanation:

The answer is self explanatory

A user is troubleshooting a mobile device app that is displaying errors and has contacted the app manufacturer’s technical support team for assistance. The support technician needs specific information from the device about how the app is responding and what is happening to cause the errors.

Answers

Answer:

D. The method for retrieval is dependent on the specific app or device’s operating system.

A(n) _____is a small application that cannot run on its own but can be used with other software products.

Answers

Answer:

emulador

Explanation:

it need apps to run

A shared feature is a small application that cannot run on its own but can be used with other software products.

What is software?

A device's running programs, scripts, and applications are collectively referred to as "software" in this context. It can be compared to the variable component of a computer, whereas the invariable component is the hardware.

Application software and system software are the two main subcategories of software. System software and application software are the two categories of software. System software is employed to direct operations as well as a computer's internal processes and hardware components.

Therefore, a little program known as a shared feature can be utilized with other software items but cannot be used independently.

To learn more about software, refer to the link:

https://brainly.com/question/1022352

#SPJ5

jelaskan tiga kemungkinan sebab pengasah pensil itu tidak dapat berfungsi secara tiba-tiba (translate: explain three possible reasons why the pencil sharpener may not work suddenly) pls help me​

Answers

Explanation:

Internal gear wear must be significant (visually obvious) to be the cause of off-center sharpening. Cutter carrier is rotating but the pencil is not sharpening (doesn't feel like the cutter is engaging the pencil) This is usually caused by a foreign object (e.g., an eraser or broken pencil lead) inside the pencil bore.

How to translate a word file with goole translator.

Answers

Answer:

Use the translation websiteClick "Browse your computer". A file selection dialog will pop up. Select the file. Select the translation languagePress 'translate'!

Note: The document translation option will only show on medium and large screens

The implementation stage of the SDLC is when the system is moved into operation where it can be used. What stage PRECEDES the implementation stage and what happens in this preceding stage

Answers

The stage that precedes the implementation stage of SDLC is testing and it involves checking the functionality of the system.

System design involves the process of determining an overall system architecture, which typically comprises the following:

Hardware.End users.Physical processing components.Software.Communication channel.

Generally, there are seven (7) main stages in the systems development life cycle (SDLC) model and these include:

1. Planning.

2. Analysis.

3. Design.

4. Development.

5. Testing.

6. Implementation.

7. Maintenance.

From the above, we can deduce that the stage which precedes the implementation stage of SDLC is testing.

During the testing stage of SDLC, a quality assurance (QA) expert checks the system to determine whether or not it is functioning properly before it is deployed for operation, which is where the system can be used.

Read more: https://brainly.com/question/20813142

A technology ____ begins with the birth of a new technology and ends when that technology reaches its limits and dies as it is replaced by a newer, substantially better technology.

Answers

Answer:

A technology __cycle __ begins with the birth of a new technology and ends when that technology reaches its limits and dies as it is replaced by a newer, substantially better technology.

Explanation:

Hope its help

we are unable to process your request at this time. if you continue to receive this error, please contact cardholder services by calling the number on the back of your card.

Answers

Answer:

is this a sim chip card replacement card for Electronics ?

Explanation:

Consider the following instance variables and method from a class: private String descriptor; public String makeSentence(int quant, boolean sign) { String s = "Object is "; if (!sign) { s += "not "; } for (int i = 0; i < quant; i++) { s += "very "; } return s + descriptor; } Suppose an object of this class is initialized so the value of descriptor is "regular". What would be returned by the call makeSentence(3, false) made on this object?

Answers

The call makeSentence(3, false) will return

"Object is not very very very regular"

The program fragment is:

///////////////////////////////////////////////////////////////////////////////////////////////////////////////

private String descriptor;

public String makeSentence(int quant, boolean sign) {

   String s = "Object is ";

   if (! sign) {

       s += "not ";

    }

   for (int i = 0; i < quant; i++) {

       s += "very ";

   }

   return s + descriptor;

}

///////////////////////////////////////////////////////////////////////////////////////////////////////////////

descriptor is an instance field of the class. When makeSentence(3, false) is called, it does the following;

Initializes a local variable s with "Object is "

s now contains "Object is "

Since sign== false, the if block executes

s now contains "Object is not "

The for loop will execute 3 times to append "very " to s

s now contains "Object is not very very very "

Finally the return statement returns a concatenation of the contents of descriptor (descriptor=="regular") and s

s now contains "Object is not very very very regular"

Learn more about programs here: https://brainly.com/question/19625875

1. What is the value of the digit 2 in the number below?

1,243 (a) 2) (b) 200) (c) 2000) (d) 20

Answers

Answer:

200

Explanation:

Let's split the number 1,243 into its values.

1,000 + 200 + 40 + 3.

To check your answer, add all the numbers together.

_2_ _.

Notice that there are "2" spaces after the 2.

This is why there are 2 zeros in 200.

Therefore, 200 is the answer.

-kiniwih426

Type the correct answer in the box. Spell all words correctly. Define the term loop rule. The loop rule tells us that if we sum the across all the components in a single closed path of an electrical network, the result is 0.

Answers

Answer:

91

Explanation:

Which tool was developed for packet flow monitoring and was subsequently included in Cisco routers and switches

Answers

Wireshark. It’s a free tool used to analyze packets.

An agile team has which two characteristics? (choose two. ).

Answers

A SAFe Agile teams are often known to be Scrum Master and Product Owner. An Agile team characteristics are:

A small group typically 5 - 11 dedicated individuals who have the skills necessary to define, build, test, and deploy increments of value.

A group of dedicated individuals who are empowered, self-organized, self-managing, and deliver value.

A SAFe Agile team is a cross-functional group  as they are made up of about of 5-11 people who set apart, build, test, and deliver an increment of value in a short time box.

Agile team are known to be cross functional as they can define, build , test and Deploy.

See full question below

An Agile team has which two characteristics? (Choose two.)

A) A small group typically 5 - 11 dedicated individuals who have the skills necessary to define, build, test, and deploy increments of value

B) A stand-along unit of individuals who do not require input fro other teams to complete their tasks

C) A large group of individuals who all work together to create value for the client

D) A group of dedicated individuals that work in phase-gate steps to complete their PI Objectives

E) A group of dedicated individuals who are empowered, self-organized, self-managing, and deliver value

Learn more from

https://brainly.com/question/24390635

what do you think is the reason why there are two kinds of transmission mode in computer networking?

Answers

Answer:  Transmission mode or communication mode is referred to as transmission of data between two devices using a communication channel that includes an optical fiber, copper wires, wireless channels, and various storage media. The data that gets transmitted is in the form of electromagnetic waves. There are various ways of data transmission where the message that is passed is in the sequence of pulses using digital modulation. The transmission mode of data was first introduced in a computer networking system during the 1940s in modems, then in LANs, WANs, repeaters, and other networking system

is this what u are looking for?

Vhat is the result when you run the following program?
rint(2 + 7)
rint("3+ 1")
4
O an error statement
2+7
o
4
0
9
3 + 1

Answers

Answer:

4

Explanation:

RDP connection from outside the network to a server inside the network. Which network device will a network administrator MOST likely configure to allow this connection? Hub Switch Firewall

Answers

Answer:

Firewall

Explanation:

The firewall might block the Remote Desktop Protocol (RDP) connection. This is because hackers could use open connections to brute force passwords or control an infected computer. The firewall ensures that only authorised connections occur.

PLEASE HELP! (NO LINKS)

The US Copyright Act gives computer programs the same status as what kinds of work?

Answers

Answer:

C.

Explanation:

In image below.

                                        Have a wonderful day and mark brainliest if I helped,

                                                                   starkitty052010 of Brainly

                                       

1. Which software is used mostly for typing text? a) Word b) Excel O c) PowerPoint o d) Paint​

Answers

Answer:

a. Word

Explanation:

Microsoft Word is the most widely used word processing software according to a user tracking system built into the software.

Answer: a) Word

Explanation: Microsoft Word is the most widely used word processing software.

How to square a number in java.

Answers

Answer:

num**2

Explanation:

To square a number in Java, you just take the number and use two asterisks (**) to denote an exponent, and then connect a 2 to it.

For example, if your number is 5:

5**2 in Java means 5^2, which is 25.

Just like how 5**3 in Java means 5^3.

Hope this helps.

___1. What is the first thing you should do if you received a package?
a. count the number of items c. accept it immediately then leave

b. check out the whole package d. check for the delivery receipt

________2. What should you do with the copy of your request for inspection?

a. return to the delivery man c. dispose it immediately

b. keep the copy of your request letter d. do not accept the letter

________3. What form is used to request for tools and equipment to be used for a

particular job written instruction to perform a work?

a. job order / order forms c. inventory of Materials forms

b. borrower’s forms d. purchase requisition

Answers

1.C
2.D
3.D
4.B
5.A
6.A
7.C
8.D
9.A
10.C

How to remove link color and underline in html.

Answers

Answer:

To remove the underline from all hyperlinks on a page, follow these steps:

Open the page that you want to modify.

Click the Codetab.

Put the following HTML code before the <BODY> tag: <STYLE>A {text-decoration: none;} </STYLE>

Click the Designtab. Your hyperlinks no longer contain underlines.

A _____ is the viewing area for a web page, which is much smaller on a phone than on a traditional desktop.

Answers

A viewport is the viewing area for a web page, which is much smaller on a phone than on a traditional desktop .

A computer game allows a player to repeat a level until they run out of lives. Which two of the following loops would work correctly?

Answers

Answer:

c.

Explanation:

because this is the right syntax for the following loops

Other Questions
specific enteroendocrine cells of the stomach, called g cells, are stimulated by partially digested proteins, caffeine, and rising ph. when stimulated, g cells secrete ________. work out the circumference area of glass on top of a cabinet with a diameter of 1.8, using tt=3.4 The Compromise of 1850 sought to settle the question of whether newly acquired territory from Mexico would allow slavery. Consider the maps in the Compromise of 1850 section. California was admitted into the nation as a slave-free state. The Utah and New Mexico territories would allow slavery and would later be able to vote on the slavery issue themselves. Why could Southern politicians be considered over-optimistic in accepting this deal? What might they have been hoping for in the future if they supported the spread of slavery? Glucose can be found in foods like honey. What happens to glucose in the body?OA. It goes through chemical reactions with carbon dioxide, which provides oxygen and energy for cells..It goes through a physical change in the cell's nucleus to produce oxygen.OC.It uses carbon dioxide in the cell's nucleus to produce a larger sugar molecule.OD.It goes through chemical reactions with oxygen, which forms new molecules and provides energy for cells. Will Give Brainliest No Links (1/3)^-2 + (1/4)^-2 = (125)^xFind the value of x? At most, a country could produce 20,000 units of Good A or 5,000 units of Good B. What is the opportunity cost of producing oneunit of Good B in terms Good A? (1 point)o unit of Good Bo 1 unit of Good A4 units of Good BO 4 units of Good A the Greatest Common Factor of 24, 36 and 50 Please help me solve this ASAP! Add. 4 7/12 plus 2 3/4 plus 7 5/12 = answer please im currently crying The first recorded Olympic game began in 776 called the Asian Olympics games were held every four hours until being abolished by the Roman emperor Theodosius in 393 determine the length of time between the start of the ancient Olympics and the modern Olympics which began in 1896 Which of the following best explains why the region of Catalonia in Spain could be a viable country? How do you find the slope of a line. What aspects of Egyptian sculpture of late civilization Which of the following have editors with specific expertise designated to specific sectionsA. TV showsB. NewspaperC. Movie what are 3 items you can't live without or appreciate the most? why are these items so special to you? At least 3 full sentences for credit. The difference of 7 and the square of a number Pls answer will give brainiest how did the status of priests affect the daily lives of people in this social class? The average precipitation for each month in central canada