Francescas spend 25 minutes on the Internet yesterday, if this is 5/6 of the time she spent on the computer, how long did she spend on the computer but not on the Internet?

Answers

Answer 1
She spent 30 minutes on the computer total, so 5 min was not on the internet



Related Questions

Which of the statements below describe how to print a document?

Click on Print in the system tray.
Click on the Print icon at the top of the screen.
Select Print from the File menu.
Select Print from the Start menu.

Answers

Answer:

Select Print from the File menu

Explanation:

Other options listed are  either impossible or a bit difficult to achieve. "Selecting Print from the File menu" not only allows for easy access, it also ensures that the target document is being printed without much effort. Many applications have a file menu from where certain processes could be accessed and done easily.

Hope this helps!

Answer:

a b d

Explanation:

Every computer contains a(n) ____ to send and receive data from other computers over a network.

Answers

Every computer contains an NIC device. I hope this helps, ser!

Which protocol is used to access a windows computer remotely using the windows graphical user interface?

Answers

Final answer:

The protocol used to remotely access a Windows computer with the graphical user interface is the Remote Desktop Protocol (RDP). RDP requires client software, the remote computer's address, a username, and password to establish a secure connection.

Explanation:

The protocol used to access a Windows computer remotely using the Windows graphical user interface is Remote Desktop Protocol (RDP). To use RDP, you need:
Client software on your own computer.

The address of the remote computer, such as its host name or IP address.

A username with which to log in to the remote computer.

A password corresponding to the username.

RDP provides a user with the ability to connect to another computer over a network and interact with its desktop environment as if they were physically present at the keyboard of the remote computer. This includes the full graphical user interface, applications, and resources as though you were logged in directly to the remote machine. When successful authentication occurs, the client displays the remote desktop session, allowing for a broad range of tasks, including file transfers and running applications.

For enhanced security, it is recommended to change your password regularly to something secure but also easy to remember. One example of a secure password is 'correcthorsebatterystaple', which is more secure than passwords with short strings of random characters.

When I comes to saving money, what is good rule of thumb

Answers

dont spend your money on eating out

Given a variable word that has been assigned a string value, write a string expression that parentheses the value of word. so, if word contains "sadly", the value of the expression would be the string "(sadly)"

Answers

Final answer:

To parenthesize the value of a variable called word, concatenate the '(' at the beginning and ')' at the end using the '+' operator, resulting in the expression '(' + word + ')'.

Explanation:

To create a string expression that surrounds the value of a variable word with parentheses, you will typically concatenate the string '(' at the beginning and the string ')' at the end of the variable. In Python, for example, this can be achieved using the plus operator '+'. If the variable word contains the value 'sadly', then the expression would be:

'(' + word + ')'

When this expression is evaluated, if word = 'sadly', it would produce the string '(sadly)'.

By what name are input devices, output devices, and auxiliary storage devices collectively known

Answers

peripherals



------------------------

What is an example of a computer program that could be coded with the javascript scripting language?

Answers

Pretty much anything can be coded with a variety of different computer languages, HTML/Python/VB/VBScript?  Java is platform independent and could be used to code a mortgage monthly payment calculator on a web page

Unicode is the most flexible character coding scheme true or false

Answers

False is the answer to your question

Answer: It is false.

Explanation: Code is made out of numbers if we are talking about binary code. but if we're talking about other code types like Java then it requires words and some numbers (But mostly words and other characters that are not a Unicode). ᜲ is not a valid character for a code. unless you put it as a showing text in whatever your programming. Here is how you type Unicode by the way. ctrl+shift+u+any number to get a Unicode of your choice. It's able to project about 99999999 characters. all with unique formations.

A fitness tracker can be classified as a wearable computer. true

Answers

Depends, but I'd say false.

During which event were four Native American nations forcibly removed from their lands?
a. the gold rushB) the trail of tearsC) the westward journey of Lewis and ClarkD) establishment of the Underground Railroad

Answers

I believe the answer is the trail of tears because we talked about this in my history class

