2 A_______
uses graphics or pictures to help the user navigate and
access programs

Answers

Answer 1

Answer:

the interface

Explanation:


Related Questions

Which of the these is tool for creating mobile apps? A:C# B:Apple Pie C:Appy Pie D:C++​

Answers

Answer:

Appypie

Explanation:

Have a good day

The tool used for creating mobile apps is C#. The correct option is A.

What is C#?

C# is a multi-paradigm, broad sense programming language. C# programming areas of study encompassing static typing, strong typing, lexically scoped, imperative, declarative, functional, generic, object-oriented, and component-oriented programming.

C++ is an intermediate-level language that extends C with object-oriented features, whereas C# is a high-level language.

C++ compiles programs to Machine Codes, whereas C# compiles programs to Common Language Runtime, abbreviated as CLR.

C# is a popular programming language for Windows desktop apps, enterprise solutions, and even game development, as the Unity game engine is built on it.

C# or F# can be used to create native apps for Android, iOS, and Windows (Visual Basic is not supported at this time).

Thus, the correct option is A.

For more details regarding programming language, visit:

https://brainly.com/question/14379391

#SPJ5

how do you award a brainliest

Answers

Answer: Usually there has to be 2 answers. When you go to the answers on your question there should be a outlined crown or something like that, then you click that.

What is calculated first in this formula: =A5*(A7+A10)+A14​

Answers

Answer:

The equation in parenthisis , you always calculate first

is cheque money? give reason​

Answers

Answer:

Cheque is not money. cheque is a paper instructing the bank to pay a specific amount from the person's account to the person in whose name the cheque has been drawn. The facility of cheque against demand deposits makes it possible to directly settle the payments without the use of withdrawal.

Explanation:

Which of the following Office Online apps is most effective for creating spreadsheets?

Answers

Answer:

Excel

Explanation:

It allows you to make spreadsheets.

A laptop computer is smaller than desktop computer. True or false

Answers

Answer:

true

Explanation:

Answer:

true

Explanation:

laptop... sits on ya lap

desktop... sits on the desk

________________are programs that designed to help users to be more productive with their personal tasks

Answers

Answer is • designers •

Have a nice day

Answer:

Application software

Application software consists of programs designed to make users more productive and/or assist them with personal tasks

Explanation:

In what situations should you show enthusiasm at work? Check all of the boxes that apply.

when you are congratulated on a job well done

when you are offered a new project

when you know that gossip is occurring among colleagues

when you are running a team meeting

when you are offered a promotion

Answers

Answer: A, B, D, E

Explanation: edge 2022

Which note-taking method quickly captures and organizes information?

mapping
Cornell
SQRW
recording

Answers

Answer:

c mapping

Explanation:

Mapping  is a note-taking method that quickly captures and organizes information

What is mapping method in note-taking?

Mapping is known to be s process where one can make use of their comprehension or concentration skills and then they can use in a note taking form.

In this method, it always linked each fact or idea to all other fact or idea. Mapping is known to be a kind of  graphic representation of the work or all the contents of a lecture.

Learn more about mapping  from

https://brainly.com/question/1425367

What is the singular of Data?
What are alphanumeric characters?

Answers

Answer:

1. Datum

2. Alphanumericals are a combination of alphabetical and numerical characters

Explanation:

This program outputs a downwards facing arrow composed of a rectangle and a right triangle. The arrow dimensions are defined by user specified arrow base height, arrow base width, and arrow head width.(1) Modify the given program to use a loop to output an arrow base of height arrowBaseHeight. (1 pt)(2) Modify the given program to use a loop to output an arrow base of width arrowBaseWidth. Use a nested loop in which the inner loop draws the *’s, and the outer loop iterates a number of times equal to the height of the arrow base. (1 pt)(3) Modify the given program to use a loop to output an arrow head of width arrowHeadWidth. Use a nested loop in which the inner loop draws the *’s, and the outer loop iterates a number of times equal to the height of the arrow head. (2 pts)(4) Modify the given program to only accept an arrow head width that is larger than the arrow base width. Use a loop to continue prompting the user for an arrow head width until the value is larger than the arrow b

