In your opinion, is it more beneficial to have many folders or is it better to “nest” subfolders? Explain your response.

Answers

Answer 1
You can have one folder such as "Workspace" and have multiple different sub-folders that relate that to "Workspace". Also if you store pictures in a folder, it might be a good idea to separate them into different sub-folders.

Like one set of pictures could be in the sub-folder "2015-2016". All your pictures from 20015 to 2016 could be in that folder.
Answer 2
I think it's better to have multiple folders because for say you have 6 school subjects but only have 1 folder how are you going to keep track with all 6 subjects in one folder ? You could use each folder for each subject which would save you a lot of time when it comes to getting out your complete work .

Related Questions

Why are using some special characters (@, #, !, etc.) not a good idea?

Answers

There are pros and cons to using special characters in email subject lines. Generally, marketers report higher open rates.

Some report better engagement, but many don’t.

There are also reports of special characters causing problems with deliverability, mostly because spammers became very fond of special characters for a while.
In Windows you cannot use #,!,@ (There are more, I just don't remember them all) in a name of a folder. 

In some websites you cannot use special characters. Some characters are what you "escape" characters.

An escape character can cause an error when trying to insert data or get data from a database. Sometimes it can prevent a syntax error, if used the right way.

All of the following are the four more widely social media networks discussed in the text EXCEPT:
a. Twitter.
b. YouTube.
c. Facebook.
d. LinkedIn.
e. Groupon.

Answers

Answer: C

Explanation:  a website where users create a personal profile, add other users as friends, and exchange comments, photos, videos, and "likes" with them.

What type of Microsoft Server serves as an email server?

Answers

I have a feeling you're looking for Microsoft Outlook.
Outlook. Outlook is the new email server by Microsoft and is was made on July 31, 2012!

I have this question from the textbook:" Web Development and Design Foundations with HTML5-7th ed."

I cannot seem to figure out part "c" of the question.

1. Design a new web page using embedded CSS to configure a background color and text color. Include the following in your web page.

a. Your name

Use an h1 header that you have configured, using element selector with drop shadow text, transparent background color, and a sans-serif font

b. A description of your favorite hobbies and activities

Configure a CSS class that stylizes this description list

c. A photo of yourself (be sure to optimize the image for display on the Web)

Write the CSS for an id called holder that is configured to 80% width and centered

Put your photo in a that uses the id holder

Make sure that your image is accessible by using an alt tag, etc.

Make this image a hyperlink by adding a link to it to a favorite hobby site or your email with a mailto link

this is what I have so far, and kind of stuck!




Answers

Hi! I've never taken a class for web development, so I can't say for sure. But I think part (c) is looking for an image of you that is probably low in file size while still looking good. That means that .jpg will probably do, you can look in your photo editor when saving/exporting for settings such as compression and number of colors, and you can try to make the image just the right size for a normal screen (as long as it looks good on a larger screen).

Beyond that, there's just many details to this. Just follow the instructions a few times.
Make the image.
Make the HTML without the CSS.
Make the CSS and put it in a <style> HTML element.


Also, the question is weird:  it suggests using an "alt" tag. I think it's referring to the "alt" attribute of the <img/> tag. This specifies text that can appear if for any reason the image can't be displayed.

You can give an element an id by giving it the id attribute, like <div id="holder"></div>.
And the image can be a link by having the <img/> element inside of and <a> element.

Frequency of failure and network recovery time after a failure are measures of the _______ of a network.
A) Performance
B) Reliability
C) Security
D) Feasibility

Answers

Final answer:

The frequency of failure and network recovery time after a failure are measures of the reliability of a network, reflecting its stability and how quickly it can resume normal operations after downtime.

Explanation:

The frequency of failure and network recovery time after a failure are measures of the reliability of a network. When assessing reliability, it is important to consider how consistent a network is in terms of its uptime and its ability to maintain functionality over time.

Reliability is a key factor in network design and operation because it quantifies the likelihood of a system operating without failure for a certain period of time. In a network context, reliability encompasses not only the stability of the network but also the speed at which it can recover from issues, including errors, faults, and failures. An unreliable network might experience frequent downtimes or take a long time to recover from disruptions, negatively affecting the users and potentially leading to loss of data or service.

Let's consider another scenario outside of networking for a broader understanding of reliability. In research, reliability refers to the measure of a study's consistency that considers how likely results are to be replicated if a study is reproduced. Similar to network reliability, this also focuses on the predictability and stability of outcomes.

Reliability should not be confused with feasibility or performance, which deal with different aspects of network or system attributes.

Final answer:

The frequency of failure and network recovery time after a failure are measures of the reliability of a network, indicating the system's consistency and likelihood of uninterrupted performance.

Explanation:

The frequency of failure and network recovery time after a failure are measures of the reliability of a network. Reliability in this context refers to the likelihood that a system will perform as expected over a given period. It is a measure of consistency, indicating how likely it is for the network's performance to be replicated consistently without failures. A reliable network typically experiences less downtime and is able to recover quickly from interruptions, thus ensuring consistent connectivity and service availability.

Which term describes the order of arrangement of files and folders on a computer?

Answers

Its called Folder window if you have a window 7 

Placing javascript code in a web page file means that users need to retrieve only ____ file from the server.

Answers

If the JavaScript is in the web page file it would only be one file loaded. As opposed to two files if the JavaScript was separate.

C++ code-- Factorial Recursion
Write code to complete PrintFactorial()'s recursive case. Sample output if userVal is 5:
5! = 5 * 4 * 3 * 2 * 1 = 120
#include
using namespace std;

void PrintFactorial(int factCounter, int factValue){
int nextCounter = 0;
int nextValue = 0;

if (factCounter == 0) { // Base case: 0! = 1
cout << "1" << endl;
}
else if (factCounter == 1) { // Base case: Print 1 and result
cout << factCounter << " = " << factValue << endl;
}
else { // Recursive case
cout << factCounter << " * ";
nextCounter = factCounter - 1;
nextValue = nextCounter * factValue;


}
}

int main() {
int userVal = 0;

userVal = 5;
cout << userVal << "! = ";
PrintFactorial(userVal, userVal);

return 0;
}

Answers

Handle the print outside of the factorial function, which only needs one userVal when called.

int factorial( int foo )
{
  if( foo == 1 )
   return 1;
 else
   return( foo * factorial( foo - 1 ) );
}

Answer:

void PrintFactorial(int factCounter, int factValue){

int nextCounter = 0;

int nextValue = 0;

if (factCounter == 0) { // Base case: 0! = 1

cout << "1" << endl;

}

else if (factCounter == 1) { // Base case: Print 1 and result

cout << factCounter << " = " << factValue << endl;

}

else { // Recursive case

cout << factCounter << " * ";

nextCounter = factCounter - 1;

nextValue = nextCounter * factValue;

printFactorial(nextCounter, nextValue);

}

}

Explanation:

The only things that is left is calling the recursive function in the else statement. It is the bolded command on the answer.

factCounter is the value we are multiplying. In the function, it is nextCounter. So for 5, it is 5, then 4, then 3, until 0...

factValue is the value of the factorial. In the function, it is nextValue So it is 5, then 5*4 = 20, then 5*4*3 = 60, then...

void PrintFactorial(int factCounter, int factValue){

int nextCounter = 0;

int nextValue = 0;

if (factCounter == 0) { // Base case: 0! = 1

cout << "1" << endl;

}

else if (factCounter == 1) { // Base case: Print 1 and result

cout << factCounter << " = " << factValue << endl;

}

else { // Recursive case

cout << factCounter << " * ";

nextCounter = factCounter - 1;

nextValue = nextCounter * factValue;

printFactorial(nextCounter, nextValue);

}

}

Which of the following need to be assessed during unit testing?
A) algorithmic performance
B) code stability
C) error handling
D) execution paths
E) both c and d

Answers

Error handling & execution paths whether any of the following should be evaluated in the testing phase, and further discussion can be defined as follows:

Error handling relates to routines in programming that respond to unexpected inputs or conditions. It is also the process for dealing with the possibility of loss. The lucidity of error messages and the options provided to the users regarding problem resolution assess the quality of these procedures. It's significant because it makes life simpler for end-users to use the code appropriately. The execution route is a potential flow of command in a program. During symbolic execution, each execution path keeps and changes the mapping from variables to symbolic expressions. Sequence expressions including if cause an execution path to split into two distinct test steps.

Therefore, the answer is "Option E".

Learn more:

brainly.com/question/6646878

What was the only method of sharing files between computers before networks were invented?

Answers

Put the files on disk or tape and walk them over (SneakerNet).

_______ is the protocol suite for the current Internet.
A) TCP/IP
B) NCP
C) UNIX
D) ACM

Answers

A? not very sure sorry

A ________ is a set of rules that governs data communication.
A) forum
B) protocol
C) standard
D) none of the above

Answers

the organised system of rules governing affairs is called protocol. the answer is B) protocol

A java ____ is a program written in the java programming language that can be included in a web page.

Answers

Answer:

Java Applets are used to include java programs on web page.

Explanation:

Java Applets are small java programs that can be run on any browser with appropriate Java Plug-in and displays applet as a section of web page.

How to Create Applet

Create an applet class by extending it with JApplet and add a paint method in it. for example

import java.awt.*;

import javax.swing.*;

public class HelloWorld extends JApplet {

          public void paint(Graphics graphic)

           {

            super.paint(graphic);

           }

}

The above code will create an applet and super.paint(graphic) method will draw the applet for you.

In order to display "Hello World" string in applet. you just need to add the following line after super.paint(graphic); method.

graphic.drawString("Hello World" , 20, 20);

Run Code

Click on Run Button and you will able to see the applet in applet viewer window.

Answer:

Java Applets are used to include java programs on web page.

Explanation:

Java Applets are small java programs that can be run on any browser with appropriate Java Plug-in and displays applet as a section of web page.

How to Create Applet

Create an applet class by extending it with JApplet and add a paint method in it. for example

import java.awt.*;

import javax.swing.*;

public class HelloWorld extends JApplet {

         public void paint(Graphics graphic)

          {

           super.paint(graphic);

          }

}

The above code will create an applet and super.paint(graphic) method will draw the applet for you.

In order to display "Hello World" string in applet. you just need to add the following line after super.paint(graphic); method.

graphic.drawString("Hello World" , 20, 20);

Run Code

Click on Run Button and you will able to see the applet in applet viewer window.

Recovery testing is a system test that forces the software to fail in a variety of ways and verifies that software is able to continue execution without interruption.
A) TRUE
B) FALSE

Answers

true.
it tests for vitality of the system

In access, the columns in a table are called?

Answers

All tables are composed of horizontal rows and vertical columns, with small rectangles called cells in the places where rows and columns intersect. In Access, rows and columns are referred to as records and fields. A field is a way of organizing information by type.

In a ______ connection, two and only two devices are connected by a dedicated link.
A) multipoint
B) point-to-point
C) (a) and (b)
D) none of the above

Answers

In a point-to-point connection, two and only two devices are connected by a dedicated link. Thus, option B is correct.  

What is devices?  

A piece of machinery, apparatus, or system created with a specific function in mind. devices like cell phones as well as other electronics. Devices include any computer, mobile phone, phone, video recorder, recorder, or other electronic gadgets which can be used to create, store, or transport media in the form of digital communications.

Exclusive connectivity between devices connected is provided through a P2P connection. These two devices are the only ones allowed to transmit at the complete capability of a link.

A unique link that links two network components is known as a point-to-point link. These two machines transmit data using the ’s of such a link.

Therefore, option B is the correct option.

Learn more about devices, here:

https://brainly.com/question/11599959

#SPJ2

Final answer:

The correct answer is B) point-to-point. This connection type refers to a dedicated link between two and only two devices, providing a direct communication path.

Explanation:

In a point-to-point connection, two and only two devices are connected by a dedicated link. The correct answer to this question is B) point-to-point. A point-to-point connection is a direct communication path between two devices where they are uniquely connected with each other. This type of network configuration is commonly used for a permanent link between two endpoint devices.