The internal area of 2-inch IMC is
A. less than the internal area of 2-inch EMT.
B. greater than the internal area of 2-inch rigid metal conduit.
C. the same as the internal area of 2-inch EMT.
D. less than the internal area of 2-inch rigid metal conduit.

Answers

B. The internal area of a 2 inch IMC is greater that that of a 2 inch rigid metal conduit.

Answer:

The correct option to the following question is B.) greater than the internal area of 2-inch rigid metal conduit.

Explanation:

An IMC(Intermediate metal conduit) is the steel tubing that is heavier than the Electrical Metallic Tubing but it is lighter than the RMC. It may threaded. The EMT(Electrical metallic tubing) is sometimes known as the thin-wall which is commonly used at the place of the GRC(Galvanized Rigid Conduit) it is less costly and it is lighter than Galvanized Rigid Conduit.

What is the default ttl for a windows server 2012 dns server?

Answers

The default TTL is 1 hour.

What is the type of broadband internet in which the connection is degraded by adding multiple users?

Answers

The type of broadband internet in which the connection is degraded by adding multiple users is DSL. (Digital Subscriber Line). 
The DSL technology uses the regular telephone line to transport high-speed internet.  So, high- bandwidth information are brought to homes and small businesses over ordinary copper telephone lines. 

Assign to the boolean variable 'possiblecandidate' the value false if the int variable 'n' is even and greater than 2, or if the variable 'n' is less than or equal to 0; otherwise, assign true to 'possiblecandidate'. assume 'possiblecandidate' and 'n' are already declared and 'n' assigned a value.

Answers

possiblecandidate = true;
if( ( ( n >= 2 ) && ( n % 2 == 0 ) ) || ( n <= 0 ) )
    possiblecandidate = false;

Answer:

possiblecandidate = true;

if( ( ( n >= 2 ) && ( n % 2 == 0 ) ) || ( n <= 0 ) )

   possiblecandidate = false;

Explanation:

List two challenges an operating system faces when passing parameters between user and kernel mode. describe how an operating system can overcome them.

Answers

The main challenge an operating system faces is keeping the operating system within the secured or fixed time limit of a real-time system. If the system doesn't finish a task within a certain give time frame, this may create an issue in the entire system it is running. Hence, when writing an operating system intended for a real-time system, the writer have to be certain that his scheduling tactics don't let response time to exceed the time constraint. 

The main challenges facing by operating system between user mode and kernel mode are as follows:

The size of each parameter which is passing to make system calls must not exceed to the size of registers. The parameters should not be more than six.

To deal with the above problem, the parameters are written in the registers before executing system call.

Further explanation:

User Mode: In this mode, CPU has limited access to manage the memory and also access of peripheral devices (network cards and disks) is not permissible. The CPU can be taking away from a program at any tie.

Kernel Mode: The CPU has ability to manage the memory and have access of peripheral devices. The CPU can switch from one program to other program in this mode.

Hence, if program is running in user mode then it prevents  to access the other programs.

Switching from User to Kernel Mode: First, set the values with parameters in the registers and execute the trap instruction. Just after that, CPU switches to kernel mode and jumps to the memory location. These instructions are known as system call handler or trap which reads the instructions and perform in kernel mode. After the system call, OS resets the mode to user mode and hence now it can now perform both simultaneously.

Learn more:

1. How does coding work on computers?  brainly.com/question/2257971

2. Prediction accuracy of a neural network depends on _______________ and ______________. brainly.com/question/10599832  

Answer details:

Grade: College Engineering

Subject: Computer Science

Chapter: Operating System

Keyword:

Computer, CPU, Operating System, user mode, kernel mode, peripheral devices, disks, network cards, trap, instructions, registers, switch, system call, size, handler, parameters, reset

>When a species is in danger of becoming extinct, it is called a(n)_____

Answers

It is called endangered, which generally means there are very few of them left and/or the environments in which they live are dying.

What do you call a firewall that is connected to the internet, the internal network, and the dmz?

Answers

Three-pronged firewall hope this helps!

In the late 1980s, which wide area network (wan) technology became one of the standard methods of connecting business computers and networks over long distances? frame relay decnet appletalk token ring

