what is the best movie in the world

Answers

Answer 1

Answer: Sui*de Squad

Explanation: I say this because Harley Quinn is in it and I am obsessed with her lol-

Answer 2

Answer:

IMDb's highest rated movie is The Shawshank Redemption

Rotten Tomatoes rates The Wizard of Oz the freshest movie out there.

Metacritic Rates Citizen Kane the Best Movie of All Time, right after the Godfather.


Related Questions

2. True or False: You can create a network with two computers.
a. True
b. False

Answers

A computer network is a collection of connected computing devices that may or may not be able to communicate.
So I think yes its true

You can create a network with two (2) computers: a. True.

A network can be defined as a set of interconnected computer systems (nodes) and the relational ties linking the computer systems together.

In Computer networking, a network design is also known as network architecture and it refers to an iterative process that involves the planning, topological design and implementation of a computer network infrastructure.

Basically, a network can be created by two (2) or more computer systems. Thus, a network designer can create a network with at least two (2) computers by connecting them together through a wired or wireless connection.

Read more on networks here: https://brainly.com/question/8808883

You are a network technician for a small corporate network. The network is connected to the internet and uses DHCP for address assignment. The owner of the company in the executive office and a temporary employee in IT Administrator office both report that their workstations can communicate with some computers on the network, but cannot communicate with the internet. You need to diagnose and fix the problem.

In this lab, your task is to complete the following:

-Use the following troubleshooting tools to diagnose the problem in the network:
-the ping, ipconfig, or tracert command utility
-the network and sharing center in the windows 10 or windows server 2016 operating system
-the DHCP server console in the windows server 2016 operating system

Answers

Answer:

Explanation:

The first thing that you should do would be to ping the computer in the Networking Closet, if this fails then the next step would be to ping the service provider. If both of these pings fail it is most likely because the configuration of the IP addresses are configured wrong. In this case use the command prompt to type in the following

ipconfig /all

this will open up the entire configuration info. If the problem is truly the configuration then your DNS address should show up as not configured. This can happen when a DHCP is enabled. Check if DHCP is enabled, if so then you would need to type the following into the command prompt

ipconfig /renew

This will renew the ip address information from the DHCP server and should create the proper DNS configuration as well and solve the issue.

Following are the solution to the given question:

Initiate troubleshooting in the Executive by exploring the scope of the connectivity issue. Ping the laptop in the network closet from your workstation. A ping to a location failed.Ping your internet service provider. The ping to the address fails.Verify any connection issues here between workstations, the Network Closet computer, and also the ISP in the IT Administrator's office. (Pings to both locations failed.) The issue is now almost definitely due to the channel's IP setup.To examine the Local Area Connection setup, open the cmd in the Executive Office and type ipconfig /all. Some of the following issues must be noted: The workstation's default route and DNS server addresses have still not been configured.It implies that connectivity is confined to computers just on the local network.Its DHCP Enabled option has been enabled. Yes, a DHCP server is configured just on the workstation. Its line with the DHCP Server address wasn't shown. This means the workstation was unable to communicate with the DHCP server. This IP address corresponds to an APIPA domain (169.254.0.1 to 169.254.255.254). It shows that the computer assigns an IP address to it only. The workstation would be capable of communicating with the other hosts on the local network who have given their unique IP via APIPA.Verify that its DHCP service for the local area network is active and active in the Network Closet.CORPSERVER should be the first option in Hyper-V Manager. To see all the virtual machines, open the window. Join by correcting CorpDHCP (maximize the window for easier viewing if desired). For launch, the DHCP console in Server Manager, go to Tools > DHCP. CorpDHCP.CorpNet.com must be extended. IPv4 enlargement.Scope [192.168.0.1] Subnet1 has a dropdown, suggesting that this is not operational. Select Activate from the menu bar of Scope [192.168.0.1] Subnet1. The scope's "dislike" button has gone, and the DHCP service for the local network is now operational.Launch the command prompt inside the Executive and type ipconfig /renew. This will obtain the new Ip from the DHCP server and change the Ethernet connection settings.To check the Internet setup, type ipconfig /all. You should now see lines for the default gateway, DNS server, and DHCP server, and a new IP address in the DHCP scope for the local network.Ping the ISP in the Executive Office to confirm that the problem has been resolved. Your ping to the ISP is good.Rep step 6 in the IT Administrator Office to fix the dispute with the workstations.

Learn more:

brainly.com/question/14728944

You need to replace a broken monitor on a desktop system. You decide to replace it with a spare monitor that wasn't being used. Even though the monitor is made by a different manufacturer than the desktop computer, it still works with the computer.

Which computer design concept makes this possible?


Firmware


Plug and play


Componentization


Standardization

Answers

Firmware hope this helps!!
The standardisation of connecting cables like DVI makes this possible

I can’t get answers because the ads won’t load help me

Answers

Answer: Get better wifi

Explanation: This maybe a router problem, Go to your router and reset it by unplugging the power chord, After 30 seconds plug it back in and wait for your wifi to start back up. Your ads should load now. Have a good day.

