Sam says that when he clicks on his schedule on the Internet, his computer is a receiver, not a sender. Is Sam correct? Why or why not? Correct, because his computer is receiving Sam’s schedule Wrong, because his computer is sending a request for Sam’s schedule Correct, because his computer is mainly receiving, although it does send an initial request so that Sam can get his schedule Wrong, because his computer is sending and receiving requests so that Sam can get his schedule

Answers

Answer 1

Answer:

I think it might be this: Correct, because his computer is mainly receiving, although it does send an initial request so that Sam can get his schedule.

Not 100% sure

Explanation:

Answer 2

Answer:

Wrong, because his computer is sending and receiving requests so that Sam can get his schedule

Explanation:


Related Questions

Mary, an administrator, creates a field and designates it to hold integer data. Joe,
a user, tries to enter his name into the field, but it doesn't let him save the data.
What is this an example of?

Answers

Answer:

the fire wall not letting him in

Explanation:

What trends do you see in the industry in 2010? For example, if there were more or fewer jobs created by travel and tourism, report that in your answer and explain why the numbers changed.

Answers

Travel jobs started to rise as well , photography business has been growing more and more every year allowing them to travel more to get shots or advertise their work (small companies) , chefs have always globally traveled

"So far this month you have achieved $100.00 in sales, which is 50% of your total monthly goal. With only 5 more workdays this month, how much do you need to sell each day to reach your goal?”

Answers

Answer:

$20 per day for next 5 working days.

Explanation:

if 50% is $100.00 another $100 need to achieve in 5 days.

100/5=20

Final answer:

The student needs to sell $20.00 worth of goods or services each day for the remaining 5 workdays to meet the total monthly goal of $200.00.

Explanation:

The student has achieved $100.00 in sales, which is 50% of their total monthly goal. Therefore, the total sales goal for the month is $200.00. To determine how much needs to be sold each day to reach this goal, we must consider the remaining days in the month. The student has 5 more workdays, so we divide the remaining 50% of the sales goal by 5 days.

Remaining Goal: $200.00 - $100.00 = $100.00
Divide the remaining goal by the number of workdays left:
$100.00 / 5 days = $20.00 per day.

To reach the total monthly sales goal, the student needs to sell $20.00 worth of goods or services each of the remaining 5 workdays.

road users moving into your lane brake lights and abrupt changes in road surfaces are ___

Answers

B it is the only one that makes sense

Option B is correct, Road users moving into your lane, brake lights, and abrupt changes in road surface are indicators of potential hazards.

Road users moving into your lane, brake lights, and abrupt changes in road surface are all signs that there may be potential hazards on the road. These situations require drivers to exercise caution, anticipate potential risks, and adjust their driving accordingly.

It is important to stay alert and be prepared to react to these indicators to ensure safety on the road.

Experienced drivers understand the importance of recognizing and responding to these cues to prevent accidents and navigate through potentially hazardous situations.

To learn more on indicators of potential hazards click:

https://brainly.com/question/30579498

#SPJ2

Road users moving into your lane, brake lights, and abrupt changes in road surface are _____. A. rare at night B. indicators of potential hazards C. not worth worrying about before you reach them D. no problem for experienced drivers

4.3 Code Practice
edhisve

Answers

The program written in python 3 prints out a certain number of virtual hugs determined by the value of age inputted by the user, the program is as follows :

your_age=int(input('How old are you turning today? : '))

#prompts the user to enter his/her age

for years in range(1, your_age+1):

#loops through the inputted age value

print("**HUG**")

#for each year in the age range, **HUG** is displayed.

The program displays a certain number of virtual hugs which is equal to the age value supplied by the user.

Learn more on python programs: brainly.com/question/18732854

True or False

MAC addresses are assigned by the router along with your IP address.

Answers

True. If you look at the router it will correspond with your MAC address

Type the correct answer in the box. Spell all words correctly.
The Internet is a worldwide communications network. Which device connects computer networks and computer facilities?
The Internet connects computer networks and computer facilities through a device called the

Answers

A router is the device that connects computer networks and facilities, managing data traffic and directing information between devices on local and global networks.

The Internet connects computer networks and computer facilities through a device called a **router.** A router plays a crucial role in managing data traffic between different networks, ensuring that information is efficiently directed to its intended destination. It serves as a central point for data transmission, directing data packets between devices on the local network and external networks, including the vast global network that constitutes the Internet.

Routers operate at the network layer of the OSI model, making decisions based on IP addresses to determine the most effective path for data to travel. They enable seamless communication between devices within a local network and facilitate the connection to the broader network infrastructure.

