Answer:
side, middle, top, bottom, and graphing.
Explanation:
Answer: A. side middle top bottom and graphing
Explanation: Saw it on Edgen.
Need the answer ASAP !!!!
Type the correct answer in each box. Spell all words correctly.What type of maintenance does Desmond perform?
Desmond is responsible for modifying software to improve performance or meet new client requirements. Desmond performs_________
maintenance.
Answer: software
Explanation:
Software maintenance refers to modifying a software product in order to correct faults, and also to enhance the performance after it has been delivered.
Since Desmond is responsible for the modification of software to enhance performance or meet the new client requirements, then we can infer that Desmond performs software maintenance.
Which of these statements about the truck driving occupation in the U.S. are accurate?
Answer:
I'm unsure 38373672823
Answer:
I really hate to not give answers when answering for people but I'm not sure. It is definitely not A or D, I am tied between B and C. I'm so sorry I couldn't give the answer but hopefully you can narrow them down
Where ....................... the books that you borrowed? *
1 point
(A) is
(B) are
(C) was
(D) will be
Where ARE the books that you borrowed?
Need the answer ASAP!!!
Type the correct answer in the box. Spell all words correctly.
What does the type of documentation depend on?
Apart from the documents required in SDLC phases, there is also other documentation (or variations in documentation) depending upon the nature, type, and_________of the software.
Answer: type and create of the software
Explanation:
pls mark brainliest
A run is a sequence of adjacent repeated values. Write a
program that generates a sequence of 50 random die tosses in
an array and prints the die values, making the runs by including
them in parentheses, like this:
1 2 (5 5) 3 1 2 4 3 (2 2 2 2) 3 6 (5 5) 6 3 1
Add a method alternatingSum() that returns the sum of the
alternating elements in the array and subtracts the others. For
example, if your array contains:
1 4 9 16 9 7 4 9 11
Then the method should compute:
1-4+9-16+9-7+4-9+11 = -2
I am having trouble with this code can someone please help me?
Answer: yeet
Explanation:
liker up
The required program illustrates an array, outputs the die values with runs in parenthesis, and computes the alternating sum of the array's elements.
What is the array?An array is a type of data structure that holds a collection of elements. These elements are typically all of the same data type, such as an integer or a string.
Here is a program that generates a sequence of 50 random die tosses in an array, prints the die values with runs in parentheses, and computes the alternating sum of the elements in the array:
import java.util.Random;
public class Main {
public static void main(String[] args) {
// Create a random number generator
Random rand = new Random();
// Create an array to store the die tosses
int[] tosses = new int[50];
// Generate the random die tosses
for (int i = 0; i < tosses.length; i++) {
tosses[i] = rand.nextInt(6) + 1;
}
// Print the die tosses with runs in parentheses
System.out.print(tosses[0]);
for (int i = 1; i < tosses.length; i++) {
if (tosses[i] == tosses[i - 1]) {
System.out.print(" (" + tosses[i]);
while (i < tosses.length - 1 && tosses[i] == tosses[i + 1]) {
System.out.print(" " + tosses[i]);
i++;
}
System.out.print(") ");
} else {
System.out.print(" " + tosses[i]);
}
}
System.out.println();
// Compute and print the alternating sum of the array elements
System.out.println("Alternating sum: " + alternatingSum(tosses));
}
public static int alternatingSum(int[] array) {
int sum = 0;
for (int i = 0; i < array.length; i++) {
if (i % 2 == 0) {
sum += array[i];
} else {
sum -= array[i];
}
}
return sum;
}
}
The alternatingSum() method computes the alternating sum of the elements in the array by adding the elements at even indices and subtracting the elements at odd indices.
To learn more about the arrays click here:
brainly.com/question/22364342
#SPJ2
Rafi is developing an application to send urgent information about global health crises over the Internet to hospitals. He is worried about packets getting lost along the way and the effect that will have on the accuracy of the information. What is his best option for dealing with lost packets
Answer:
Rafi can use the Transmission Control Protocol for communication since TCP has ways to recover when packets are lost.
Explanation:
TCP is a data transport protocol that works on top of IP and includes mechanisms to handle lost packets, such as the retransmission of lost packets.
Your team is going to write a program as part of a team. Your teacher may require you to come up with your own goal. If not, use the following goal.
You have been asked by a math teacher to write a program to process a pair of points. The program will find the distance between the points, the midpoint of the two points, and the slope between them.
Plan your program. Meet with your team to plan the program. Assign a task to each member of the team. Record each person's name and their task. Write the program. Test your program. Be sure to test each function of your program. Evaluate the performance of each member of the team. Describe what each member did and how it worked. Record the project in a Word (or other word-processing) document, as described below.
PLEASE HELP WILL GIVE BRAINLIEST AND 20 POINTS!
Answer: I can help you with the code part if you don’t already have it
# Python3 program to calculate
# distance between two points
import math
# Function to calculate distance
def distance(x1 , y1 , x2 , y2):
# Calculating distance
return math.sqrt(math.pow(x2 - x1, 2) +
math.pow(y2 - y1, 2) * 1.0)
# Drivers Code
print("%.6f"%distance(3, 4, 4, 3))
In this exercise we have to use python knowledge to describe the following code.
The code can be found in the attached image.
We have that code will be described as:
import math
# Function to calculate distance
def distance(x1 , y1 , x2 , y2):
# Calculating distance
return math.sqrt(math.pow(x2- x1, 2) +
math.pow(y2 - y1, 2) * 1.0)
# Drivers Code
print("%.6f"%distance(3, 4, 4, 3))
See more about python at brainly.com/question/18502436
#SPJ2
A group of students writes their names and unique student ID numbers on sheets of paper. The sheets are then randomly placed in a stack.
Their teacher is looking to see if a specific ID number is included in the stack. Which of the following best describes whether their teacher should use a linear or a binary search?
A. The teacher could use either type of search though the linear search is likely to be faster
B. The teacher could use either type of search though the binary search is likely to be faster
C. Neither type of search will work since the data is numeric
D. Only the linear search will work since the data has not been sorted
Answer:
D.
Explanation:
Binary searches are required to be first sorted, since they use process of elimination through halving the list every round until the answer is found. Linear searches just start from the beginning and check one by one.
What type of internet connection do you think you'd get in Antarctica?
A.
cable
B.
DSL
C.
dial-up
D.
satellite
E.
ISDN
Why would a designer choose to use a static layout? Check all of the boxes that apply.
It helps to avoid horizontal scrolling.
It adjusts the size and shape of content blocks.
It is easier to control layout choices.
It always fits the width of the screen.
Answer:
Explanation:a & c
Answer:
a c core
Explanation:
What is the difference between HTML and C?
A. C allows programmers to write code for different devices, while
HTML makes code easier to analyze on a single device.
O B. HTML is a language used for web pages, while C is a language
commonly used in operating systems.
C. C is a language invented for interactive television, while HTML is a
language designed for smartphones.
D. HTML is a language for computer operating systems to sync with
other devices, while C is a language for web browsers to read web
pages.
Answer:
B
Explanation:
HTML is interpreted in web browsers, while C is complied and is low level, which is why many operating systems, including Linux use it.
I'm a programmer :)
HTML is a language used for web pages, while C is a language commonly used in operating systems. Then the correct option is B.
What is the difference between HTML and C?The Hypertext Markup Language (HTML) is the most dominant language for organizing and formatting websites and other materials on the Internet.
C is a programming language.
HTML is a language used for web pages, while C is a language commonly used in operating systems.
Then the correct option is B.
More about the HTML and C link is given below.
https://brainly.com/question/13384476
#SPJ2
What are different ways that celebrities try to connect with fans using the Internet and social media?
*No links or files, I will report your answer so it gets taken down
Answer:
they ask fans questions they talk to fans they do many things with fans trying to connect with them
Which of the following was (and still is) used by computer programmers as a first test program?
Answer:
The "Hello World!" program
Explanation:
Options are not given, However, the answer to the question is the "Hello World!" program.
For almost all (if not all) programming language, this program is always the test program.
In Python, it is written as:
print("Hello World!")
In C++, it is:
#include <iostream>
int main() {
std::cout << "Hello World!";
return 0; }
Answer:
the following was (and still is) used by computer programmers as a first test program is "Hello world!".
and its computer program is:
Explanation:
[tex]\:{example}[/tex]
#include <stdio.h>
int main()
{
/* printf() displays the string inside
quotation*/
printf("Hello, World!");
return 0;
}
Create a mobile app plan using PowerPoint slides to show mock-ups of screens,
identifying input, process, and output for each screen.
You are going to design a mobile app. Think of something you would like to use or something that fills a need you see among your friends and family. You will create wireframes, visual representations of each screen along with the processes that occur on each screen.
Your app needs to have at least three screens. For each screen, you will "sketch" the screen and identify the input-process-output that occurs on that screen. You will also identify how a screen transfers to another screen. For example, suppose you were designing an app to help students at your school find another student who can tutor them. The welcome screen could look like the one shown here, where the user chooses the subject, times and days available, and then selects the "Find a tutor" button. The note at the bottom explains the processing that occurs on the page. It also identifies how this screen connects to the available tutors screen. One screen may connect to more than one other screen.
Screen Requirements
Each screen should have each of the following. The list shows, in the parentheses, which part of the example meets each requirement.
a title (Welcome Screen)
a sketch of the screen (Notifications table). You can sketch your screens on paper and take a picture of it; you can draw your screens in a drawing application such as Paint
a description of the input-process-output for each screen, which includes how one screen transfers to other screens (the notes at the bottom)
You need at least three screens in your app. The tutor app would have at least three screens: Welcome Screen, Available Tutors, and Scheduled Tutoring Sessions. Your app can have more screens as needed.
Answer: Have you gotten an answer yet?
Answer:
could u send me it too
Explanation:
Unscramble the following words and write them correctly in the
blanks.
1. EllC:
2. RMULAFO:
3.CTIONFUN:
4.COUMNL:
Answer:
1. icie?
2. formula
3. function
4. column
Explanation:
I'm not sure about #1.
How to mark someone the Brainliest
Answer:
Explanation: Once u get more than 1 answer of a question. A message is shown above each answer that is "Mark as brainiest". Click on the option to mark it the best answer.
Answer:
above
Explanation:
Convert the following numbers to binary numbers: 5 , 6 , 7 , 8 , 9 .
Answer:
log 5,6,7,8,9 is the binary number according to the computer
Answer:
Divide by the base 2 to get the digits from the remainders:
For 5
Division by 2 Quotient Remainder(digit)
(5)/2 2 1
(2)/2 1 0
(1)/2 0 1
= (101)_2
For 6
Division by 2 Quotient Remainder(digit)
(6)/2 3 0
(3)/2 1 1
(1)/2 0 2
= (110)_2
For 7
Division by 2 Quotient Remainder(digit)
(7)/2 3 1
(3)/2 1 1
(1)/2 0 1
= (111)_2
For 8
Division by 2 Quotient Remainder(digit)
(8)/2 4 0
(4)/2 2 0
(2)/2 1 0
(1)/2 0 1
= (1000)_2
For 9
Division by 2 Quotient Remainder(digit)
(9)/2 4 1
(4)/2 2 0
(2)/2 1 0
(1)/2 0 1
= (1001)_2
Explanation:
Need the answer ASAP!!!!!!!!
I’ll mark brainliest if correct
Drag each label to the correct location on the image. Match the correct component to the part on the flowchart
Procedure 1
subroutine
procedure 2
decision
input
End
Start
Answer:
Start
subroutine
imput
decision
Procedure 1
procedure 2
End
Explanation:
Which scenarios could be caused by software bugs? Check all that apply.
A. A person catches the flu and misses two days of work.
B. Smartphone users around the world are unable to get phone service.
C. A person is wrongfully arrested by the police.
D. A person receives a $10 bill at an ATM after requesting a $100 withdrawal.
Answer:
B- smartphone users around the world are unable to get phone service
C- A person is wrongfully arrested by the police
D- A person receives a $10 bill at an ATM after requesting a $100 withdrawal.
Explanation:
Software bugs are the fault and error in the application that affects the result. It can cause an error in receiving a different bill at ATM after withdrawing a different amount. Thus, option D is correct.
What is a software bug?A software bug is a flaw or an error occurred in the applications of the system that generates unexpected results and causes crashing, and invalid outcomes.
Some software bugs include functional errors, missing commands, typos, crashes, calculation errors, etc. These types of errors can affect the ATM services causing errors in receipt generation.
Therefore, option D. a $10 bill is generated at ATM after withdrawing $100 is an example of software bugs.
Learn more about software bugs here:
https://brainly.com/question/4490366
#SPJ2
In the following nested loop structure, which loop does the program EXIT first?
Answer:
The loops are nested, and the program ends when loop 1 is completed. Since loop 4 is the innermost one, that one is completed first.
When the condition of an if statement is false, the computer will return an error message to the user.
A. True
B. False
What are benefits of using debugging tools? Check all that apply.
A. Debugging tools help programmers catch errors they might otherwise miss.
B. Debugging tools can save time.
C. Debugging tools can introduce new errors into the code.
D. Debugging tools help programmers make methodical assessments of the problem.
Answer:
It's
A. Debugging tools help programmers catch errors they might otherwise miss.
B. Debugging tools can save time.
D. Debugging tools help programmers make methodical assessments of the problem.
Explanation:
got it right on edge.
Answer:
A, B and C
Explanation:
2- ¿Qué entiendes que son las tecnologías blandas y qué las tecnologías duras?
Answer:
En tecnología informática, tecnologías duras o "hardware" se refiere a todos los componentes físicos o partes que desempeñan un papel en una computadora. Así, son tecnologías duras aquellas que sean visibles y permitan a la computadora ejercer funciones que impliquen la interacción del usuario con los propios elementos del hardware, como el teclado, la impresora o los parlantes.
A su vez, las tecnologías blandas o "software" son el conjunto de programas que hacen posible el funcionamiento de la computadora y su utilidad como tal, como por ejemplo el sistema operativo y los diferentes programas específicos que se utilizan en ella.
one way in which RSI can be prevented?
What are some of the ways that a computer or business can be infected with a computer virus?
Answer: A way a computer or business can be infected with a virus is via a USB. A person can come into the business with a copy of a C.V. which is destroyed in some way. You give the USB to the receptionist and ask to print you a new one. When they do, a virus hidden in the USB will begin to attack the computer. Another way to infect a computer with a virus is to upload it in a comment box. If a website has a comment/complaint section, a hacker can put in code to a virus. This virus will enact itself once the user opens the website. A fake anti-virus program will appear, and the virus will begin installing itself.
A USB can be used to spread a virus to a computer or organization. Someone could enter the company with a duplicate of a CV that has been damaged in some way. You hand the receptionist the USB and ask them to print you a new one.
What is a computer virus?A computer virus is a piece of malicious software that spreads by copying itself to a document, the boot sector of a computer, or another program. It modifies how a computer operates in the process. A virus starts to spread among computer systems after some type of human interaction.
When they do, a computer will start to be attacked by a virus that was hidden in the USB. Uploading a virus in a comment box is another technique to get it onto a computer.
Thus, A USB can be used to spread a virus to a computer or organization.
For more information about computer virus, click here:
https://brainly.com/question/14467762
#SPJ2
does anyone here like meta runner?
Answer:
Meta Runner is the best show! Sophia is my fav!
Explanation:
Answer:
YAS!! Tari is my fav. U watch smg4 too?
Explanation:
Will Give Brainiest 75pts
Read the following excerpt from "Did You R e a l l y Just Post That Photo?" by Kristin Lewis: There is no way to know for sure if the photos you posted on F a c e b o o k (you know, the ones that got you grounded) are the reason you were denied [college admission]. But you'll always be h a u n t e d by the possibility that the college found them. The fact is, an increasing number of colleges are looking up applicants on social-media sites like F a c e b o o k and Y o u T u b e. If they don't like what they find out about you, you could miss out on a scholarship or even get rejected. Colleges aren't the only ones scouring the Internet for your name either. Potential employers are looking too. An i n a p p r o p r i a t e photo can cost you a job, whether it's the babysitting gig you're hoping to land next week or the internship you will apply for five years from now. Which of the following is a paraphrase of the bolded lines that could be used for note-taking purposes? Applicants use social media to research potential colleges and jobs. Potential employers are looking up applicants online to help make hiring decisions. Social media can negatively impact a user's college and job prospects. "The fact is, an increasing number of colleges are looking up applicants on social-media sites like F a c e b o o k and Y o u T u b e."
Answer:
it's not C. Social media can negatively impact a user's college and job prospects. I answered that and I got it wrong. I think it might be B, im like 80% sure, so sorry if I'm wrong
hope this helps!
The option that paraphrase the bolded lines is Potential employers are looking up applicants online to help make hiring decisions.
Is it right for a potential employer to use the Internet in this way?The use of social media for any kind of monitoring, investigation, and job decision making by the employer is one that is advisable to all.
Conclusively, It is moral to use information that will help one in terms of job performance and if the employer uses the internet in line with their policies and practices, then there is no issue with it.
Learn more about employers from
https://brainly.com/question/26355886
Please Help!
Computer Sci
Answer:
A.
Explanation:
Hope this helps :)
How can you adjust an audio or video clip to only play a small portion?
Open the Format tab, and click the Trim Audio button.
Drag the start and end point markers to the desired locations on a file.
Use the Bookmark feature to reduce the timing of a video or audio clip.
Tick the Loop until Stopped box for users to select a section for themselves
Answer:
b. Drag the start and end point markers to the desired locations on a file.
Explanation:
I got it correct
what adaptation Judy and her parents have that help them run from predators coming?
Answer:
.57
Explanation:
The adaptation which Judy and her parents have that helps them run from predators coming is:
Self preservation/survivalAccording to the given question, we are asked to state the adaptation which Judy and her parents has that helps them run from predators coming and continue to survive.
As a result of this, we can see that humans have adapted over the years to run from predators who are capable of killing them because of the sense of self preservation or survival which is helped by the adrenaline to escape from danger
Read more here:
https://brainly.com/question/20594263