Answers

frame i think, thats what i learned about

By default, the document has a (blank) margin on all four sides

What is the default margin width on all four sides of a document ?

Answers

The normal margin is 1 inch on all sides
1 inch margin on all 4 sides                                                                                                                                                                                                                                                                    


Which is the most recent version of Microsoft Windows

A. Window 8
B. Window Longhorn
C. Windows NT
D. Windows Service pack 2

Answers

Windows 8 is the correct answer. Windows Longhorn was built in November of ‘06. Windows NT was released in July of ‘93 and Windows Service Pack 3(not 2, sorry I don’t remember that one) was released in April of ‘08, so we don’t even have to know Windows Service Pack 2’s release date since Windows 8 was released in October of 2012.

Why are rules required for a number system to be useful?

Answers

Answer

This is because without them no one would know how much each symbol represents, and no one would be able to decipher the message.

Explanation

Number system is a way to represent numbers. It  is a writing system for expressing numbers; that is, a mathematical notation for representing numbers of a given set, using digits or other symbols in a consistent manner.

In computing or in a computer number systems are the techniques which represents numbers in the computer system architecture where   every value that you are saving or getting into/from computer memory has a defined number system.Computer architecture supports  . Binary number system,Octal number system and Decimal number system.

Rules are required for a number system because computers relay on number system and its Basics of Computers - Number System. The method to represent and work with numerals is called number system. Decimal number system is the most commonly used number system which is used in our daily lives but computers do not understand this system. Some of popular number systems that computers consists are binary number system, octal number system, hexadecimal number system, etc.

Further Explanation:

⦁ Computers uses different number systems, that is why we have different rules for every different number systems, for every number system to be understandable to computers, we clearly need to define specific rules to follow for computation.

⦁ There are four main types of number systems, Decimal, Binary, the Octal and the Hexadecimal.

⦁ Binary Number System: An example of basic number system that computer uses is binary number system, based on number system of 2 digits (base two), which is 0 and 1. Its considered as perfect numbering system for computers and computers relay on this number system.

⦁ Decimal Number System: is a base 10 number system, which is consists of 10 digits from 0 to 9, that w use in our daily lives,  This means that any numerical entity can be represented using these 10 digits. Decimal number system consists of ten single-digit numbers.

⦁ The Octal Number System: The octal numeral system defined as the base-8 number system, which uses the digits 0 to 7. Octal numerals can be made from binary numerals, it is made by grouping consecutive binary digits into groups of three (start from the right to left).

Answer details

Grade: High School

Subject: Computer Science and Technology

Chapter: Binary Mathematics

Keywords: number systems, binary mathematics, binary number system, octal number system, decimal to binary conversion etc

What tool is used in combination with an impact wrench to install lug nuts on wheels?

Answers

Final answer:

A socket wrench is typically used with an impact wrench to install lug nuts on wheels, providing grip and mechanical advantage for proper tightening. A power drill may also be utilized with a socket adapter in some cases. It is crucial to use the right tools and techniques to avoid over-tightening or damaging the lug nuts.

Explanation:

The tool that is commonly used in combination with an impact wrench to install lug nuts on wheels is a socket wrench. Socket wrenches provide the necessary grip and mechanical advantage to apply torque to the lug nuts, allowing for efficient tightening. When using an impact wrench, a specialized impact socket is typically used because it is made of a more flexible material that can withstand the high torque levels generated by the impact wrench without breaking.

In some cases, mechanics may also use a power drill with a socket adapter as an alternative, especially if an impact wrench is not available. However, an impact wrench combined with a socket wrench is the preferred method due to its efficiency and effectiveness in properly securing the lug nuts at the correct torque specification. It's important to mention that the use of incorrect tools or improper technique can lead to over-tightening or cross-threading of the lug nuts, which can be dangerous.

Additionally, when dealing with very tight bolts or lug nuts, mechanics sometimes slip a length of pipe over the handle of the wrench to gain extra leverage. This practice, known as a 'cheater bar', increases the torque applied to the bolt, making it easier to loosen. However, it's worth noting that this method is hazardous because it can lead to the bolt breaking under excessive force.