Answers

Answer:

Here is the JAVA program:

import java.util.Scanner; // to get input from user  

public class DrawHalfArrow{ // start of the class half arrow  

public static void main(String[] args) { // starts of main() function body  

   Scanner scnr = new Scanner(System.in); //reads input  

int arrowBaseHeight = 0; // stores the height of arrow base  

int arrowBaseWidth  = 0; // holds width of arrow base  

int arrowHeadWidth = 0; // contains the width of arrow head  

// prompts the user to enter arrow base height, width and arrow head width  

System.out.println("Enter arrow base height: ");  

arrowBaseHeight = scnr.nextInt(); // scans and reads the input as int  

System.out.println("Enter arrow base width: ");  

arrowBaseWidth = scnr.nextInt();  

/* while loop to continue asking user for an arrow head width until the value entered is greater than the value of arrow base width */  

while (arrowHeadWidth <= arrowBaseWidth) {  

   System.out.println("Enter arrow head width: ");  

   arrowHeadWidth = scnr.nextInt(); }  

//start of the nested loop  

//outer loop iterates a number of times equal to the height of the arrow base  

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

//inner loop prints the stars asterisks  

     for (int j = 0; j <arrowBaseWidth; j++) {  

         System.out.print("*");        } //displays stars  

         System.out.println();          }  

//temporary variable to hold arrowhead width value  

int k = arrowHeadWidth;  

//outer loop to iterate no of times equal to the height of the arrow head  

for (int i = 1; i <= arrowHeadWidth; i++)  

{     for(int j = k; j > 0; j--)     {//inner loop to print stars  

      System.out.print("*");    } //displays stars  

  k = k - 1;  

  System.out.println(); } } } // continues to add more asterisks for new line  

Explanation:  

The program asks to enter the height of the arrow base, width of the arrow base and the width of arrow head. When asking to enter the width of the arrow head, a condition is checked that the arrow head width arrowHeadWidth should be less than or equal to width of arrow base arrowBaseWidth. The while loop keeps iterating until the user enters the arrow head width larger than the value of arrow base width.  

The loop is used to output an arrow base of height arrowBaseHeight. So point (1) is satisfied.  

The nested loop is being used which as a whole outputs an arrow base of width arrowBaseWidth. The inner loop draws the stars and forms the base width of the arrow, and the outer loop iterates a number of times equal to the height of the arrow. So (2) is satisfied.  

A temporary variable k is used to hold the original value of arrowHeadWidth so that it keeps safe when modification is done.  

The last nested loop is used to output an arrow head of width arrowHeadWidth. The inner loop forms the arrow head and prints the stars needed to form an arrow head. So (3) is satisfied.  

The value of temporary variable k is decreased by 1 so the next time it enters  the nested for loop it will be one asterisk lesser.  

The screenshot of output is attached.

PLZ help
What are the similarities between taking notes for audio and online materials? Check all that apply.

1 ) It is important to identify the keywords and concepts.
2) The Cornell method can be useful when students need detailed notes.
3) It is necessary to print the material from the online source and the audio recording.
4) The main idea of the material must always be identified.
5) It is essential to use the SQRW system.

Answers

Answer:

The correct answer is,

A. It is important to identify the keywords and concepts.

B. The Cornell method can be useful when students need detailed notes.

D. The main idea of the material must always be identified.

Explanation:

The similarities in the notes of audio and online materials include:

Essential to find out the keywords and the concepts.The method of Cornell is useful when students need detailed notes.An Idea of the material must always be identified.What are online materials?

The online materials mean the online resources that can include the audio and visual aspects of the internet such as sound recording is essential for the undertaking the aspects of data.

It helps in identification  of the concepts, its a method that used studying the detailed notes and is cheap and easily available

Find out more information about the online materials.

brainly.com/question/4371674

IT professionals should help to protect users’ personal information, such as bank account information or Social Security numbers, to prevent

A.software piracy.

B.identity theft.

C.moonlighting.

D.corporate espionage.

Answers

Answer:

B

Explanation:

Answer:

b

Explanation:

What does Tristan need to do to add a row at the bottom of the table shown?