The cost to ship a package is a flat fee of 75 cents plus 25 cents per pound. 1. Declare a const named CENTS_PER_POUND and initialize with 25. 2. Get the shipping weight from user input storing the weight into shipWeightPounds. 3. Using FLAT_FEE_CENTS and CENTS_PER_POUND constants, assign shipCostCents with the cost of shipping a package weighing shipWeightPounds.

#include
using namespace std;

int main() {
int shipWeightPounds;
int shipCostCents = 0;
const int FLAT_FEE_CENTS = 75;

/* Your solution goes here */

cout << "Weight(lb): " << shipWeightPounds;
cout << ", Flat fee(cents): " << FLAT_FEE_CENTS;
cout << ", Cents per lb: " << CENTS_PER_POUND;
cout << ", Shipping cost(cents): " << shipCostCents << endl;

return 0;
}

Answers

Answer:

Replace /* Your solution goes here */

with

const int CENTS_PER_POUND = 25;

cout << "Weight(lb): ";

cin >> shipWeightPounds;

shipCostCents = FLAT_FEE_CENTS + CENTS_PER_POUND * shipWeightPounds;

Explanation:

This line declares and initializes CENTS_PER_POUND as constant integer to 25

const int CENTS_PER_POUND = 25;

This line prompts user for weight of shipment

cout << "Weight(lb): ";

This line gets weight from the user

cin >> shipWeightPounds;

This line calculates the cost of shipment

shipCostCents = FLAT_FEE_CENTS + CENTS_PER_POUND * shipWeightPounds;

In this exercise we want to use computer and python knowledge to write the code correctly, so it is necessary to add the following to the informed code:

So we can see that in the attached image we find the code that corresponds to the answer to this question.

Are analyzing the code informed in the question we can say that:

This line declares and initializes CENTS_PER_POUND as continual number to 25, the code that we have is:

const int CENTS_PER_POUND = 25;

cout << "Weight(lb): ";

cin >> shipWeightPounds;

shipCostCents = FLAT_FEE_CENTS + CENTS_PER_POUND * shipWeightPounds;

See more about computer at brainly.com/question/950632

Harlequin frogs are an endangered species that live in a small area of Costa Rica. The reasons for the species' decline is unknown. Scientists want to create a computer simulation of the frogs' environment and determine how best to protect the frogs.
Which of the following is NOT true about the scientists' simulation?
a. The scientists must be careful of how many variables they include in their simulation so they do not cause further harm to the frogs.
b. The scientists can try a variety of different simulations and analyze the data to see which one is the most effective.
c. Based on the results of the simulation, scientists can develop a plan to save the Harlequin frogs before they become extinct.
d. The scientists can incorporate other factors, such as square footage of protected land, in the simulation.

Answers

Answer:

a. The scientists must be careful of how many variables they include in their simulation so they do not cause further harm to the frogs.

Explanation:

It is not statistically accurate to assume that the number of variables included in the simulation would cause further harm to the frogs because we need to remember that a simulation is simply a computerized imitation of a real situation, which is usually not totally alike with a real process.

So in no way from a statistical standpoint, does the scientists' decision on the number of variables causes direct harm to the frogs.

Other Questions
what is the result of mixing 15 garm of water 80 degree celsius with 10 gram of ice -10 degree Celsius ? give specific heat capctiy of ice 0.5 calorie per gram Celsius and letent heat of fusion of ice 80 calorie per gram. If a town with a population of 5,000 doubles in size every 11 years, what will the population be 44 years from now? Por qu el atomismo de balton se le considera un teora cientfica mientras que a leucipio y Demcrito no? Find the percent of change. Round to the nearest tenth, if necessary.In the 2006 season, Tom Brady threw for 3,529 yards. In the 2007 season, he threw for 2,806 yards. Solve the inequality 21 PLZZZ HELPPPP Liang bought a basket of apples to make pies for her friends. The basket of apples weighed ppp pounds. Before she had time to make the pies, she ate 3 pounds of apples. There are 17 pounds of apples left to make pies.Write an equation to describe this situation.What was the total weight of the basket of apples? What is the area?14.39 ft. 218.42 ft. 216.07 ft. 213.71 ft. 2 Who is your crush?????;) Area of circles, please help me it's so that I can pass this year. Solve it What one-word description of a rock would lead you to believe that is an igneous rock?A. LayersB. GlassyC. CoarsePersonally, I think it's glassy because of the magma cooling and making that smooth question, but please tell me if I'm correct. Convert 20 C to F -40 C to F40C to F help!!! i have to pass this lesson to get a grade please help a light bulb with a resistance of 2.0 ohms is connected to a 1.5 v battery. what is the current in the circuit? Trigonometry Pls help What is the speed of a wave with a wavelength of 5 m and a frequency of 6.0 Hz Jason and Isaac each threw a javelin 10 times they recorded the distances of the throws on the box plot below which statement is true DNA replicates twice during meiosistrue or false? Which of the following places is considered sacred in the Hindu religion?A. the Deccan PlateauB. the Indian OceanC. the Ganges RiverD. the Thar DesertPlease select the best answer from the choices provided A B C D The diameter of a baseball is approximately 3 inches. What is its volume?Round your answer to the nearest whole number.A. 9 in^3B. 13 in^3C. 113 in^3D. 14 in^3 How do we know if values in a table are proportional?