Answer: I need to know what the problem is tho.
Explanation: (0L0)
Write a method named removeDuplicates that accepts as a parameter a List of integers, and modifies it by removing any duplicates. Note that the elements of the list are not in any particular order, so the duplicates might not occur consecutively. You should retain the original relative order of the elements. Use a Set as auxiliary storage to help you solve this problem.
For example, if a list named list stores [4, 0, 2, 9, 4, 7, 2, 0, 0, 9, 6, 6], the call of removeDuplicates(list); should modify it to store [4, 0, 2, 9, 7, 6].
The method is an illustration of loops or iteration.
Loops are used to carry out repetitive operations.
The removeDuplicates method in Python is as follows, where comments are used to explain each line.
#This defines the method
def removeDuplicates(list):
#This initializes the output list
outputList = []
#This iterates through the list
for i in list:
#All elements not in the output list, are appended to the output list
if i not in outputList:
outputList.append(i)
#This returns the output list
return str(outputList)
At the end of the method, the new list contains no duplicates.
Read more about similar program at:
https://brainly.com/question/6692366
Can people survive without technology?
As technology advances, does technology become more or less complex?
As technology advances, do the things we make, become: more reliable? Safer? More durable? Perform better?
As technology advances, does it require more or fewer science and math applications?
Answer:
1)Nowadays no one can survive without technology.
2)more complex
3) yes
4)yes ofc
1.(154)10=(?)2
help me! I will give 25 points.
Given a list of twenty number count the numbers among the list
Answer:
Thank you for the points<33
The percentages in the table represent the performance change from the previous month. Consider the impact of each metric on customer questions.
Metrics may be described as measures used to evaluate the performance or activity of seller, employee organization and so on. They help to better understand underlying factors or patterns which may be useful in making improvement in services.
Due to the influx of customer questions which is expected to have stopped after the promotional campaign. The company is trying to know why the questions keeps coming.
Based on the questions, the company used key subjects as metric in other to Analyse and address key issues resulted to the vendor which are shipping error , discount and delivery timeline.
Therefore, metrics allow to better measure and understand specific underlying patterns associated with businesses.
Learn more :https://brainly.com/question/25114661
2.Is having the right tool imperative to successful completion of task at hand?
[tex]\huge\underline\mathtt\colorbox{cyan}{Yes}[/tex]
Having the right tool is imperative to successful completion of task at hand.
What can you anticipate having to "give up or do" in order to attain the "things" you want?
There are many things to "give up or do" to attain the "things" you want. Some of them include giving up your time and your temporary pleasure.
Let assume you want to be successful in life, with money, family, and a good career; here are the things you can do to attain them:
Getting a good education to at least a degree level.Plan your life according to how you want it. If you want to become a medical doctor, study medicine and surgeryInvest in profitable business.Do both short-term and long-term investments.Save for rainy days.Acquire appreciable properties.Marry someone whose objective aligns with your goals in life, etc.Hence, in this case, it is concluded that to have what you want in life, it takes a plan, dedication, and willingness to go according to the set-out plan.
Learn more here: https://brainly.com/question/13132465
Activity 5: Binary Initial Directions:
Get the binary value of your first name
initial.Maximum of ten letters only....
Character
A B. с D E F. G H I
Decimal
65 66 67 68 69 70 71 72 73
Character N o P Q R S T U V
Decimal 78 79 80 81 82 83 84 85 86
ANSWER:
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
Answer:
:bombebphynyjnjtj
Explanation:
vqnafhteg
am i the only one that finds so much bots on peoples pages lol
Not Answered 17.Not Answered 18.Not Answered 19.Not Answered 20.Not Answered Question Workspace Jessica wants to purchase a new hard drive. She wants a drive that has fast access because she will use it to edit videos on her PC. She also needs a lot of storage and wants to have at least 4 TB available to save her videos. Jessica wants to keep the cost down as much as possible possible. What type of hard drive should Jessica purchase?
Answer: HDD 7200RPM
Explanation:
a solid state drive is going to be so much money especially if its 4 TB so just get a HDD 7200RPM or even better if its higher revolutions per minute......
full meaning of XP in computer
Answer → eXPerience
Write a program in c++ to input a number print the sum of all the odd factors.
Answer:
#include <bits/stdc++.h>
using namespace std;
//calculate sum of odd factors
int sum(int n) {
int res = 1;
while (n % 2 == 0)
n = n/ 2;
for (int i = 3; i <= sqrt(n); i++)
{
int count = 0, total = 1 ;
int temp = 1;
while (n % i == 0) {
count++;
n = n / i;
temp *= i;
total += temp;
}
res = res*total;
}
if (n >= 2)
res *= (1 + n);
return res;
}
int main()
{
int n = 20;
cout<<"sum of odd factors is : ";
cout <<sum(n);
return 0;
}
DUE SOON NEED HELP FAST!!
It is 6:30pm GMT, if it is 2:00PM where are you, what is your longitude?
Answer:
From 2007 to 2016 the correct answer would've been Caracas, Venezuela. With a longitude of 66° 56' W.
Their timezone at that time was GMT-4.5, which means they'd be four and a half hours behind GMT.
As of 2021, there are no countries using that timezone for international trade and travel.
Explanation:
Had to make some assumptions. If no other context is given, then this would be the correct answer.
evolution of management
Answer:
Evolution of Management and Evolution of Management Science. ... Evolution of the management thought is a process that began in the earlier days of humans. It began when the man found the need to live in the groups. Then, mighty men soon organized the masses and distributed them among the groups.
Explanation:
HOPE IT HELPS
Your answer → - Evolution of management thought is a process that began in the earlier days of humans. -
Define a method calcPyramidVolume with double data type parameters baseLength, baseWidth, and pyramidHeight, that returns as a double the volume of a pyramid with a rectangular base. calcPyramidVolume() calls the given calcBaseArea() method in the calculation. Relevant geometry equations: Volume
Answer:
import java.io.*;
public class Main {
public static void main(String[] args) throws IOException {
double baseLength = 0, baseWidth = 0, pyramidHeight = 0;
Object[] volume;
volume = calcPyramidVolume(baseLength, baseWidth, pyramidHeight);
}
public static Object[] calcPyramidVolume(double baseLength, double baseWidth, double pyramidHeight) {
double area = calcBaseArea(baseLength, baseWidth);
double volume = baseLength * baseWidth * pyramidHeight;
return new Object[]{volume, area};
}
public static double calcBaseArea(double length, double width) {
return length * width;
}
}
Explanation:
The problem is flawed because it is completely inefficient for one to create two separate methods to calculate the volume and the area when they can be done at once.
The second problem is that it was never specified whether to return something from the calcBaseArea method.
I assumed it required it, so it is not advisable to initiate the method as a double, but rather create it as an Object so that it can return two values: the volume and the area.
Giúp mình với ạ . TG làm 1 h
[tex] \huge\green{here \: is \: your \: answer}[/tex]
Why would you use a computer's secondary memory?
O A. To look at files created on your home computer on a public
computer
B. To run word processing software on your computer
O C. To save a slide show presentation on your computer
D. To start up your computer and perform its basic tasks
Answer:
I think B
Explanation:
Secondary storage is needed to keep programs and data long term. Secondary storage is non-volatile , long-term storage. Without secondary storage all programs and data would be lost the moment the computer is switched off.
A computer's secondary memory would be used to look at the files created on the home screen of the computer.
Option A is the correct answer.
A computer is an electronic device that is used to do various kinds of operations automatically.
Now, Secondary memory can be utilized to store the data or information which can be instantly recovered.
It is also known as backup memory. USB drives, hard disk drives, optical drives, etc. are some examples of secondary memory.
Therefore, the task of locating the files in the computer is to be done by using the computer's secondary memory. So option A is true.
Learn more about the secondary memory in the related link:
brainly.com/question/24901228
#SPJ6
A group of related classes is called a?
package. collection. attachment. archive.
A(n) package is the name for a collection of linked classes. A class field that depends on the values of other class fields should not be defined. To prevent having outdated info. Thus, option A is correct.
What package is a group of related classes?A group of related classes and interfaces are grouped under the namespace of a package. It is possible to think about packages as being similar to different computer directories.
A group of package parts is referred to as a package group. Package groups let you specify frequently connected elements as a single entity that you may associate with a rate code or a reservation.
A Bed and Breakfast package, which includes a room and breakfast service for a predetermined price, can serve as an illustration.
Therefore, make sure that just one class out of any multiple classes you define in a single Java file is public.
Learn more about package here:
https://brainly.com/question/15180292
#SPJ2
what is a program or collection of programs that enable a person to manipulate a visual images on a computer
To what extent do you agree with the assertion that “Collection development begins with community analysis”. (Give reasons to buttress your answer).
I completely agree that Collection development begins with community analysis; this is because the goal of collection development is to meet the information needs of everybody in a user community.
Collection development is a term used to describe the gathering and maintenance of library materials and resources such as textbooks, audiovisuals, and electronic materials for the community users to assess.
Collection development involves many processes, but it is better to begin with community analysis to know what type of resources, information, or materials is needed in that community.
It is from the community analysis and conclusion reached; other steps can then be followed sequentially.
Also, note that through community analysis, one can determine the present users of the library and their major interests.
Hence, in this case, it is concluded that community analysis is vital in the collection development in library and information management.
Learn more here: https://brainly.com/question/24837376
how does communication promotes team building
Answer:
Effective communication within a team will build a common purpose among team members that will allow them to reach their goals. ... Strong group communication will create understanding and that understanding will create powerful relationships within a team.
Thiết kế biểu đồ thực thể liên kết và tập lược đồ cơ sở dữ liệu quan hệ cho các bài toán quản lý sau:
Bài toán 1. Bạn cần một cơ sở dữ liệu để quản lý thông tin về các tạp chí. Với mỗi tạp chí bạn cần quản lí tên tạp chí, số ISSN (mã số công bố của tạp chí), số phát hành và năm phát hành. Dữ liệu về các bài báo trong tạp chí bao gồm: tiêu đề bài báo, trang bắt đầu và trang kết thúc của bài báo trong tạp chí (nghĩa là bài báo bắt đầu từ trang nào, và kết thúc ở trang nào trong tạp chí). Giả thiết rằng không có hai bài báo nào có cùng tiêu đề. Mỗi bài báo được viết bởi một vài tác giả. Mỗi tác giả bạn sẽ lưu các thông tin về tên, địa chỉ email và địa chỉ cơ quan.
Answer:
sorry please write in English than i help.you i don't understand your language
Show a parse tree and a leftmost derivation for : B = C * (A + B)
by using the grammar below:
-> =
-> A | B | C
-> +
| *
| ( )
|
Answer:
mhyfocnu,sobgu,kvngwugwe8hri
Explanation:
sovijbjxyzkuvcg
Discussion Topic
Music exists across the world. It acts as a universal language. Can you see yourself
working in some sort of musical career? How might music influence your career path?
Consider other people you know, as well, from family members to friends. Can you see
any of them entering the music business? How might this business benefit each of
these people? If any of them came to you with an interest in the music business, how
would you guide them, given what you now know about music and the music business?
What personality types would do the best in the music business?
24. Describe the role of keyboard and mouse in computer? What are the fundamental similarity and differences between them?
Answer: They give input
Explanation: The keyboard and the mouse controll the computer, by giving inputs. Similarity - They both give inputs
Difference - They give inputs in different ways
The process of generating an image from a 2D or 3D model using computer programs is called ........
Answer:
endering or image synthesis is the process of generating a photorealistic or non-photorealistic image from a 2D or 3D model by means of a computer program. ... The term "rendering" is analogous to the concept of an artist's impression of a scene.
HELP ASAPPPP PLSSSSS!!!!!! The purpose of capillary tubes is to:
permit oxygen and nutrients to be absorbed by cells
allow blood to complete a path between arteries and veins
reverse the flow of blood
provide a means for cell wastes to enter the blood stream
Answer:
Permit oxygen and nutrients to be absorbed by cells
Explanation:
Because ,the capillaries arw the smallest of the blood vessels they act as a bridge between the two main..vessels
We know that February has either 28 or 29 days, but there is a year in the future, February will have 30 days
What exactly is this year?
Answer:
39 days is the offensive number
Explanation:
cuz calendar no have that numer
Technology and Communications Quiz Active 1 Which of the following inventions has had the greatest impact on sound technology? A. the extension cord
B. the tape recorder
c. the telegraph
d. the microphone
Answer:
B the tape recorder bec half century later made sonorities not only reproducible but also alterable.
Despite a wide variety of workplaces for those working in Human Services, all workplaces include
Answer:
employees and a computer
Explanation: