okay all the people that make other people cry leave me alone got it good

Answers

Answer 1

Answer:

YESSS

Explanation:

So many people have made me cry!!


Related Questions

You will create a simple client server program with a language of your choice (python is highly recommended) where a server is running and a client connects, sends a ping message, the server responds with a pong message or drops the packet.
You can have this program run on your machine or on the cse machines. Note that you will run two instances of your shell / IDE / whatever and they will communicate locally (though over the INET domain) - you can connect to your localhost (127.0.0.1 or make use of the gethostname() function in python).
Use UDP (SOCK_DGRAM) sockets for this assignment (parameter passed to socket()).

useful links:

https://docs.python.org/3/library/socket.html

https://docs.python.org/3/library/socket.html#example
details:

client.py

create a UDP socket (hostname and port are command line arguments or hard coded).
send 10 (probably in a loop) 'PING' message (hint: messages are bytes objects (Links to an external site.))
wait for the response back from the server for each with a timeout (see settimeout() (Links to an external site.))
if the server times out report that to the console, otherwise report the 'PONG' message recieved
server.py

create a UDP socket and bind it to the hostname of your machine and the same port as in the client (again either command line or hardcoded).
infinitely wait for a message from the client.
when recieve a 'PING' respond back with a 'PONG' 70% of the time and artificially "drop" the packet 30% of the time (just don't send anything back).
Server should report each ping message and each dropped packet to the console (just print it)
hint: for the dropping of packets, use random number generation (Links to an external site.)
You will submit 2 source code files (client.py and server.py), a README file that explains how to run your program as well as screenshots of your program running (they can be running on your own machine or the CSE machine). NOTE: your screenshot should include your name / EUID somewhere (you can print it at the beginning of your program or change the command prompt to your name, etc)

Example client output (Tautou is the hostname of my machine, 8008 is a random port i like to use - note you can hard code your hostname and port if you prefer):

λ python client.py Tautou 8008
1 : sent PING... received b'PONG'
2 : sent PING... Timed Out
3 : sent PING... Timed Out
4 : sent PING... received b'PONG'
5 : sent PING... received b'PONG'
6 : sent PING... Timed Out
7 : sent PING... received b'PONG'
8 : sent PING... received b'PONG'
9 : sent PING... received b'PONG'
10 : sent PING... received b'PONG'

example server output:

λ python server.py 8008
[server] : ready to accept data...
[client] : PING
[server] : packet dropped
[server] : packet dropped
[client] : PING
[client] : PING
[server] : packet dropped
[client] : PING
[client] : PING
[client] : PING
[client] : PING

Answers

python server.py 8000.

I can definitely help you with that! Here's a sample code in Python for a simple client-server program using UDP sockets:

client.py

import socket

import sys

SERVER_HOST = sys.argv[1]

SERVER_PORT = int(sys.argv[2])

PING_MESSAGE = b'PING'

# Create a UDP socket

client_socket = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)

for i in range(1, 11):

   # Send a ping message to the server

   print(f'{i} : sent PING...')

   client_socket.sendto(PING_MESSAGE, (SERVER_HOST, SERVER_PORT))

   try:

       # Wait for a pong message from the server

       client_socket.settimeout(3.0)

       response, server_address = client_socket.recvfrom(1024)

       # If a pong message is received, print it

       if response == b'PONG':

           print(f'{i} : received {response}')

   except socket.timeout:

       # If the server times out, report it to the console

       print(f'{i} : Timed Out')

# Close the connection

client_socket.close()

server.py

import socket

import sys

import random

SERVER_PORT = int(sys.argv[1])

PONG_MESSAGE = b'PONG'

# Create a UDP socket and bind it to the server address

server_socket = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)

server_address = ('', SERVER_PORT)

server_socket.bind(server_address)

print('[server]: ready to accept data...')

while True:

   # Wait for a ping message from the client

   data, client_address = server_socket.recvfrom(1024)

   if data == b'PING':

       # Drop packet 30% of the time

       drop_packet = random.random() < 0.3

       

       # If packet is dropped, do not send a pong message

       if drop_packet:

           print('[server]: packet dropped')

       else:

           # Send a pong message to the client

           server_socket.sendto(PONG_MESSAGE, client_address)

           print('[client]: PING')

   

# Close the connection

server_socket.close()

To run the program, you can open two terminal windows and run the server.py file on one window and the client.py file on another window. In the client window, you will need to provide the hostname and port number for the server as command-line arguments. For example, to connect to a server running on localhost with port 8000:

python client.py localhost 8000

In the server window, you only need to provide the port number as a command-line argument:

python server.py 8000

Learn more about  sample code in Python from

https://brainly.com/question/17156637

#SPJ11

i need a computer science help.....and I rlly want it right now...this the question
calculate all multiples of 5 that are less than a randomly generated number between 12 and 45. for example the random number is 16. the output is then 5,10,15 python

so basically if type a number between 12 and 45 it shud give me all the multiples of 5 less than the number i typed......pls help;-;

Answers

Define, en tus propias palabras, lo que son los sistemas de información.

PLS HELP ILL GIVE BRAINLY) enter the answer) desktop publishing software enables users to create products for print or __________ distribution

Answers

Answer:

Electronic

Explanation:

What are the steps for grouping worksheets in a workbook?
1. Click on the first worksheet's tab at the of the open workbook.
2. Then, select all the open tabs by holding down the key and select the last worksheet, OR select individual
sheets by holding the key and clicking the sheets you wish to group.
3. These actions automatically group the worksheets. Then, apply all formatting changes to the first worksheet, and it
will be applied to all in the group.

Answers

Answer:

1, bottom    2,shift,        3,Ctrl

Explanation:

i got it right.

Answer:

1) Bottom

2) Shift

3) Ctrl

Explanation:

1. What are the electronic hand tools presented in the video? 2. How many cleaning materials where used to maintain the tools? 3. Enumerate the steps in maintaining the hand tools presented in the video clip.

Answers

I don't think you can answer the question without a video

which of the following types of storage would you recommend if someone needed a hard drive with fast data access and a small outline?a. Magnetic hard driveb. Solid-state hard drivec. Flash drived. Optical drive

Answers

If someone needs a hard drive with fast data access and a small outline, the type of storage that should be recommended is a Solid-state hard drive (SSD). The correct answer is B.

An SSD, also known as a solid-state drive, is a storage device that employs flash memory to store data. It is smaller in size and faster than a standard hard disk drive (HDD). It has a faster read/write speed than an HDD and consumes less energy than an HDD because it does not have any moving parts.

A magnetic hard drive has moving parts and is slower than an SSD. Optical drives, on the other hand, are used to read data from CDs, DVDs, and Blu-ray discs, and are not suitable for storage purposes. Flash drives are often used for data transfer and storage, but they have a lower storage capacity than an SSD.

Therefore, if someone needed a hard drive with fast data access and a small outline, the type of storage that would be recommended is a Solid-state hard drive (SSD).

You can learn more about Solid-state hard drive (SSD) at

https://brainly.com/question/28476555

#SPJ11

Hi, I am a 7th grader and I was wondering if anyone had an opinion on the online education company i-Ready Curriculum. I need a 1-5 stars rating and a short response. Thanks for your time and opinions.

Answers

Explanation:

yeh.. say dear....

what help do you need

Answer:

Heyy dear friend

Explanation:

please mark me as a Brainlist

The ______ sets rules for both the transport of data packets and the addressing system for a network such as the ARPANET

Answers

The tool that sets rules for both the transport of data packets and the addressing system for a network such as the ARPANET is called; Protocol

Understanding Protocols

In computer systems communications, a protocol is defined as a set of rules and regulations that allow a network of nodes to transport and receive data information.

Now, each transport layer in a system of network such as ARAPNET will always have a protocol set such as TCP and IP.

Read more about internet protocols at; https://brainly.com/question/17820678

1. What does a computer
network allow computers to
share?
*
Resources
Mice
Electricity
Screen​

Answers

Answer:

Resources

Explanation:

::::::::::::::::::::::

Answer:

Resources I'm pretty sure

Explanation:

idontknow

You are working for an online gaming company. You have been asked to write some code to support
online card games, such as poker, gin rummy, other games. As a starting point, you have been asked to
write prototype code that does the following:
• Create a deck of cards
o There 10 card values, numbered 0 through 9, and there are four cards for each card
value
o You do not need to track suits (e.g., hearts, spades, etc.); for the purposes of this
assignment, all cards with the same card value are equivalent.
• Deal a set of hands to a set of players
o There are five cards per hand and four players per game
• Record counts of the multiples and singletons for the cards in each hand (four of a kind, three of
a kind, pairs, singletons, etc.)
• Store the state of the deck, hands, and hand counts in a set of arrays
o These will be used and updated over the course of games, so simply printing the state of
cards and hands at the start of the game is not sufficient

Answers

Any game played with playing cards is considered a card game. Poker, bridge, blackjack, solitaire, and go fish are a few popular card games.

Write a code in java?

package brainly;

import java.util.Arrays;

import java.util.Random;

public class Card {

   static int DECK_L = 10;

   static int CARD = 4;

   static int PLAYER = 4;

   static int HAND = 5;

   static int[] deck = new int[DECK_L;

   static int[][] playerHands = new int[PLAYER][HAND];

   public static void main(String[] args) {

       Arrays.fill(deck, CARD);

       for (int i = 0; i < PLAYER; i++) {

           for (int j = 0; j < HAND; j++) {

               int randomCardValue = getRandom();

               playerHands[i][j] = randomCardValue;

           }

       }

       for (int i = 0; i < PLAYER; i++) {

           System.out.print("Player " + (i + 1) + " hand : ");

           for (int j = 0; j < HAND; j++) {

               System.out.print(playerHands[i][j] + " ");

           }

           System.out.println("");

       }

       System.out.println("");

       System.out.println("Cards Remaining:");

       System.out.print("Card:  ");

       for (int i = 0; i < DECK_L; i++) {

           System.out.print(i + " ");

       }

       System.out.println("");

       System.out.print("Count: ");

       for (int i = 0; i < DECK_L; i++) {

           System.out.print(deck[i] + " ");

       }

   }

   private static int getRandom() {

       int randomCardValue = 0;

       for (int i = 0; i < DECK_L; i++) {

           Random random = new Random();

           randomCardValue = random.nextInt(DECK_L);

           if (deck[randomCardValue] == 0) {

               continue;

           } else {

               deck[randomCardValue]--;

               break;

           }

       }

       return randomCardValue;

   }

}

To know more about java, check out:

https://brainly.com/question/25458754

#SPJ1

ASAP!
Use the drop-down menus to complete the statements about Contacts and the Contacts View.

A ( Task, calendar, or contact ) is an object stored in Outlook that contains information about individual people you want to communicate with.

Use the ( Mail, people, or calendar ) icon in the Navigation pane to see the Contacts View page.

Answers

Answer:

Contact

People

Explanation:

Do all careers or professions need computer science? Why or why not?

Answers

Answer:

Most careers or professions need computer science

Explanation:

As humanity is improving technological wise most jobs will be replaced and other jobs would come into play and in order for individuals to become employed in jobs that will be available in the future to come they will have to have a degree in computer science or know how to operate computers.

Answer:

No not all careers and professions require computer science

Explanation:

There are so many careers, many in which you may not sit in front of a computer. If you become a farmer, janitor, teacher or more you may not need computer science skills.

Use Pointer1.cpp to explore basic pointer concepts (30 minutes in coding).Question: Consider the call to display2() in main(), what's wrong with the call?Coding (finish in 5min): Fix the problem you saw in the first question without changing display2().Take away: notice the difference of "&" and "*" and how to pass parametersCoding (finish in 15min):Create a new function named "display3," which looks like "void display3(int m, int* p)"In "display3," assign new values to "m" and "*p"Print out the values of "b" and "a" in in main()Call "display3" by passing in "b" and "aPtr"Print out the values of "b" and "a" in in main() again, after calling display3() in the previous stepTake away: parameter values can be changed "following" (de-referencing) pointers. This is one way to return results from a function (by defining parameter as references or pointers).Coding (finish in 5min)Please update function "display3"In "display3," after the code to update the value of "*p," print out "*p," "p" and "&p."Take away: pay attention to the values printed out:int a = 3, &p(a); // a is 3, p refers to acout << p; // shows the value referred to by p ==> 3cout << &p; // shows the address of the variable referred to by p, ==> &aCoding (finish in 5min): Back in main(), at the bottom, assign a new value to the storage that "aPtr" points to (hint: use the dereference operator) and output both "*aPtr" and "a" - what has happened?

Answers

In Pointer1.cpp, the call to display2() in main() is missing the parameter. It should be display2(aPtr).

In the new function "display3", we assign new values to "m" and "*p" using the dereference operator. Then we print out the values of "b" and "a" in main() before and after calling "display3". This demonstrates how parameter values can be changed following pointers, allowing us to return results from a function.

To update the function "display3", we add code to print out the value, pointer, and address of the variable "*p" after updating its value.

Finally, back in main(), we assign a new value to the storage that "aPtr" points to using the dereference operator. We output both "*aPtr" and "a" to see the result. This demonstrates how changing the value of the storage pointed to by a pointer can affect the value of the original variable.

To learn more about function visit;

brainly.com/question/12431044

#SPJ11

Write a Java program to calculate the amount of candy each child at a party gets. You specify the number of children and the total amount of candy, then compute how many pieces each child gets, and how many are left over (for the parents to fight over!).

Answers

Answer:

import java.util.Scanner;

public class candy {

   public static void main(String[] args){

       Scanner sc = new Scanner(System.in);

       System.out.println("Type in number of children: ");

       //gets the number of children

       int numberOfChildren = Integer.parseInt(sc.nextLine());

       System.out.println("Type in number of candy: ");

       //gets number of candy

       int numberOfCandy = Integer.parseInt(sc.nextLine());

       //checks there will be any leftover candy

       int leftover = numberOfCandy%numberOfChildren;

       System.out.println("Each children will get "+(numberOfCandy-leftover)/numberOfChildren+" candies.");

       System.out.println("There will be "+leftover+" leftover candies.");

   }

}

what are the features of unix​

Answers

Unix is a effective and flexible working machine that has been in use since the Seventies.

Some of its awesome features of Unix

Multiuser and multitasking: Unix can assist more than one users and run a couple of procedures concurrently, making it appropriate for use in environments with many customers and complicated computing necessities.

Modular layout: Unix is designed to be modular, with a easy set of core additives that may be combined and extended to satisfy exclusive computing needs. This makes it clean to construct custom systems and packages the use of Unix as a foundation.

File machine: Unix has a hierarchical document machine that organizes documents and directories in a tree-like shape.

Learn more about Unix at

https://brainly.com/question/4837956

#SPJ1

where is the scroll bar located inside a web browser?

Answers

The Scroll Bar is the narrow space in your browser window just to the right of the content area.

Scroll bar is located on the right hand side of the screen edg 2025

ARBICIDE® solution used for immersion of implements should be changed: A Once a week. B. Once a month. C. Daily D. Only when cloudy or visibly

Answers

The solution used for immersion of implements should be changed daily. Correct answer: letter C.

However, depending on the environment, the solution may need to be changed more frequently, such as when it is cloudy or visibly dirty.

The solution used for immersion of implements should be changed daily to ensure maximum effectiveness in killing germs and other microorganisms. Disinfectant solutions should be checked frequently for proper strength, and changed when the active ingredient is depleted or breaks down.

The frequency of changing the solution is dependent on the type of disinfectant being used, the rate of use, and the environment in which it is being used.

Learn more about disinfectant

https://brainly.com/question/4396638

#SPJ4

When a television is turned on, it converts electrical energy into many other forms of energy. Which set of words correctly lists most of these forms?.

Answers

Light, sound, and heat comprise the group of words that accurately classifies the majority of these forms.

Describe energy.

There are many different energy forms in the environment. These energies consist of kinetic, potential, and gravitational forces. Kinetic energy is created by converting the collected potential energy.

The action is carried out using kinetic energy. the energy that is converted into kinetic energy when work is completed. Other types of energy include light and heat.

Televisions are electronic devices with screens that show a variety of moving objects. The television therefore displays heat, sound, and light. It is powered by electricity, which is transformed into heat, sound, and light.

To know more about  electrical energy visit:-

https://brainly.com/question/13077484

#SPJ4

Which computer use microprocessor as its CPU ?

Answers

Microcomputer

Microcomputer was formerly a commonly used term for personal computers, particularly any of a class of small digital computers whose CPU is contained on a single integrated semiconductor chip. Thus, a microcomputer uses a single microprocessor for its CPU, which performs all logic and arithmetic operations.

List three ideas for checking in with your progress and recognizing completion on your actions.

Answers

One idea for checking in with your progress and recognizing completion on your action is to set specific milestones or targets along the way and regularly evaluate your progress towards them.

How can you effectively track your progress and acknowledge completion of your action?

To effectively track your progress and acknowledge completion of your action, it is important to establish clear milestones or targets that can serve as checkpoints. Break down your overall goal into smaller, measurable objectives that can be achieved incrementally.

Regularly assess your progress by comparing your actual achievements against these milestones. This will provide you with a tangible way to track your advancement and ensure that you stay on track. Once you reach a milestone or successfully complete a specific objective, take the time to acknowledge and celebrate your achievement.

Read more about action check

brainly.com/question/30698367

#SPJ1

Vocabulary, Grammar, And Pronunciation Are All Elements Of What?
a. Dialect
b. Lexical Choice
c. Semantics d. Syntax

Answers

Answer: D) Syntax

Explanation: Syntax is the set of rules that govern the structure of a sentence or phrase in a language. It involves the arrangement of words and the relationships between them to create well-formed sentences that can be understood by listeners or readers. The elements of vocabulary, grammar, and pronunciation are all important components of syntax.

I handle the graphics that are displayed on the monitor (what part of the computer is this)?

Answers

Answer:

Graphics Card or Video Card

Explanation:

Strings need to be placed in

Answers

Answer:

glue

Explanation:

Describe the purpose of these types of websites: informational and research; media sharing; bookmarking; news, weather, sports, and other mass media; educational; business, governmental, and organizational; blogs; wikis and collab-oration; health and fitness; science; entertainment; banking and finance; travel and tourism; mapping; retail and auctions; careers and employment; e-commerce; portals; content aggregation; and website creation and management.

Answers

The purpose of different types of websites includes providing information, research, media sharing, bookmarking, news delivery, education, business, blogs, collaboration, health, science, entertainment, banking, travel, mapping, retail, careers, e-commerce, portals, content aggregation, and website creation/management.

1. Informational and Research Websites: Provide information and resources on specific topics or fields.

2. Media Sharing Websites: Allow users to upload, share, and view various media content like photos, videos, and audio.

3. Bookmarking Websites: Enable users to save and organize web links for easy access and sharing.

4. News, Weather, Sports, and Other Mass Media Websites: Deliver news, weather updates, sports scores, and other media content.