In essence, a router serves as a gateway, connecting multiple computer networks and facilitating the exchange of data across the Internet. Its role in directing data packets ensures that information is transmitted accurately and reaches its destination in a timely manner, contributing to the functionality and efficiency of the global communications network that is the Internet.

Images, symbols, and diagrams are types of
A.art objects
B.graphs
C. graphics
D.presentation objects

Answers

D is the answer to the question

D is the answer for this question.

Now that the classList Array has been implemented, we need to create methods to access the list items.
Create the following static methods for the Student class:

1. getLastStudent() - returns the name of the last student in
the classList array

2. getClass Size() - returns the size of the classList

3. addStudent(int index, Student student) - adds a new student to
the classList at index index. This method is a little tricky - when the
new Student is added to the class, it will create a duplicate value at the
end of the classList because of our student constructor. This method
should also include a command to remove the extra student in
the classList added to the end.

4. getStudent(int index) - returns the name of a student at the index
specified

Answers

To implement the required methods in the `Student` class, you can modify the code as follows:

```java

// Static method to get the last student's name

public static String getLastStudent() {

   if (!classList.isEmpty()) {

       return classList.get(classList.size() - 1).getName();

   }

   return "Class list is empty";

}

// Static method to get the class size

public static int getCla_ssSize() {

   return classList.size();

}

// Static method to add a student at a specific index

public static void addStudent(int index, Student student) {

   if (index >= 0 && index <= classList.size()) {

       classList.add(index, student);

       classList.remove(classList.size() - 1); // Remove the extra student at the end

   }

}

// Static method to get a student's name at a specific index

public static String getStudent(int index) {

   if (index >= 0 && index < classList.size()) {

       return classList.get(index).getName();

   }

   return "Invalid index";

}

1.getLastStudent(): This method checks if the `classList` is not empty and returns the name of the last student in the list. If the list is empty, it returns a message indicating so.

2.getCla_ssSize(): This method simply returns the size of the `classList`.

3.addStudent(int index, Student student): This method first checks if the given index is valid (within the bounds of the `classList`). It then adds the new student at the specified index. Since the `Student` constructor adds the student to the end of the list, the last student in the list (the duplicate) is removed.

4. getStudent(int index): This method returns the name of the student at the specified index, provided the index is valid (within the list's bounds). If the index is invalid, it returns a message indicating so.

complete question given below:

Question: Now that the classList Array has been implemented, we need to create methods to access the list items.Create the following static methods for the Student class:getLastStudent() - returns the name of the last student in the classList array.getCla_ssSize() - returns the size of the classListaddStudent(int index, Student

Now that the classList Array has been implemented, we need to create methods to access the list items.

Create the following static methods for the Student class:

getLastStudent() - returns the name of the last student in the classList array.

getCla_ssSize() - returns the size of the classList

addStudent(int index, Student student) - adds a new student to the classList at index index. This method is a little tricky - when the new Student is added to the class, it will create a duplicate value at the end of the classList because of our Student constructor. This method should also include a command to remove the extra Student in the classList added to the end.

getStudent(int index) - returns the name of a student at the index specified.

Coding below was given to edit and use

public class ClassListTester

{

public static void main(String[] args)

{

//You don't need to change anything here, but feel free to add more Students!

Student alan = new Student("Alan", 11);

Student kevin = new Student("Kevin", 10);

Student annie = new Student("Annie", 12);

System.out.println(Student.printClassList());

System.out.println(Student.getLastStudent());

System.out.println(Student.getStudent(1));

Student.addStudent(2, new Student("Trevor", 12));

System.out.println(Student.printClassList());

System.out.println(Student.getCla_ssSize());

}

}

import java.util.ArrayList;

public class Student

{

private String name;

private int grade;

//Implement classList here:

private static ArrayList<Student> classList = new ArrayList<Student>();

public Student(String name, int grade)

{

this.name = name;

this.grade = grade;

classList.add(this);

}

public String getName()

{

return this.name;

}

//Add the static methods here:

public static String printClassList()

{

String names = "";

for(Student name: classList)

{

names+= name.getName() + "\n";

}

return "Student Class List:\n" + names;

}

}

Enter just the letter of the correct answer

You need Internet access for just one device. Comcast sends you to Best Buy to purchase a _____ from aisle 9 ¾.

A) modem

B) router

C) hub

D) gateway

Answers

purchase a router from the aisle

1. Reference initials are always typed on a business letter.
True Or Fale

2. A Hotkey on your computer is a key that is not functioning properly.
True Or False

3. The definition of a network is:
A. The World Wide Web
B. The internet
C. A special computer that is used to store files and programs
D. Two or more computers linked by a cable, telephone lines or other communication devices.

4. Which professional business memo part is keyed first?
A. SUBJECT
B. FROM
C. DATE
D. TO

5. In a PowerPoint presentation, if you add speaker's notes, you are adding:
A. Copies for the presentation for all the speakers present
B. Additional comments to be verbally added by the speaker
C. Notes to improve the presentation for the speaker

6. What is the primary device for entering information into the computer?
A. Monitor
B. Parallel Port
C. Printer
D. Keyboard

7. Reference(or typist) initials are keyed a QS (quadruple space or 4 returns) below the writer's name.
True Or False

8. The + sign beside a folder means there are sub folders.
True Or False

9. In a PowerPoint presentation, a transition is a method of moving from one slide to another.
True Or False

10. Search engines allow you to search for Web pages by specific words or phrases.
True Or False

11. Operating systems are a necessity for today's computers.
True Or False

12. In a standard block style letter, all letters parts begin at the left margin.
True Or False

13. To double space a report, you should press the Enter key twice at the end of each line.
True Or False

14. Which key can be used to delete text from a document?
A. Tab key
B. Backspace key
C. Up Arrow key
D. Shift key

15. Which of the following is not a PowerPoint view?
A. Slide Show
B. Slide Notes
C. Normal
D. Slide Sorter

16. URL means:
A. universal reading list
B. unlisted random learning
C. uniform resource locator
D. united resource lab

17. The mouse is the primary device for navigating and interacting with the computer.
True Or False

18. A search engine can help link you to information on how to format a business letter.
True Or False

19. When referring to computers, OS stands for:
A. Operating Scan
B. Operation Save
C. Open System
D. Operating System

20. When referring to computers, RAM stands for:
A. Read Access Memory
B. Run Away Memory
C. Random Access Memory
D. Running Access Memory

21. Suppose you are entering text in a memo. After finishing the address block, you want to leave two blank lines. What key would you press twice to accomplish this?
A. Tab key
B. Backspace key
C. Spacebar key
D. Enter key

22. A correctly formatted memo will have a complimentary closing.
True Or False

23. When referring to computers, ROM stands for:
A. Read Only Memory
B. Random Only Memory
C. Ready on Mouse
D. Read Only Machine

24. HTTP is:
A. Help the text platform
B. Hypertext markup language
C. Hypertext transfer protocol
D. Hide the transfer parts

Answers

Answer:

1. true 2.false 3.a 4.d 5.c 6.d 7. true 8.true 9.true 10.true

Explanation:

PLEASE HELP
object oriented programming uses objects to carry out different _____

Actions

Attributes

Classes

System

Answers

Answer: I think is actions

If I’m wrong let me know

What are the pasting options in Outlook 2016? Check all that apply.
o keep text only
o merge formatting
o keep errors unchanged
Opaste special
o keep source formatting
O use destination theme

Answers

Answer:keep text only, merge formatting

Explanation:

I’ve used outlook 2016-2018 and Ik how it works

Answer:

keep text only

merge formatting

paste special

keep source formatting

use destination theme

Explanation:

Thank God not me ;)

True or False

During the live demo, the randsomware encrypted files in less than 4 seconds. Thus, it is almost impossible to stop the randsomware virus once it starts.

Answers

Answer:False

Explanation:

Which topology connects all the computers in a circular pattern?
A. mesh topology
B. ring topology
C. star topology
star topology
D. bus topology

Answers

Answer:

it is ring topology uhh how do i make this 20 characters long

Answer:

Compare the advantages and disadvantages of ring topology versus star topology.

Explanation:

Are principles which allow designers to create blank designs

Answers

Answer:

Seven principles guiding blank design

see below

Explanation:

The correct question should be What Are principles which allow designers to create blank designs

"Are principles which allow designers to create blank designs"

Blank design first screen user is presented with when about to start something new.

The seven principles are

BalanceRhythmPatternEmphasisContrastUnityMovement

What kind of voltage do solar cells generate? Solar cells produce ______ voltage which is not usable by most household appliances.

Answers

Answer:

open circuit voltage

Explanation:

Please Answer :(
1. A car engine has a fault. The car mechanic uses an expert system to try to find the
solution to the fault.
(a) What is an expert system?

(b) Describe three features that should be included in the expert system to make it
easy for the car mechanic to use.

Answers

A car engine has a fault. The car mechanic uses an expert system to try to find the  solution to the fault.

Expert systems are computer applications which embody some non-algorithmic expertise for solving certain types of problems.

Explanation:

In artificial intelligence, an expert system is a computer system that emulates the decision-making ability of a human expert. Expert systems are designed to solve complex problems by reasoning through bodies of knowledge, represented mainly as if–then rules rather than through conventional procedural code.An expert system is an AI software that uses knowledge stored in a knowledge base to solve problems that would usually require a human expert thus preserving a human expert's knowledge in its knowledge baseThe expert system works by providing solutions to problems through the reasoning that is at the level of human. but they are much faster to provide solutions to problems, and they use symbols to explain the solutions. Most expert systems are production systems which have at their heart the Rete algorithm

Three features that should be included in the expert system to make it  easy for the car mechanic to use are :

Goal driven reasoning or backward chaining - an inference technique which uses IF THEN rules to repetitively break a goal into smaller sub-goals which are easier to prove; Coping with uncertainty - the ability of the system to reason with rules and data which are not precisely known; User interface - that portion of the code which creates an easy to use system.

Our new catalog contains an eclectic collection of items

Answers

Answer:

Yes

Explanation:

The catalog does contain an eclectic collection of items.

Final answer:

The question is asking about the subject of a catalog containing an eclectic collection of items, and the answer is English.

Explanation:

The subject of the question is English because it is discussing a catalog which is a type of written document that contains a collection of items. The description provided also mentions shelves full of titles organized alphabetically by genre, which further supports the subject of English as it relates to literature and written works. The mention of a Library of Congress catalog record also emphasizes the literary aspect of the subject.

Dan wants to check the layout of his web page content. What is the best way in which he can do this?

A. check the page on a smartphone

B. check a paper printout of the page

C. check the page in an old version of a web browser

D. check the page in safe mode

Answers

The answer is b I hope it helped
The answer is c hope it works

Is the order of steps important in an algorithm? Why?

Answers

Answer:

Yes, and because to calculate the right answer its important to follow the steps in the correct order. Like in Arithmetic operation, the BODMAS rule must be followed, or else we will not get the correct result.

Explanation:

Following the order of steps in an algorithm is very important. And without following the correct order of the steps, we can not hope for the correct answer. like:

15*10/10+5

This can be 150/10+5= 150/15= 10

But this is wrong. It must be:

15*1+5

=16+5

21

Hence, the correct order of steps is very essential.

Next, Adnan decides to recreate the structure on the
right side of the bridge illustration, which is indicated by
the arrow. He thinks the best way to do this is to add
shapes to his presentation.
which shapes should Adnan add to his presentation
to recreate that part of the image? Check all that
apply.
a circle
an arrow
a square
a triangle
a rectangle
Activity

Answers

Answer:

a square and a rectangle

Explanation:

Answer:

c & E

Explanation:

Ballin' on that 100% and jammin' to Melanie Martinez all the while!

Hi, I am super confused. I have been getting my answers removed, due to violation of community guidelines? I read them and I still don't understand why. Here is one of the answers of mine that were removed.

---------------------------------------------------------------------

Answer:D, The box on the left used 90 in^2 less cardboard.

Step-by-step explanation:

First let's find the areas of the boxes
LEFT: 6*4*12=288
RIGHT: 7*6*9=378
Take the greater number, and subtract the lesser one. 378-288=90
So the answer is D, The box on the left used 90 in^2 less

---------------------------------------------------------------------

Can someone exlpain to me why this is violating community guidlines? Please.

Answers

Answer:

When ever you got your answer removed, moderators will leave you a note on why you got your question removed. Read that first

Explanation:

Select the correct answer.
At which stage of project management do you need to discuss and clarify doubts about the project
A risk mitigation
B. project initiation
C. project planning
D. project execution

Answers

Answer : C project planning

Answer:

B. project initiation

(got it right on edmentum)

please be sure to look at the picture below so you wont question this answer

Explanation:


Predict what would happen to the strength of the
electromagnet in each situation.
iron nail Using a battery with a higher voltage:
Wrapping the wire around the nail only three times:
coiled wire
Changing the direction of the current by reversing the
battery connections:
Using a plastic stick in place of the iron nail:
Holding the nail vertically rather than horizontally
Battery
+
battery

Answers

The predictions of the strength of the

electromagnet in the situation above are:

Sing a battery with a higher voltage:  stronger force of attraction.Wrapping the wire around the nail only three times: weaker force of attraction.

What is the influence of number of coil of wire around the nail?

Others are:

Changing the direction of the current by reversing the battery connections:  no change.

Using a plastic stick in place of the iron nail:  weaker force of attraction.

Holding the nail vertically rather than horizontally:  no change.

When there is said to be more loops that  the coil has, there is found to be a stronger magnetic field, as the current is flowing.

Note that the predictions of the strength of the electromagnet in each situation given above are true and correct.

Learn more about battery  from

https://brainly.com/question/14883923

#SPJ2

A method that movie distributors are adopting to make it possible to view movies instantly, without DVD, is known as:

burning

streaming

uploading

none of the above

Answers

The correct answer is most likely streaming.

The method being adopted by movie distributors for instant movie viewing without DVDs is called streaming, a shift that impacts traditional media distribution and consumption patterns.

The method that movie distributors are adopting to make it possible to view movies instantly, without DVD, is known as streaming. This has become a very popular way to consume media content, bypassing traditional physical formats like DVDs. As high-bandwidth Internet connections have become more common, services such as YT, Netflix, and Hulu have grown and evolved, offering vast libraries of movies and television shows that can be streamed directly to various devices. The evolution of home entertainment has shifted from physical media like the VCR and DVD to digital platforms that offer Video on Demand (VOD) and streaming services. With these advancements, consumers can now enjoy a home-viewing experience that provides the convenience of watching programs at their leisure.

If I want to copy a worksheet, I right-click the sheet on the bottom of the screen and click what menu item?

Answers

It depends on what application are you using

(Java)
How do you remove a segment from a string?
For example I need to remove only the first "11" from "1100000111" in java

Answers

Answer:

I Explanation

Explanation:

To delete a segment on a string, pick the option from the toolbar or menu. Firstly select the segment to be delete/removed from the string with a left mouse click. Once the segment has been accepted, it will be removed/deleted from the string

Meg is in the process of creating a storyboard for her personal website, but she is unable to decide which storyboarding technique to use. Which technique would work best for her?

A. hierarchical
B. linear
C. webbed
D. wheel

Answers

Answer:

i assume it,['s b.linear since it invloves math equations

Computers are used to store, retrieve, and _____ data. manipulate mechanize memorize operate

Answers

Answer:

Computers are used to store, retrieve, and manipulate data.

Other Questions
If there is less space for natural ecosystems, then _____ may happen to plants and animals living in those ecosystems. *the first person will be the brainliest The Holmes Company's currently outstanding bonds have a 10% coupon and a 14% yield to maturity. Holmes believes it could issue new bonds at par that would provide a similar yield to maturity. If its marginal tax rate is 40%, what is Holmes' after-tax cost of debt A regular heptagon has a side length of 13.9 and an apothem of 14.4. Find the area of the regular heptagon. Round your answer to the nearest WHOLE NUMBER. ? How does situational irony best contribute to satire? whats the size of the missing angle The constitution states that all revenue or income collected by the government should originate in the House of Representatives? Is this ( TRUE ) OR IS IT (FALSE) AND EXAMPLE IT PLZ The Treaty of Guadalupe Hidalgo raised issues over-between the US government in TexasA ownership of Santa FeB ownership of the Rio GrandeC Pacific trade routes in CaliforniaD Merchant property How did Chinas culture develop and influence its neighbors in East and Southeast Asia? What is the sign of B+ A?Choose 1 answerPositiveNegativeNeither positive nor negative- the sum is zero The United States and Saudi Arabia are trading partners due to specialization. Choose the type of specialization trading taking place between the two countries? A)Heavy equipment from the United States is traded for agricultural products from Saudi Arabia B)Oil from the United States is traded for agricultural products from Saudi Arabia C)Oil from Saudi Arabia is traded for agricultural products from the United States. D)Heavy equipment from Saudi Arabia is traded for agricultural products from the United States. Edna feels like an outsider on Grand Isle because * A certain triangle has its base equal measure to its height. The area of a triangle is 72 square meters. Find the base and height of the triangle. When I saw her yawn, I could not tell if it was because she was tired or just bored.Which statement best describes what a student can learn by analyzing the relationship between the two underlined words?Yawning can cause tiredness.Yawning can cause boredom.Tiredness can cause yawning.Boredom can cause yawning. The diameter of Earth is 12,756 km. How many times greater is the suns diameter than the diameter of Earth? Show the math. Above are two different models of the same rectangle. If the width of the model on the left is 13.75 in, what is the width of the model on the right? A. 13.25 in B. 22 in C. 4.58 in D. 5 in True or False: The early Grand Princes of Kiev became Roman Catholics What is the constant in this expression? m minus 4 n + 3.5 + StartFraction 4 over 5 EndFraction p m Negative 4 n 3.5 StartFraction 4 over 5 EndFraction Which uptempo style combined country music with a light version of jump-band R&B Economic arguments made against the institution of slavery Two equal mass carts approach each other with velocities equal in magnitude but opposite in direction. Friction can be neglected. If the carts collide completely inelastically, what will be the final velocity of the combined system?