Other Questions
what's reasons for exploration for Christopher Columbus? What did poor southern whites do as the land became exhausted from farming? Testing a Lie Detector The table below includes results from polygraph (lie detector) experiments conducted by researchers Charles R. Honts (Boise State University) and Gordon H. Barland (Department of Defense Polygraph Institute). In each case, it was known if the subject lied or did not lie, so the table indicates when the polygraph test was correct. Use a 0.05 significance level to test the claim that whether a subject lies is independent of the polygraph test indication. Do the results suggest that polygraphs are effective in distinguishing between truths and lies?Did the Subject Actually Lie?Did the Subject Actually Lie?No (Did Not Lie)Yes (Lied)Polygraph test indicated that the subject lied.1542Polygraph test indicated that the subject did not lie. 9 is 35 percent of what number Which of the following is a narrative essay most like? encyclopedia entry storyfact sheetdirections A condition of late adulthood in which the pressure in the eye increases is a. glaucoma. b. cataracts. c. bulimia. d. osteoporosis. how did Hinduism develop??? Which statement best describes the effects of the 1851 Treaty of Fort Laramie? A. The Mormons moved to the eastern shore of the Great Salt Lake. B. Settlers began moving west in wagon trains across the Rocky Mountains. C. Mountain Men began using the Rocky Mountains for trapping.D. The Indians crossed artificial boundaries, setting the stage for conflict. To which city did Muhammad and his followers flee and build a community of Islam based on Muhammad's teachings?A) JerusalemB) MeccaC) MedinaD) RiyadhHow did many smaller medieval African societies organize themselves and build unity among communities? A) by family lineageB) by religious belief C) by political preferenceD) by economic activity To which could devout Muslims turn to learn what God revealed to Muhammad?A) HadithB) QuranC) ShariaD) Sunnah A gene with the sequence ATTCATTCA underwent duplication after a few generations. Which sequence represents this gene after the mutation?A. ATTCATTCAB. ACTTACTTAC. ATTCACATTCAD. ATCCATTCAE. ATCATTCA Who would be happier with their representations in the house small or large states A red blood cell placed in pure water will Which would be the best way to combine the following sentences using an appositive?My father loves to teach me about the outdoors. He is a great hunterA. My father, a great hunter, loves to teach me about the outdoors.B. My father loves to teach me about the outdoors, he is a great hunter.C. My father loves to teach me, a great hunter, about the outdoors. A subtending arc on a circle with a radius of 4.5 centimeters has an arc length of 8. What is the measure of the angle subtended by the arc? What does Belshazzar promise to anyone who can read the writing on the palace wall?A.freedom for their peopleB.a chance to drink from the Temple cupsC.wealth and powerD.his daughter's hand in marriage What percent of water is not easily accessible or usable on earth?*A. .6% B. 12.5% C. 50% D. 99% Subtract the answer from the last question from 100%. What does the remainder represent and what are the sources of this percentage of water?A. 97% rivers only B. 1% lakes, rivers and ground water *C. 99.4% lakes only D. 50% atmosphere and soil moisture Thank You. A basketball has a mass of 1 kg and is traveling 12 m / s . How fast would a 6 kg bowling ball have to travel to have the same momentum ?a. 1 m/sb. 2 m/sc. 3 m/sd. 4 m/s Look closely at the image above. Which of the following is not true?a.This is an example of a gouache painting by Joseph Solman.b.As with watercolor, to create this painting, the artist combined water with pigment. However, he/she also added white pigment in order to produce a tinted feel.c.The man in the image is the artist himself. This is easily recognized because the artist painted his back, which is common when artists created self-portraits.d.Although there is a hazy look to the man in the picture, the artist did used definitive, strong lines throughout the piece. What did most Americans understand before their country entered World War I?A) that the war would not last longB) that the war would cost American livesC) that the war would help the US economyD) that the war could be won by the US alone The race began modestly, in 1970, with only 110 people in the race. This revision combines sentences (4) and (5) in paragraph 3. Choose which sentence type BEST describes this revision. A)simple sentence B)complex sentence C)compound sentence D)compound-complex sentence