How can you save without name folder in desktop ?​

Answers

Answer 1

Answer:

Right click on the folder and click on rename or just press F2 function button. Then just press the ALT key and type in 0160 numerically, and then let go of the ALT key. Make sure you use the numeric keys on the right side of the keyboard to type the digits. After doing this, the folder will exist without a name.

Answer 2

Answer:

we can save without name folder in desktop by pressing space in naming box and press enter


Related Questions

Write a method called removeHighPrice that will go through a provided ArrayList called prices and removes the first price that is more than $5.00 and return the new ArrayList. If a price over $5 is not found, it returns the original ArrayList.

Answers

Answer:

The method written in Java is as follows:

public static ArrayList<Double> removeHighPrice (ArrayList<Double> prices){

       for(int i =0;i<prices.size();i++){

     if(prices.get(i) > 5.00){

         prices.remove(i);  

         break;

     }

 }

 return(prices);  

 }

Explanation:

This line declares the method

public static ArrayList<Double> removeHighPrice (ArrayList<Double> prices){

This line iterates through the ArrayList named prices

       for(int i =0;i<prices.size();i++){

This checks if current price is greater than 5

     if(prices.get(i) > 5.00){

If yes, the price is removed

         prices.remove(i);  

And the loop is terminated

         break;

     }

 }

This returns the ArrayList

 return(prices);  

 }

I've added as an attachment, the complete program which includes the main method

Select the correct text in the passage.
Which phrases or sentences in the passage denote operations that the hospital carries out with the help of computers?
David’s family took him to a hospital as he was suffering from a serious ailment. As soon as he was admitted, the hospital authorities recorded David’s medical history. Later, the doctors had a talk with David’s parents about their son’s condition. David was then placed in an intensive care unit (ICU) where his vital signs were constantly monitored. He was also given a lot of medication throughout the entire day.

Answers

Answer: When was admitted, hospital authorities recorded his medical history. Then, placed in an ICU where his vital signs were constantly monitored.

Explanation: With the help of computers, medical histories are often kept in the computer for future reference. Machines are connected to computers to record vital signs.

Answer:

Explanation:

          nnnnnnnnnnnnnnnnnnnnnnn

An input peripheral

a. interacts with or sends data to the computer
b. provides output to the user from the computer
c. receives data from the computer and sends to the printer
d. stores data processed by the computer

Answers

Answer:

c

Explanation:

Which of the following will be output data type of int +int ?

Answers

Answer:

int data type

Explanation:

Given

int + int

Required

Determine the data type of the output

I'll answer this question with the following illustration.

int x = 1

int y = 2

print(x + y)

At line 3, 1 and 2 will be added together.

[tex]1 + 2 = 3[/tex]

And 3 will be printed as integer.

Because 1 and 2 are of type integer.

Hence, when two or more integer variable are added together, the result is also an integer.

How do the arguments for the drawLine() method compare to the arguments for drawOval or drawRect()?

A
In all three cases the first two arguments define the top-left point in the figure, and the last two arguments define the bottom-right point.

B
In all three cases the first two arguments define a starting point, and the last two arguments define a width and length for the figure.

C
In all three cases the first two arguments define a starting point for the figure. For drawLine(), the last two arguments define the line's other endpoint, while for drawOval() and drawRect() they define the shape's width and height.

D
The drawLine() method uses a point, angle, and length for arguments, while drawOval() and drawRect() use a point, a width, and a height.

Answers

Answer:

The answer is option C "In all three cases the first two arguments define a starting point for the figure. For drawLine(), the last two arguments define the line's other endpoint, while for drawOval() and drawRect() they define the shape's width and height"

Explanation:

All the three methods are used to draw shapes and below is how arguments are passed in each method:

1. drawLine( int x1, int y1, int x2, int y2)

Draws a line, between the points (x1, y1) and (x2, y2)

2. drawRect( int x, int y, int width, int height)

Draws the outline of a rectangle of the specified width and height whose top left corner is at position (x,y).

3. drawOval( int x, int y, int width, int height)

Draws the outline of an oval. The result is a circle or ellipse that fits within the rectangle specified by the x, y, width and height arguments

A user asks for a checkbox to be automatically ticked if the annual revenue field is greater than a million. Which formula to trigger a workflow would satisfy this requirement

Answers

Answer:

[tex]AnnualRevenue > 1000000[/tex]

Explanation:

First, represent the field for annual revenue with AnnualRevenue

From the question, we understand that this field must be greater than 1000000 before a certain action can be performed.

Base on the given condition, the formula that triggers this action is: [tex]AnnualRevenue > 1000000[/tex]

Further explanation is in the attachment

From the attachment, we have that:

If the condition is true, the checkbox be ticked