I have a project on "USING ADVANCED FORMULAS". It wants me to make a spreadsheet to track payroll. I have no clue how to do this on docs. Can someone please help. Pm me for more info

Answers

try to do it on Microsoft word 2013

Answer:

found this on another answer

Explanation:

Does the sticker list an automatic or manual transmission?

A. automatic

B. manual

C. It doesn't list the transmission.

Answers

Automatic, three speed transmission
it does, it lists auto. look at the very bottom left and you'll see "auto 3 spd transmission", which means automatic transmission. hope that helped

Tables and spreadsheets can only be inserted into slides with blank layouts.
true or false

Answers

Is false because you can copy a table and paste it into a filled slide

Answer:

false

Explanation:

im doing this assignment right now

By default, windows does not display ____________________ in windows explorer.

Answers

The answer is file extensions.

What type of address is the ip address 198.162.12.254/24?

Answers

The IP address 198.162.12.254/24 is a Unicast address.

The Internet Protocol address range 198.162.12.254/24 is classified as a Class C address.

The final "/24" denotes the subnet mask, which is what determines the network and host sections of the IP address. The network portion of a Class C network is represented by the first three octets (198.162.12), while the host portion is represented by the final octet (254) in the address.

The subnet mask "/24" indicates that the first 24 bits (3 octets) are used for the network component, leaving 8 bits (1 octet) for the host section. This leaves a total of 32 bits (6 octets) available. This permits a total of up to 254 different host addresses to exist within the network.

Learn more about IP address, here:

brainly.com/question/31171474

#SPJ6

In a spreadsheet, equations that use addition, subtraction, multiplication, and division operators, as well as values and cell references are called

Answers

Final answer:

Spreadsheet equations with operators and cell references are known as formulas. Formulas allow for dynamic updates and use the order of operations to perform calculations. Functions like PRODUCT simplify calculations and can be used within formulas.

Explanation:

In a spreadsheet, equations that use addition, subtraction, multiplication, and division operators, as well as values and cell references are called formulas. All formulas in spreadsheet software like Excel must start with an equal sign (=) and can include cell references, ranges of cell references, arithmetic operators, and constants. Using formulas with cell references, such as =D30-D60 to calculate Owner's Equity from Assets and Liabilities, allows for dynamic updates if any referenced cells change. This concept is known as Relative Cell Referencing.

When constructing formulas, it's important to remember the order of operations, often guided by mnemonics like PEMDAS (Parentheses, Exponents, Multiplication and Division, Addition and Subtraction). Complex formulas can include multiple mathematical operations, cell ranges, and even nested functions, utilizing parentheses to clarify order if necessary. For example, =A3+B3*C3 will multiply B3 and C3 before adding A3, but in =(A3+B3)*C3, A3 and B3 are added first before multiplication.

Spreadsheet programs offer a variety of built-in functions, such as PRODUCT, to simplify common calculations. For instance, instead of multiplying cells directly, you can use =PRODUCT(B2, B3). Formulas should be entered carefully to avoid errors, and one way to reduce these errors is by using the pointing method, which involves clicking on cell references directly instead of typing them.

After an antivirus server performs filtering, it may ____. a. drop the object b. send the object to the firewall to pass to the destination c. pass the object to the destination directly d. all of the above

Answers

The answer is D. The context of the data that is being filtered determines what the antivirus server will do. If the information is corrupted , the server will drop it. Drooping the object will allow the system to not be infected with a virus. If the file is clean it will pass through the firewall onto it's final destination. Again, is the file or object does not contain a virus that was not picked up by the antivirus server it will pass to the destination.

For some reason my code give m a error for when I try and grab the byte from this section. And I don't know what the problem is.