5. Educational Websites: Provide learning resources, courses, and educational materials.

6. Business, Governmental, and Organizational Websites: Represent companies, government entities, or organizations, sharing information and services.

7. Blogs: Personal or professional websites where individuals or groups share articles, opinions, or experiences.

8. Wikis and Collaboration Websites: Facilitate collaborative editing and content creation by users.

9. Health and Fitness Websites: Provide information, tips, and resources related to health, wellness, and fitness.

10. Science Websites: Share scientific research, discoveries, and information in various scientific fields.

11. Entertainment Websites: Offer online entertainment, such as gaming, streaming, or interactive content.

12. Banking and Finance Websites: Enable users to manage finances, perform transactions, and access financial services.

13. Travel and Tourism Websites: Provide travel-related information, bookings, and destination guides.

14. Mapping Websites: Offer interactive maps, directions, and location-based services.

15. Retail and Auction Websites: Allow online shopping and buying/selling through auctions.

16. Careers and Employment Websites: Provide job listings, career resources, and recruitment services.

17. E-commerce Websites: Enable online buying and selling of products or services.

18. Portals: Serve as gateways to various resources, combining multiple services or information in one place.

19. Content Aggregation Websites: Collect and curate content from multiple sources, presenting it to users.

20. Website Creation and Management: Provide tools, platforms, and services to create, host, and manage websites.

Each type of website serves a specific purpose and caters to different user needs and interests, contributing to the vast ecosystem of the internet.

learn more about bookmarking here:

https://brainly.com/question/23955986

#SPJ11

In which TWO cases would you need to format a cell in a spreadsheet that contains a number? to make sure a formula includes it in calculations to change its appearance to make it easy to visually locate it to ensure no-one can use the number in calculations to ensure no-one can hide the column that contains it

Answers

Answer:

to make sure a formula includes it in calculations to change its appearance to make it easy to visually locate it

Explanation:

Microsoft Excel is a spreadsheet application used for data analysis and visualization. The worksheet of the excel file is tabular with rows and columns. A single block of the worksheet is called a cell and holds a single item located by the row and column label.

The particular cell can be referenced in a formula using the absolute reference operator '$' with the syntax "$column-label $ row-number". The background of the cells can also be formatted to have a different color.

where can I go to follow other people on brainly? ​

Answers

Answer:

You have to send them a friend request. Click on their profile and that will take you to another link, with their info. Click add friend there.

Hope this helps.

Good Luck

Three types of common program errors are syntax, runtime, and logic. (5 points)
O True
O False

Answers

Answer:

True

Explanation:

True,My good sir/maam

A computer chip sold to you for use in your home computer is an example of: _________

Answers

A kachip that was sold to you to use in your home computer is an example of this: a final advantage.

A computer is what kind of asset is it?

In accounting, the tangible, valuable assets of a company are referred to as "fixed assets." They support a company's operations and last at least a year. Examples of fixed assets include automobiles, computers, and tools.

Is software a fixed asset or an intangible asset?

However, this standard applies to expenditures (like start-up costs) and other intangible assets used (like software) in the extractive or insurance industries. Computer software can be considered a long-term asset in the same way that land and buildings are.

To know more about computer visit :-

https://brainly.com/question/21080395

#SPJ4

what class of arthropods is mainly involved in the pollination process?​

Answers

Answer:

Insects

Explanation:

insects are the most pollinating arthropods.

This question has two parts : 1. List two conditions required for price discrimination to take place. No need to explain, just list two conditions separtely. 2. How do income effect influence work hours when wage increases? Be specific and write your answer in one line or maximum two lines.

Answers

Keep in mind that rapid prototyping is a process that uses the original design to create a model of a part or a product. 3D printing is the common name for rapid prototyping.

Accounting's Business Entity Assumption is a business entity assumption. It is a term used to allude to proclaiming the detachment of each and every monetary record of the business from any of the monetary records of its proprietors or that of different organizations.