However, if the condition is false; the checkbox remain unchanged because no specific action is stated for this, in the question.

a person is riding a bike and accelerating at 2.8 m/5 2 eith a force of 100 n

Answers

Given,

Force acting on the rider = 100 N

Acceleration = 2.8 m/s²

To find,

The mass of the rider.

Solution,

Let m is the mass of the rider. Using Newton second law of motion as follows :

F = ma

[tex]m=\dfrac{F}{a}\\\\m=\dfrac{100}{2.8}\\\\=35.71\ kg[/tex]

So, the mass of the rider is 35.71 kg.

CHOOSE THE CORRECT CONTINUOUS TENSES( PRESENT CONTINUOUS,PAST CONTINUOUS AND FUTURE CONTINUOUS) : 1. I saw a snake while I ____________________ in the forest. am walking was walking will be walking will walk

Answers

Answer:

Explanation:

joe biden>

Which blue line indicates that the library panel will be added to the adjustments panel group?
BRAIN OO
BRAIN

Answers

there is no image here

how can you apply multimedia for study explain​

Answers

Answer:

This is my opinion. :-)

Explanation:

In education, multimedia applications are used as a source of information to deliver learning resources for students. Multimedia applications also used to improve the learning process and increase the interaction between students and teachers or lecturers.

d. What are the strengths and weaknesses of a computer system?​

Answers

Answer:

The answer is below

Explanation:

Computer System also known as Personal Computer is widely referred to as having various strengths and weaknesses.

Some of the strengths of a computer system are the following:

1. Speed: computer systems are generally faster than human in executing tasks

2. High storage capacity: it has high memory or storage capacity that can save a lot of files that are readily available for users.

3. Versatility: it can perform various tasks simultaneously.

4. Accuracy: it has accuracy when executing tasks

5. Reliability: it is reliable because it does not get tired easily like humans.

Some of the weakness of a computer system are the following:

1. Lack of Intelligence Quotient: that is, it can functions on its own except based pre-installed program

2. Lack of decision making: A computer system requires a human operator before it functions.

3. Lack of Emotional Quotient: the computer system is devoid of feelings

Identify the problems that computer program bugs can cause. Check all that apply.
Program bugs can cause error messages.
Program bugs can cause computer viruses.
Program bugs can cause programs to halt while they are running.
Program bugs can cause software and hardware to miscommunicate.
Program bugs can provide unplanned results.

Answers

Answer:

acde not b though

Explanation:

1.) B.

2.)A.

3.)C.

Ignore this writing i coulndnt submit the answer with out it

Which testing is an example of non-functional testing? A. testing a module B. testing integration of three modules C. testing a website interface D. testing the response time of a large file upload

Answers

Answer: D

Explanation:

HELLLLLLLLPPPPPPPPPPPP HHHHHHHHHEEEEEEEEELLLLLLPPPPPP MEEEEEEEE
"What is the capital of Belarus?" is an example of what type of search query?
A. Boolean operator
B. HTML markup language
C. Natural language
D. Keyword phrase

Answers

Answer:

C. Natural language

Explanation:

this is because the search query uses normal letters and phrases without attaching codes

Natural language is the capital of Belarus.

What is Capital of Belarus?

As the nation's capital, Minsk enjoys exceptional administrative privileges and serves as the hub for both Minsk District and Minsk Region. With a population of 2 million as of January 2021, Minsk was the eleventh most populous city in Europe.

One of the administrative capitals of the Eurasian Economic Union (EAEU) and the Commonwealth of Independent States (CIS) is Minsk.

Minsk was first recorded in 1067 and later served as the principality's capital until it was captured by the Grand Duchy of Lithuania in 1242.

Therefore, Natural language is the capital of Belarus.

To learn more about Natural language, refer to the link:

https://brainly.com/question/12093401

#SPJ5

SOMEONE PLEASE HELP ME OUT WITH!!!!!

Answers

i’m pretty sure it’s the second one. that’s what i’d choose
I’d chose the second one

inserting merge fields in the letter
steps required
plz ​

Answers

Answer:

Click or tap where you want the merge field.

Choose the down-arrow under Insert Merge Field, and select a field.

Insert Merge Field menu of available fields

If you don’t see your field name in the list, choose Insert Merge Field.

Choose Database Fields to see the list of fields that are in your data source.

Choose Insert.

Answer:

Once you have a data source connected to your document, adding merge fields is a way to personalize a document with information from the data source. The merge fields come from the column headings in the data source.

WindowsmacOS

Here’s an example of how the Address Block and Greeting Line collections of merge fields might pull data from an Excel spreadsheet into a form letter.

Data pulled into mail merge fields

The Address Block and Greeting Line fields are collections of merge fields.

Note: If the merge field commands appears dimmed, click Select Recipients and choose the kind of mailing list you’re using. If you don’t have a mailing list yet, click Type New List to create your list in Word.

Explanation:

Hope it's answer you plz mark as Brainlist

A new user needs access to their files in iCloud without relying on the operating system (OS). How would the user access the Apple iCloud files directly online from a Mac computer running OS X?

Answers

Answer:

Log in to iCloud.com on a browser

Explanation:

On your browser which should be a supported browser, you should log in to iCloud.com since iCloud is not supported on mac OS X earlier than mac OS X Lion 10.7.5

Write a C++ program which displays the following shape.
Please help me out with it.

Answers

Answer:

/*

Notably, this leaves a blank line at the top, so if that shouldn't be there you can tweak it.

This was built successfully with gcc

gcc -Wall shape.cpp -lstdc++

*/

#include <iostream>

using namespace std;

int main(void){

   int w, x;

   for(w = 0; w < 16; w += 2){

       for(x = 0; x < w >> 1; x++){

           cout << "*";

       }      

       for(x = w; x < 14; x++){

           cout << " ";

       }      

       for(x = 0; x < w >> 1; x++){

           cout << "*";

       }      

       cout << endl;

   }  

   return 1;

}

SOMEONE PLEASE HELP ME OUT WITH THIS!!!!!!

Answers

Answer:

C.

Explanation:

Answer:

I think its C give branliest to other guy

edhesive code practice 6.3

Answers

Answer:

Question 1

1 / 1 pts

For Questions 1-4 below, use the following image of a coordinate plane.

The coordinate (0, 0) on this coordinate plane is located at point:

 B

Question 2

The coordinate (6, 4) on this coordinate plane is located at point

 C

Question 3

1 / 1 pts

The coordinate (2, 8) on this coordinate plane is located at point:

 A

Question 4

1 / 1 pts

The coordinate (8, 2) on this coordinate plane is located at point:

 D

Question 5

1 / 1 pts

The ____________ keyword is used to create a function.

 def

Question 6

1 / 1 pts

The create_frame function creates the frame that holds the drawing.

Explanation:hope it helps

ull be my american girl american girlr

Answers

Answer:

Wuuut

Explanation:

you crazy

PLEASE HURRY

Jorge is using Python 3 as a calculator. Jorge wants to find the product of 321 and 408. What should Jorge type? print 321 x 408 print (321 times 408) print 321(408) print (321 * 408)​

Answers

Answer:

1. 321 x 408 print (321 times 408)

Explanation:

It is multiplication, it will create a product. So that is why.

Answer:

print (321 * 408)​

What command activates the Analyze contextual tab to appear?
O inserting a table
inserting a Pivot Table
altering a chart
inserting a chart

Edgunuity?

Answers

Answer: inserting a PivotTable

Explanation:

Answer:

inserting a pivot table

Explanation:

You are designing an update to your client's wireless network. The existing wireless network uses 802.11b equipment; which your client complains runs too slowly. She wants to upgrade the network to run up to 600 Mbps. Due to budget constraints, your client wants to upgrade only the wireless access points in the network this year. Next year, she will upgrade the wireless network boards in her users' workstations. She has also indicated that the system must continue to function during the transition period. Which 802.11 standard will work best in this situation

Answers

Answer:

The answer is "802.11n"

Explanation:

In this question, the Wireless LAN (WLAN) connections are indicated at 802.11n.802.11n, a companion piece to the guidelines relatives 802.11, would then enhance velocity, dependability, and variety of wireless local area network (Wi-Fi network) transmitters. 802.11n

CAN SOMEONE PLEASE HELP ME WITH THIS PLEASE ?!!!!!!!!

Answers

Get feedback about your product from the restaurant

In a large kitchen what is meant by the partie system? Who devised this system?

Answers

Answer:

While at the Savoy in London, Escoffier formally introduced his army-influenced organisational method to the kitchens there. It became known as the Chef de partie system, and the idea was to avoid duplication of tasks, and to make communication between the various staff members easier.

Write a simple algorithm in pseudocode that asks the user their favourite colour and then agrees with their choice, quoting the colour in the response.

Answers

Answer:

i am still a beginner in this but i hope it helps.

add scanner object;declare string FavColour;print msg to ask user for inputscan input FavColour;print msg (" your favourite colour is " + FavColour)

Using the Caesar cipher, "HELLO" is encrypted to "OLSSV" by applying a shift of 7. The number 7 is considered the __________

Answers

Answer:

The offset

Explanation:

In the question, we understand that the original text is HELLO and the encrypted text is OLSSV.

It should be noted that O replaced H, L replaced E, S replaced L and V replacement O.

This is made possible by a term refered to as offset.

The offset is used to determine the character that will replace another when it is encrypted.

7 characters after H is O; this is same for every other characters in the text.