He needs to put the insertion point at the end of 8.8 and press the Tab key.
He needs to put the insertion point at the end of 8.8 and press the Enter key.
He needs to put the insertion point at the end of freezers and press the Tab key.
He needs to put the insertion point at the end of freezers and press the Enter key.

Answers

Answer:

He needs to put the insertion point at the end of 8.8 and press the Tab key.

Explanation:

Answer:

A

Explanation:

Which future US President attacked a French fort in the Ohio River Valley? A. John Adams B. George Washington C. Alexander Hamilton D. James Braddock

Answers

Answer:

George Washington

Explanation:

What is constructive criticism?

Advice and possible solutions intended to help or improve something
Information given to others as a way to make them feel unintelligent
Reports about decreasing profits
Statements and no possible solutions aimed at showing problem areas

Answers

Answer:

Constructive cristsism is a helpful way of giving feedback that provides specific, actionable suggestions. Or, its a nice way of criticizing someone and telling them what to do better

Answer:

Advice and possible solutions intended to help or improve something

Explanation:

I took the test and Got it Correct!

whats the answer to 9? i really need help with this in the next 20 minutes. ty if u help me!

Answers

Answer:

A very precise number B

Explanation:

Hope you pass

What is the technical term of a native programming language?​

Answers

Native Code Or Machine Language

D
E
A
C
B
For this lab, you will find the area of an irregularly shaped room with the shape as shown above.
Ask the user to enter the values for sides A, B, C, D, and E and print out the total room area.
Remember the formula for finding the area of a rectangle is length width and the area of a right triangle is 0.5 * the base" heigh
Please note the final area should be in decimal format.
Sample Run
Enter side A: 11
Enter side B: 2
Enter side C: 4
Enter side D: 7
Enter side E: 1
Sample Output
Room Area: 53.5

Answers

In python:

a = float(input("Enter side A: "))

b = float(input("Enter side B: "))

c = float(input("Enter side C: "))

d = float(input("Enter side D: "))

e = float(input("Enter side E: "))

print(f"Room Area: {(a * b) + ((a - c) * (d - (b + e))) + (0.5*(a - c) * e)}")

I hope this helps!

If String str = "United States";, then what is the value of str.indexOf("united");?

−1
0
1
2
3

Answers

Answer:

-1

Explanation:

due to the fact their is no capital "U" it will -1

What is the art of getting your work done through people in a harmonious way?
A.
having good interpersonal skills
B.
having good work ethics
C.
having high self-esteem
D.
having high work efficiency
E.
having conflict resolution skills

Answers

Answer:

A.

having good interpersonal skills

Answer:

it is (A)

Explanation:

Which of the following are signatures for constructors in the Rectangle class?

----Choose all options that apply.-----


A. Rectangle(double len1, double len2, double len3, double len4)

B. Rectangle(double len)

C. Rectangle(int len)

D. Rectangle(int len, int wid)

E. Rectangle()

F. Rectangle(double len, double wid)

Answers

Answer to this answer is B because

constructor is a special method that's also called once memory is allocated for a freshly constructed object to initialize it, and further  discussion can be defined as follows:

It has the same identity as the class or struct, so it normally sets up the new object's data members.In the Rectangle class if it calculates the area. so, it takes two parameters that are "length, width", that is equal to "Rectangle(int len, int wid)".

Therefore, the final answer "Option D".

Learn more:

brainly.com/question/14239397

Find the value of 1/2 of 1/2​

Answers

Answer:

1/2 of 1/2​ is 1/4 or 0.25

Explanation:

Answer:

0.25 or 1/4

Explanation:

because 0.50 is 1/2 so half of 0.50 is 0.25 or 1/4

Which of the following behaviors is considered ethical?

A. copying another user’s password without permission
B. hacking software to test and improve its efficiency
C. using a limited access public computer to watch movies
D. deleting other user’s files from a public computer

Answers

Answer:

answer is c. using a limited access public computer to watch movies

Answer:

using a limited access public computer to watch movies

Explanation:

It is the only one that will not get you in big trouble