At the end of the day, we accept that the business has its own character which is unique in relation to that of the proprietor or different organizations.

Learn more about Accounting Principle on:

brainly.com/question/17095465

#SPJ4

Other Questions
what is 5 x 5? - just ignore this question SUMMARIZE AND EXPLAIN THE ADMINISTRATIVE AND CLERICAL PROCEDURES IN FRONT OFFICE AND HOUSEKEEPING.i don't need links!! Which of the following is a Reach Key on your keyboard?O H keyOF keyO J keyO S key The sample space listing the eight simple events that are possible when a couple has three children is {bbb, bbg, bgb, bgg, gbb, gbg, ggb, ggg}. After identifying the sample space for a couple having four children, find the probability of getting four girls and no boys. Identify the sample space for a couple having four children. (Use a comma to separate answers as needed. ) How many innings are Jr. High and High School level baseball games? Question 1 options:7 innings6 innings9 innings8 innings 8. Rolling two four-sided dice, what are the odds that the numbers on the dice are both even? please answer i will give you brainiest!!!!!!!!!!!!! If whole tomatoes were money, which of the following functions of money would be the hardest for tomatoes to satisfy? A) unit of account B) store of value C) certificate of gold D) medium of exchange i cannot help a friend with a mental illness . only a doctor can ? true or false ? Where should I add the comma?. A family has a new closet built in one of their bedrooms. Soon, the person who sleeps in that room complains of sore throat, burning eyes, and nausea. Which of the following is the most likely cause of the problems? Old lead pipes are still used in the building. Asbestos was not removed from the building. Formaldehyde was used in the building materials. Pesticides were used in the building's landscaping. The rise of the guilds would be most directly connected to what medieval process in Western Europe? Monasticism Manorialism Deurbanization Specialization If quarterly income return is 2.3% and quarterly capital returnis 0.5%, calculate the Annual Total Return of the investment. Discuss your understanding on Operation Vala and explain why it is important to deal effectively with the family of inmates when special security campaigns is launched. the magnitude of friction acting on the block between a and b is 2.03 n and points a and b are 1.36 m apart. of the kinetic energies of the block a and b are 3.96 j and 7.23 j, respectively, how much work is done? Which strategy would be least useful for helping students monitor comprehension of a text as they are reading?breaking long sentences into short phrasesslowing down and reading the text aloudskimming the text to reach the conclusionrelating the text to prior personal knowledge there are five bells which ring at interval of 4,5,12 and 15 minutes respectively at what minute those bells ring at the same time? What objects and activities foster a child'sability to meet their basic needs at Level 1? 1. Which of the following is true of run-on sentences? A) They affect clarity. B) They involve independent clauses. C) They're considered major grammatical errors. D) All of the answers are correct. Given regular pentagon $ABCDE$, a circle can be drawn that is tangent to $\overline{DC}$ at $D$ and to $\overline{AB}$ at $A$. The number of degrees in minor arc $AD$ isDefine major arc DA as $DA$, and minor arc DA as $da$. Extending DC and AB to meet at F, we see that $\angle CFB=36=\frac{DA-da}{2}$. We now have two equations: $DA-da=72$, and $DA+da=360$. Solving, $DA=216$ and $da=144\Rightarrow \mathrm{(E)}$.Let $O$ be the center of the circle. Since the sum of the interior angles in any $n$-gon is $(n-2)180^\circ$, the sum of the angles in $ABCDO$ is $540^\circ$.Since $\angle ABC=\angle BCD=108^\circ$ and $\angle OAB=\angle ODC= 90^{\circ}$, it follows that the measure of $\angle AOD$, and thus the measure of minor arc $AD$, equals $540^\circ - 108^\circ-108^\circ-90^\circ-90^\circ=\boxed{\mathrm{(E)}144^\circ}$.