Answer:
rounded rectangle
Explanation:
I jus looked it up lol
i need help with this fast, thank you sm if you help me. ill give you brainliest
Answer:
Red
Explanation:
The implementation stage of the SDLC _____.
involves describing the desired functionality of the system
involves establishing an overview of the project goals
involves putting the system into production so users can begin to perform real business operations with the system
involves analyzing end-user business requirements in order to refine project goals
Answer:
d. involves analyzing end-user business requirements in order to refine project goals
Explanation:
In the software development life cycle, the implementation stage is the stage where the computer programmers begin the actual coding of the application required by the end-user. At this stage, the developer takes into account the needs and specifications of the customer.
For example, if the end-user wants a software application that can track payment records, the researcher at this stage begins using the right software to code programs that can effect this function.
5
Select the correct answer.
Which method is used to transfer information from one computer to another?
O A.
mass communication
B.
point-to-point communication
C.
internet protocol
D.
hard disk
E.
microprocessor
Answer:
A
Explanation:
If you wanted to mass communication means it imparts and exchanges information on a scale of people so you couple transfer and share your data from one person to another.
Answer: A
Explanation:
-
Which of the following is an example of academic integrity?
A. You work on each assignment mostly by yourself
B. You don't copy work or allow others to copy your work
c. You look up answers on the internet without citing the source
D. You work with close friends on assignments without instructor approval
Answer:
B. You don't copy work or allow others to copy your work
Explanation:
The example of academic integrity is that you don't copy work or allow others to copy your work. The correct option is B.
What is academic integrity?The moral code or ethical policy of academics is known as academic integrity. The R.C., regarded as the "grandfather of academic integrity," popularised the phrase.
Being honest, fair, polite, and responsible in your studies and academic work is referred to as having academic integrity.
It entails acting in accordance with these ideals both when producing your own work and engaging with that of others.
Academic integrity is the practise of doing learning, teaching, and research with the principles of honesty, trust, fairness, respect, and responsibility.
Students, teachers, researchers, and all other staff members should act honestly, take responsibility for their choices, and be fair in all aspects of their job.
Thus, the correct option is B.
For more details regarding academic integrity, visit:
https://brainly.com/question/9540934
#SPJ2
The collection of tools and features at the top of the screen is called the
O file
O ribbon
O tab
(02.05 LC) What is an example of a web browser? Bing Firefox Instagram Yahoo
Answer: Firefox
Explanation:
Bing and Yahoo are search engines. Instagram is an example of social media. Firefox is a wed browser. A web browser is a window that allows you to open up new tabs. the other three are examples of tabs you can open with Firefox.
Answer:
firefox
Explanation:
Select the correct answer.
In what decade did the first computer become commercially available?
A.
1950s
B.
1960s
1970s
thing
D.
1980s
O E.
1990s
Answer:
1960's
Explanation:
Answer: 1960
Explanation:
i really need help please im about to give up
Answer:
true
Explanation:
because I ain't stupid
Given integer values for red, green, and blue, subtract the gray from each value.
Computers represent color by combining the sub-colors red, green, and blue (rgb). Each sub-color's value can range from 0 to 255. Thus
(255, 0, 0) is bright red, (130, 0, 130) is a medium purple,(0,0,0) is black, (255, 255, 255) is white, and (40, 40, 40) is a dark gray. (130, 50,
130) is a faded purple, due to the (50, 50, 50) gray part. (In other words, equal amounts of red, green, blue yield gray).
Given values for red, green, and blue, remove the gray part.
Answer:
Here is the C++ program:
#include <iostream> //to use input output functions
using namespace std; //to identify objects cin cout
int main() { //start of main method
int red,green,blue,smallest; //declare variables to store integer values of red,green, blue and to store the smallest value
cout<<"Enter value for red: "; //prompts user to enter value for red
cin>>red; //reads value for red from user
cout<<"Enter value for green: "; //prompts user to enter value for green
cin>>green; //reads value for green from user
cout<<"Enter value for blue: "; //prompts user to enter value for blue
cin>>blue; //reads value for blue from user
//computes the smallest value
if(red<green && red<blue) //if red value is less than green and blue values
smallest=red; //red is the smallest so assign value of red to smallest
else if(green<blue) //if green value is less than blue value
smallest=green; //green is the smallest so assign value of green to smallest
else //this means blue is the smallest
smallest=blue; //assign value of blue to smallest
//removes gray part by subtracting smallest from rgb
red=red-smallest; //subtract smallest from red
green=green-smallest; //subtract smallest from green
blue=blue-smallest; //subtract smallest from blue
cout<<"red after removing gray part: "<<red<<endl; //displays amount of red after removing gray
cout<<"green after removing gray part: "<<green<<endl; //displays amount of green after removing gray
cout<<"blue after removing gray part: "<<blue<<endl; } //displays amount of blue after removing gray
Explanation:
I will explain the program using an example.
Lets say user enter 130 as value for red, 50 for green and 130 for blue. Sp
red = 130
green = 50
blue = 130
First if condition if(red<green && red<blue) checks if value of red is less than green and blue. Since red=130 so this condition evaluate to false and the program moves to the else if part else if(green<blue) which checks if green is less than blue. This condition evaluates to true as green=50 and blue = 130 so green is less than blue. Hence the body of this else if executes which has the statement: smallest=green; so the smallest it set to green value.
smallest = 50
Now the statement: red=red-smallest; becomes:
red = 130 - 50
red = 80
the statement: green=green-smallest; becomes:
green = 50 - 50
green = 0
the statement: blue=blue-smallest; becomes:
blue = 130 - 50
blue = 80
So the output of the entire program is:
red after removing gray part: 80 green after removing gray part: 0 blue after removing gray part: 80
The screenshot of the program along with its output is attached.
What are the two reasons we analyze algorithms?
Answer:
the most straightforward reason for analyzing an algorithm is too discover its characteristics in order to evaluate its suitability for various applications or compare it with other algorithms for the same application
The
is an interest inventory that classifies people according to six different types: Realistic, Investigative, Artistic, Social, Enterprising, and Conventional.
is an aptitude assessment that matches students with study programs at specific colleges and universities.
Answer:
Campbell Interest Inventory , FOCUS2
Explanation:
Answer:
Campbell Interest Inventory , FOCUS2
Explanation: I took the test and made 100
Look both _____before you cross a street and i want to see how much of yall know it
Answer:
Ways
Explanation:
Look both ways
Myra Wrote a Program and forgot to put the steps in the correct order. Which step does Mya need to Review
A. Pattern Following
B. Planning
C. Segmenting
D. Sequencing
Answer:
B. Sequencing
Explanation:
I hope this helps you UwU
Answer:
The answer is 'A'
Explanation:
I took the test, and got a 100%
It also makes more sense than the other choices.
Have a good day <3
What era did the television occurred in
Answer:
roughly from the late 1940s through the late 1950s.
Explanation: hope this helps :)
Answer:
The first Golden Age of Television is the era of live television production in the United States, roughly from the late 1940s through the late 1950s.
Explanation:
I need to identify what this building is
Answer:
its American building name annismous building
Magsulat ng ilang mga paalala sa paggawa ng proyektong Series Circuit
1._______________________________________________
2.______________________________________________
3.______________________________________________
4.______________________________________________
5.______________________________________________
PLEASE HELP ME
Answer:
mag ingat,dapat d basa ang kamay,ayusin ang posive at negative na hindi maghalo,kong may electric tape mas safe..
Explanation:
yun yung tips ko kasi nakagawa na kami non ay yop 1 yung samin
Describe in 2-4 sentences how you would select a function on a spreadsheet.
Answer:
Explanation:
You would call the capacity from the primary. At that point execute your own factors to it. When the capacity is in the cell, you can copy and after that paste it into another cell to do a similar capacity for that diverse scope of cells.
You would call the capacity from the primary. At that point execute your own factors to it. When the capacity is in the cell, you can copy and after that paste it into another cell to do a similar capacity for that diverse scope of cells.
What is spreadsheet?
A spreadsheet is a type of computer program used for organizing, calculating, analyzing, and storing data in tabular form. Spreadsheets were created as digital counterparts to traditional paper accounting spreadsheets.
The data entered into a table's cells is what the program uses to run. Each cell may include text, numeric data, or formula results that automatically calculate and display values based on the contents of neighboring cells.
Users of spreadsheets can change any stored value and watch the changes in calculated values. This enables quick investigation of numerous scenarios without the need for manual recalculation, making the spreadsheet helpful for "what-if" study.
Therefore, You would call the capacity from the primary. At that point execute your own factors to it. When the capacity is in the cell, you can copy and after that paste it into another cell to do a similar capacity for that diverse scope of cells.
To learn more about Spreadsheet, refer to the link:
https://brainly.com/question/8284022
#SPJ3
Joann now wants to create a building block for the name of her company. She outlines the steps she needs to take to access the Create New Building Block dialog box. What does Joann need to change in her outline? Check all that apply.
Answer: D. She needs to revise step 4
Explanation: Just took the assignment on edge.
Answer:
D. She needs to revise Step 4
Explanation:
Edge 2020
Give me 2 examples of Monthly Cash Inflow: (2 points) *
Answer:
cash payments for goods and services; merchandise; wages; interest; taxes; supplies and others.
Explanation:
Answer:
1. Key cash flow drivers should be modeled explicitly.
In our example, a retail store business should start with the number of stores it plans to operate each month, then build up from there, based on the number of square feet and sales per square foot. This will help the business to compute its revenue.
2. Inputs should only need to be input once.
It is important to group all inputs in the assumptions section so users can easily find, add, and modify them.
Explanation:
A student opens a recently purchased software package and begins reading the enclosed materials. What information might be included in the software license? Check all that apply.
Answer:
1,2,4
Explanation:
plss give me brainliest
Answer:1,3,4
Explanation:just did it
Choose the best answer to complete the sentence.
A transferable skill can be applied:
in a variety of situations and roles.
in only one setting or situation.
in every situation.
Answer:
First is A
Explanation:
Second is B,C,F
A company hires Brandon, a software engineer. Brandon is asked to work on a project with others in order to meet a tight deadline. He finds himself in weekly meetings to discuss the direction and status of the project, but most of his time is spent creating code. What is Brandon's specialization?
system management
system support
system collaboration
system development
Answer:
System developement
Explanation:
he is creating code, which is devloping the system.
What is the shortcut key to launch the Macros dialog box?
A. Alt+F7
B. Alt+F8
C. Ctrl+F8
D. Ctrl+F7
Answer:
On excel, Ctrl + F8 is the shortcut for the Macros dialog box
Explanation:
Answer:
Alt +F8
Explanation:
edge 2022
Plz plz plz help QUICKLY idk the answer and I really need help
Answer:
productivity is the correct answer
During active listening, which response is NOT an example of providing feedback to the speaker to show that you understand his or her thoughts?
A.
nodding your head
B.
turning your back to the speaker
C.
saying, "You're saying that his reaction made you feel appreciated?"
D.
saying, "Sorry to interrupt, but can you explain that part again?"
Answer:
The answer is D.
Explanation:
They/you are asking the speaker to clarify what they just said.
Answer:
B. turning your back to the speaker
Explanation:
Which of the following are examples of packages you can import and use classes from in java?
Choose all options that apply.
A. Main.main
B. java.util
C. java.double
D. java.int
E. edhesive.shapes
Introduction:
Java is a computer programming language. A computer programmer may use package in java which is a mechanism to encapsulate a group of classes and then import it to sub package interfaces.
Explanation:
These package help to prevent the issues of naming conflicts. The examples of packages which can import and use classes from in java are
Conclusion:
A. Main.main
B. Java.util
D. java.int
Learn more at https://brainly.com/question/17882992
the way information from my computer is given back to the user is called
Answer:
Add answer???
Explanation:
Someone copied a library video and sold the copies to friends. This is an
example of
Answer:
Intellectual Property Theft.
Explanation:
Intellectual property theft involves robbing people or companies of their ideas, inventions, and creative expressions—known as “intellectual property”—which can include everything from trade secrets and proprietary products and parts to movies, music, and software.
Answer:
cybercrime
both employees and outsiders
Aimless wandering
A security guard
Many security breaches ........
intellectual property theft
stealing ideas, information, or creative products
add a watermark
embezzling
Which of the following is true of how computers represent numbers
A. Using a fixed but large number of bits can eliminate the possibility of round off error when repressing numbers in binary
B. With a fixed number of bits some numbers are too large to represent in a computer which will lead to overflow errors.
C. Using a fixed but larger number of bits, for example 128, eliminates the possibility of overflow errors.
D. With a large but fixed number of bits it is possible to eliminate either round-off errors or overflow errors, but not both.
Answer: C. Using a fixed but large number of bits, for example 128, eliminates the possibility of overflow errors.
Explanation:
Computer as an intelligent device can only be able to represent inputs through conversion to readable machine language before it becomes output. In order to do this, there is a need to convert those inputs into bits and bytes. The converted input is then brought out as a readable format on the computer screen.
In one to two sentences, describe how to create a new tab.
Answer:
First you could move your cursor to the right and click on the button that looks like this +
Or you can press ctrl+T and make a new tab
Explanation:
Hope this help you!