What are some ways to enter and edit data in a worksheet? Check all that apply.
right-clicking the cell
zooming in on the cell
selecting the cell
selecting the cell and clicking the formula bar
clicking to select the cell and typing

Answers

Answer:

selecting the cell

selecting the cell, clicking the formula bar

double-clicking the cell

Explanation:

Because I watched a video

Answer:

C). selecting the cell

D). selecting the cell and clicking the formula bar

E). clicking to select the cell and typing

Explanation:

I just did the Instruction on EDGE2022 and it's 200% correct!

Also, heart and rate if you found this answer helpful!! :) (P.S It makes me feel good to know I helped someone today!!)

Often used in connection with a business
A: fair use
B: copy right
C: public domain
D: commercial use
E: Creative Commons

Answers

Answer:

I would have to say public domain (but i am not sure)

BRAINLIEST!!!!!!
I nEeD your HeLp​

Answers

Answer:

[tex]option \:1 . \: is \: cd \\ option \:2. \: is \: hard \: disk \: drive \\ primary \: memory \: is \: \: a \: memory \: dirctly \\ \: accessed \: by \: the \: cmp \\ why \: secondary \: is \: not \: directly \: accessed[/tex]

[tex]\boxed{1.)}\;Your\;answer\;is\;indeed\;cd.\\\\\\\boxed{1's\;explanation...\;>See\;Below<}\\\\\\An\;SSS\;device\;is\;a\;Solid-state \;storage \;device.\;It\;collects\;storage.\;Therefore,\;your\\\;answer\;is\;B,\;cd.[/tex]

[tex]\boxed{-----------------------------------}[/tex]

[tex]\boxed{2.)}\;Your \;answer\; is\; HDD.\\\\\\\boxed{2's \;Explanation...}\\\\\\A\;HDD\;is\;a\;drive\;located\;inside\;of\;a\;computer.\;Therefore,\;your\;answer\;is\;B.\\\\\\\boxed{------------------------------------}\\\\\\\boxed{Hope\;it\;helps!}\\\\\\\huge\boxed{Thanks,razorple.}[/tex]

In one or two short paragraphs, explain a few different ways you could get more involved in your own community. Think about the issues that concern you and how you could get involved to have an effect on those concerns.

Answers

Answer:

Ways people get more involved in your community are by stoping to help when and where you're needed. It's a simple way to make your community better and help to create the kind of vibe that makes people feel safe and happy. If you see someone in need of assistance, come to their aid instead of averting your eyes. Do for others what you'd want them to do for you if you were in their situation. Support your local economy. Healthy communities have healthy local economies. People work together to help each other make a living and thrive. You can help improve the health of your local economy in many different ways, from changing your shopping habits to starting a business of your own. 

Recycle and compost. Many communities are experiencing problems with landfills that are getting too full. Producing too much trash pollutes the environment, and that's not good for your community's long-term health. You can do your part to help improve the situation by recycling and composting as much of your waste as possible.Save energy and water. Using excessive electricity and water strains community resources.Saving energy and water is good for the planet as well as your local environment. Do your best to conserve energy and water and it will become an investment in your community's long-term health. By doing some of these simple things you can be involved and help the community you live in.

Explanation:

Hope this helps

Answer:

Answers will vary but should include some specific examples with common elements such as:

organizing a food drive or fundraiser to benefit a local charity

volunteering at a home for the elderly

donating clothes or other goods

getting a school sports team involved in a local service project

finding an organization where you can volunteer with your parents

Explanation:

PLATO

What is the purpose of this diamond shape in a flowchart?

Answers

Answer:

To represent a decision making step.

Explanation:

for example, assume that you need to display 'pass' if the total marks are greater than 50 and 'fail' if it's less than 50

Then, after calculating the total, you should draw a diamond and inside it write, 'is total ∠ 50?'

after that you can continue your flowchart taking one decission as 'yes' and the other decission as 'no'

The rectangular shape stands for a task or course of activity. In the flowchart sequence, the diamond shape represents a question or a branch.

What is flowchart?

A flowchart is a diagram that shows a process' individual steps in their proper order.

It is a general tool that may be customised for a wide range of uses and used to define a variety of processes, including a project plan, an administrative or service process, or a manufacturing process.

These four typical forms are excellent for outlining organisational structure, how various departments interact, and economic, industrial, or administrative operations.

In a process, a decision point is represented by a diamond. Usually, the statement in the symbol will call for a "yes" or "no" response and, in accordance, branch to other locations in the flowchart.

Thus, this is the main use of diamond symbol in a flowchart.

For more details regarding a flowchart, visit:

https://brainly.com/question/14598590

#SPJ2

What are some positive ways to build your online reputation? (Choose all that apply)
Build a brand for yourself.
Constantly promote a product you're selling.
Avoid revealing personal fights and problems.
Pay for views and likes on your content.

Answers

Answer:my best answer is to be nice and use manners

Explanation:

chhincvjucnvbeojnvjbbnjovnvbbnvjbcnojnv definitly dont do that

Other Questions
What is the image of the point (17, 14) when rotated 270 degrees anticlockwise about the origin? (-14, 17)(14, 17)(-14, -17)(14, -17) Hi, I really need help ASAP!!! look at the images below: (there is 2 images per question) The seventh grade choir sold pizzas as a fundraiser. The choir teacher created the graph below for the students PLEASE HELP!!!!The student is chemically combining 4 g of hydrogen with 2 g ofoxygen. The reactants have a coefficient of 2 in them. What will be themass of the product?A. 12 gramsB. 10 gramsC. 8 gramsD. 6 grams I am a beginner can someone give me a brainliest to start me out I would appreciate it.:) Tell me every single thing about Malcom X Summarize the central idea of the text. Answer in 2-3 sentences. Tornadoes are violent storms that come from powerful thunderstorms.They appear as a funnel- or cone-shaped cloud with winds that can reach up to 300 miles per hour. They cause damage when they touch down on the ground. They can damage an area one mile wide and 50 miles long. Tornado season commonly occurs during the months of March through August, but they can occur at any time. They can happen in any state but are most commonly found in Arkansas, Iowa, Kansas, Louisiana, Minnesota, Nebraska, North Dakota, Ohio, Oklahoma, South Dakota, and Texas. This area is commonly called "Tornado Alley."If there are weather or news reports that say there is a tornado in your area, the most important thing to do is to take shelter immediately in a place without windows, such as a bathroom or a basement. A Tornado Watch means that tornadoes are possible. Stay tuned to the radio or television news. A Tornado Warning means that tornado has been sighted. Take shelter immediately! que es celebro y cuando con la carta automtica de 1897? pag si X! si X na don't alam alam Y its your X breaks on youWhat does this mean Brian compared the absolute values of the numbers12,34,and14.Arrange the numbers from least to greatest. What do many people believe is the most dangerous result of cutting down rain forests?A. Loss of grazing grass. B. Loss of plants and animals species.C. Increase in agriculture.D. Decrease in slumber supply. The temperature, H, in degrees Celsius, of a cup of coffee placed on the kitchen counter is given by H = f(t), where t is in minutes since the coffee was put on the counter.a) Is f'(t) positive or negative? Why?b) What are the units of f'(35)?c) Suppose that |f'(35)| = 1.5 and f(35) = 68. Fill in the blanks (including units where needed) and select the appropriate terms to complete the following statement about the temperature of the coffee in this case. At ____ minutes after the coffee was put on the counter, its temperature is ____ and will ____ by about ____ in the next 30 seconds. what is the The defense of democracy? The perimeter of a triangle is 88. The sides have lengths d, e, and f. The ratio of e to d is 3:1, and the ratio of f to e is 10:9. list the length of the sides of the triangle from smallest to greatest. Type the numbers only, do not include units. Please can someone answer this, because my answers don't make sense. What is the highest elevation point in Europe What is A river compared to a ocean? Question for JungKookLuver and jguzman577! Por qu crees que los videojuegos han tenidouna expansin masiva despus de los 90? Can anyone answer this its due in 5 minutes The English Bill of rights createdlimited monarchyO absolute monarchyO a weak ParliamentO the Divine Right of Kings Which function represents the graph of this plz help for brainiest