static byte[] EncryptStringToBytes_Aes(string plainText, byte[] Key)
{
byte[] encrypted;
byte[] IV;

using (Aes aesAlg = Aes.Create())
{
aesAlg.Key = Key;

aesAlg.GenerateIV();
IV = aesAlg.IV;

aesAlg.Mode = CipherMode.CBC;

var encryptor = aesAlg.CreateEncryptor(aesAlg.Key, aesAlg.IV);

// Create the streams used for encryption.
using (var msEncrypt = new MemoryStream())
{
using (var csEncrypt = new CryptoStream(msEncrypt, encryptor, CryptoStreamMode.Write))
{
using (var swEncrypt = new StreamWriter(csEncrypt))
{
//Write all data to the stream.
swEncrypt.Write(plainText);
}
encrypted = msEncrypt.ToArray();
}
}
}

var combinedIvCt = new byte[IV.Length + encrypted.Length];
Array.Copy(IV, 0, combinedIvCt, 0, IV.Length);
Array.Copy(encrypted, 0, combinedIvCt, IV.Length, encrypted.Length);

// Return the encrypted bytes from the memory stream.
return combinedIvCt;

Answers

I ran the code without problems. I added the decrypt routine from the same github site you got it from and was able to encrypt and subsequently decrypt a message.

So how are you invoking this code? Did you allocate a 16 byte buffer for the key?
Other Questions
which official chairs the proceedings of the U.S. House of Representatives?A. Sergeant-at-ArmsB. Speaker of the HouseC. President pro temporeD. Vice President of the United States Craig is training for a race. He bikes every 2 days and swims every 3 days. If he biked and swam today, how many days will pass before he bikes and swims on the same day again, the least common multiple of the numbers of days? Multiples of 2: 2, 4, 6, 8, 10, 12, . . . Multiples of 3: 3, 6, 9, 12, 15, 18, . . .Answers:1. 2 days2. 3 days3. 6 days4. 12 days Define body composition, and explain why it is an important consideration when determining an individuals appropriate weight range? what do sound waves, light waves, moving objects, and heat flow all have in common?a. they all require a medium to travel.b. they all transfer energyc. the are all electromagnetic waves,d. they are all mechanical wavesplease help soon :) What was the overall effect of the Committee on Public Information (CPI)? Which of the following is an example of a conversion from electrical energy to sound energy? microphone radio generator windmill What does the abbreviation AC stand for An "ideal type" is a perfect example of something. TRUE OR FALSE The reference angle for an angle whose measure is 260 is One side of a right triangle is known to be 9 cm long and the opposite angle is measured as 30, with a possible error of 1. (a) use differentials to estimate the error in computing the length of the hypotenuse. (round your answer to two decimal places.) Which if these are least likely to describe a distance below sea level?A. Whole number B. IntegerC. Rational number D. Real number Thanks! The tooth fairy brings jack $5 plus $1 for each tooth that he loses. After jack loses a few teeth, the tooth fairy decides that he is paying too much money for teeth. He is gives jack $5 plus $0.50 for each tooth lost. Which graph shows the new function? Jim drove 153 miles in 3 hours. If he can keep the same pace, how long will it take him to drive 1377 miles? Which radical republican policy did lincoln support? What ion is most likely to form in compounds with potassium? president reagans speech was mainly written to In the liquid and solid states, molecules are held together by attractions called intermolecular forces. there are several types of intermolecular forces. london dispersion forces, found in all substances, result from the motion of electrons. these work to attract both polar and nonpolar molecules to one another via instantaneous dipole moments. dipole-dipole forces arise from molecular dipole moments. ion-dipole forces result from the interaction of an ion and a molecular dipole. hydrogen-bond forces result from the attraction of a hydrogen atom bonded to a small highly electronegative atom (n, o, and f) and the unshared electron pairs of another electronegative atom physical properties such as boiling point, melting point, vapor pressure, viscosity, and surface tension are all affected by the strength of the intermolecular forces within a substance. part a what happens to these physical properties as the strength of intermolecular forces increases? there are 36 female preformers in a dance recital.the ratio of men to women is 2:9 how many men are in the dance recital. ________ sentarnos, usamos un silln.PorPorqueParaNecesitas Write a real-word problem that gives extra information. Tell what that extra information is.Best real-word problem I will mark as brainliest Steam Workshop Downloader