The example given represents a simple shift cipher encryption with each letter in the original text shifted by a fixed value. Hence, the shift value of 7 used in the cipher given is called the key.

Each alphabet on the original text, HELLO is shifted by the key 7 to produce :

H + 7 alphabets gives OE + 7 alphabets gives LL + 7 alphabets gives SL + 7 alphabets gives SO + 7 alphabets gives V

This produces the encryption OLSSV, hence, with the shift of 7 known the encryption letters are each reversed by 7 to obtain the actual phrase 'HELLO'.

LEARN more :https://brainly.com/question/20504501

8.
A customer wants to use the computer only to send emails to family members. Is a fast processor
required? Why or why not?

Answers

Answer:

yes

Explanation:

the faster the processor the better the computer loads things and works faster, there's little to no latency depending on the wifi

A customer wants to use the computer only to send emails to family members. Is the required the fast processor as well as fast internet connection was to send the easily.

What is customer?

The term customer refers to the purchased the goods and the services, The customer are to fulfill the needs and the wants as the exchange of the money. The customer is the receiving the information of the product with the help of customer.

The term email refers to the part of the communication. The email are the medium of the communication as the mostly used to the marketing and the information purposes. The email are the official purposes are the used. A person was to send the email to the family was the need to the fast processor as well as the need of the internet to share the email are quickly delivered.

As a result, the email was to share the quickly with the help of the internet and the fast processor.

Learn more about on email, here:

https://brainly.com/question/14666241

#SPJ2

SOMEONE PLEASE HELP ME PLEASE HELP ME WITH THIS!!!!!

Answers

Answer:

The last one

Explanation:

I hope this is correct and have a great day

Answer: C

Explanation: First step in the engineering design would be to identify a problem and try to come up with a solution for it.

Other Questions
What is the difference between sole proprietor and partnership? Which type of deposition creates sandbars? the sum of the first 20 positive odd integers In the story Seventh Grade, Victor directly impacts the mood of the setting when he change into past tense she walks slowly Select all of the imperfect key words.Select one or more:a. anocheb. frequentementec. siempred. a vecese. ayerf. a menudo Can somebody please help? Why are peers important to the political socialization process?Older children and teens look to peers as much as parents for guidance.Peers provide critical information about the structure of American Government.Interactions with other children tends to negate socialization by family members.Young people simply imitate their friends' ideas and opinions about politics. ILL GIVE BRAINLIEST PLZ HELP. Atoms of carbon-14 are radioactive. They decay into atoms of the element nitrogen. Suppose that a sample of rock is taken from a fossil. The sample has 500 atoms of carbon-14 and 1500 atoms of nitrogen. If carbon-14 has a half-life of 5700 years, how old is the fossil? 5700 years old 11,400 years old 17,100 years old 2850 years old Which steps are part of the process of citing supporting details Myra's neighbor, a little boy, practices his saxophone loudly and annoyingly. According to the overjustification effect, if Myra wants to get him to quit playing, she should In chemiosmosis in mitochondria, protons flow from the intermembrane space into the matrix. In what direction do protons flow during chemiosmosis in chloroplasts Which of the following represents the set of possible rational roots for thepolynomial shown below?x2 + 5x2 3x 20 = 0 Multiply the binomials: (3x + 8)(x 3) A. 3x2 17x 24 B. 3x2 x 24 C. 3x2 x + 24 D. 3x2 + x + 5 Perishable items are those whichA.spoil quicklyB.are in high demandC. must be transported for long distancesD.are imported from other countriesYes On what does kinetic energy depend?a. Mass and velocity b. Gravity and mass c. Gravity and height d.Velocity and gravity Which statement best represents the equation below 10+(-10) =0 Read the excerpt from The Diary of Anne Frank.Anne (As she opens the carton). You know the way I'm going to think of it here? I'm going to think of it as a boardinghouse. A very peculiar summer boardinghouse, like the one that we (She breaks off as she pulls out some photographs.) Father! My movie stars! I was wondering where they were! I was looking for them this morning . . . and Queen Wilhelmina! How wonderful!What does this excerpt reveal about Anne?She believes that she is on vacation, not in hiding.She uses her imagination to make herself feel better.She is unable to face the truth of her situation.She is wiser than many other children her age. The proportional relationship between the number of inches a candle has burned away, b, at any time in hours, t, can be represented by the equation b = 0.25tb=0.25t. What is the constant of proportionality from the time in hours to the inches of candle that has burned away? Cameron needs to order some new supplies for the restaurant where he works. Therestaurant needs at least 598 spoons. There are currently 194 spoons. If each set onsale contains 8 spoons, write and solve an inequality which can be used to determinex, the number of sets of spoons Cameron could buy for the restaurant to have enoughspoons.