a programmer writes 500 lines of computer code in 17 days. must there have been at least 1 day when the programmer wrote 30 or more lines of code? why? ---select--- . if the programmer wrote less than 30 lines of code per day for 17 days, then the maximum number of lines that could be written is . since this number is ---select--- 500, it is ---select--- that the programmer wrote 30 or more lines of code during at least one of the 17 days. need help?

Answers

Answer 1

Yes, the programmer must have written 30 or more lines of code on at least one day.

When the programmer wrote 30 or more lines of code? why?

Given data

Total Lines of code= 500

Number of days= 17 days

Number of codes written per day= 500/17

Number of codes written per day= 29.4117

If we multiply 29.4117 by 17

=499.9989

=500 approx

Hence there was never a day when the programmer wrote 30 or more linesThe programmer must have written 30 or more lines of code on at least one day. This is due to the fact that an average of 29.4 lines of code per day equals 500 lines of code divided by 17 days. The programmer must have written at least 30 lines of code on one of the days (and potentially more), as it is impossible to have less than one line of code, in order to have 500 lines of code in total after 17 days.

To learn more about Number of codes written per day refer to:

https://brainly.com/question/23895584

#SPJ4


Related Questions

Can you help me write this Eratosthenes Profiler code above out
in C++ while implementing this h. file code below.
The EratosthenesProfiler.cpp file will consist of only one function, the main. The main function will perform the following tasks: 1. It prompts the user to enter an integer (long), \( n \). It invoke

Answers

Sure, I'll help you write the Eratosthenes Profiler code in C++. Please find the code below:#include "Eratosthenes.

h"//Main Functionint main(){    int n; //variable to store user input    cout<<"Enter an integer n: ";

cin>>n;    

Eratosthenes es(n);

//Create Eratosthenes object with input as argument    es.sieve();

//Call the sieve function of the object    es.printPrimes(); //Print the prime numbers    return 0;

}Here's how the code works:

The code first includes the header file "Eratosthenes.h". The main function then creates an integer variable n to store the user input. The user is prompted to enter the input n. The code then creates an object of the Eratosthenes class using the input n as an argument. The sieve function of the object is called to calculate the prime numbers. Finally, the prime numbers are printed using the printPrimes function.

To know more about integer visit:

https://brainly.com/question/490943

#SPJ11

What are T.N.O's?

Ten Next Objects
Two Newton Orbits
Trans Neptunian Objects

Answers

The term  T.N.O's is known to be called Trans Neptunian Objects.

What in astrology is a TNO?

This is known to be any minor planet in the Solar System that orbits the Sun at a higher average distance than Neptune, which has a semi-major axis of 30.1 astronomical units

It is one that is often referred to as a trans-Neptunian object (TNO), also known to be written as transneptunian object (au).

Trans-Neptunian objects, or TNOs for short, are said to be any planets, large or tiny, that orbit the Sun at a distance about or more than 30 AU, which is seen as the typical distance to Neptune.

Nearly 3,000 TNOs are already known, and as such, The term  T.N.O's is known to be called Trans Neptunian Objects.

Learn more about astrology from

https://brainly.com/question/10826203
#SPJ1

100% pl…View the full answer
answer image blur
Transcribed image text: Convert the following Pseudo-code to actual coding in any of your preferred programming Language (C/C++/Java will be preferable from my side!) Declare variables named as i, j, r, c, VAL Print "Enter the value ofr: " Input a positive integer from the terminal and set it as the value of r Print "Enter the value of c: " Input a positive integer from the terminal and set it as the value of c Declare a 2D matrix named as CM using 2D array such that its dimension will be r x c Input an integer number (>0) for each cell of CM from terminal and store it into the 2D array Print the whole 2D matrix CM Set VAL to CM[0][0] Set both i and j to 0 While i doesn't get equal to r minus 1 OR j doesn't get equal to c minus 1 Print "(i, j) →" // i means the value of i and j means the value of j If i is less than r minus 1 and j is less than c minus 1 If CM[i][j+1] is less than or equal to CM[i+1][j], then increment j by 1 only Else increment i by 1 only Else if i equals to r minus 1, then increment j by 1 only Else increment i by 1 only Print "(i, j)" // i means the value of i and j means the value of j Increment VAL by CM[i][j] Print a newline Print the last updated value of VAL The above Pseudo-code gives solution to of one of the well-known problems we have discussed in this course. Can you guess which problem it is? Also, can you say to which approach the above Pseudo-code does indicate? Is it Dynamic Programming or Greedy? Justify your answer with proper short explanation.

Answers

The following is the solution to the provided Pseudo code in C++ programming language. As for which problem this Pseudo code gives a solution for, it is the problem of finding the path with minimum weight in a matrix from its top-left corner to its bottom-right corner, known as the Minimum Path Sum problem.The above Pseudo code shows the Greedy approach of solving the Minimum Path Sum problem. This is because at each cell of the matrix, it always picks the minimum of the right and down cell and moves there, instead of keeping track of all paths and comparing them, which would be the Dynamic Programming approach. Hence, it does not require to store all the sub-problem solutions in a table but instead makes a decision by selecting the locally optimal solution available at each stage. Therefore, we can conclude that the above Pseudo code does indicate the Greedy approach to the Minimum Path Sum problem in computer programming.Explanation:After receiving input of the dimensions of the matrix and the matrix itself, the Pseudo code declares a variable VAL and initializes it with the first cell value of the matrix. It then uses a while loop to iterate through the matrix till it reaches its bottom-right corner. At each cell, it checks if it can only move to the right or down, and then it moves in the direction of the minimum value. VAL is then updated by adding the value of the current cell to it.After the loop is exited, the last updated value of VAL is printed, which is the minimum path sum value.

Learn more about Pseudo code here:

https://brainly.com/question/21319366

#SPJ11

Consider the problem of tiling a surface (completely and exactly covering it) with n dominoes (2×1 rectangles). The surface is an arbitrary edge-connected (i.e., adjacent along an edge, not just a corner) collection of 2n 1×1 squares (e.g., a checkerboard, a checkerboard with some squares missing, a 10×1 row of squares, etc.).a. Formulate this problem precisely as a CSP where the dominoes are the variables.b.Formulate this problem precisely as a CSP where the squares are the variables, keeping the state space as small as possible. (*Hint:* does it matter which particular domino goes on a given pair of squares?)c. Construct a surface consisting of 6 squares such that your CSP formulation from part (b) has a *treestructured* constraint graph.d. Describe exactly the set of solvable instances that have a tree-structured constraint graph.

Answers

a. To formulate this problem precisely as a CSP where the dominoes are the variables, we can define each domino as    a variable with its two possible orientations (horizontal or vertical) as its domain.  The constraints would be that each square is covered by exactly one domino and that adjacent dominoes have matching orientations.

b. To formulate this problem precisely as a CSP where the squares are the variables, we can define each square as a variable with its possible dominos as its domain. The constraints would be that each square is covered by exactly one domino and that adjacent dominos have matching orientations. It doesn't matter which particular domino goes on a given pair of squares since all dominos are identical.

c. One possible surface consisting of 6 squares that has a tree-structured constraint graph is a 3x2 rectangle with the middle square missing.

d. The set of solvable instances that have a tree-structured constraint graph are those where the surface can be partitioned into smaller connected components that can be solved independently. This means that the constraints only involve variables within each component and do not involve variables from different components. If a solution exists for each smaller component, then the entire problem can be solved by combining the solutions for each component.

To know more about constraints, visit:

https://brainly.com/question/30703729

#SPJ11

can you help me with my homework what should i do

can you help me with my homework what should i do

Answers

Answer:

what is matter and two examples

For ul elements nested within the nav element, set the list-style-type to none and set the line-height to 2em.

For all hypertext links in the document, set the font-color to ivory and set the text-decoration to none.
(CSS)

Answers

Using the knowledge in computational language in html it is possible to write a code that For ul elements nested within the nav element, set the list-style-type to none and set the line-height to 2em.

Writting the code:

<!doctype html>

<html lang="en">

<head>

  <!--

  <meta charset="utf-8">

  <title>Coding Challenge 2-2</title>

</head>

<body>

  <header>

     <h1>Sports Talk</h1>

  </header>

  <nav>

     <h1>Top Ten Sports Websites</h1>

     <ul>

   

     </ul>

  </nav>

  <article>

     <h1>Jenkins on Ice</h1>

     <p>Retired NBA star Dennis Jenkins announced today that he has signed

        a contract with Long Sleep to have his body frozen before death, to

        be revived only when medical science has discovered a cure to the

        aging process.</p>

        always-entertaining Jenkins, 'I just want to return once they can give

        me back my eternal youth.' [sic] Perhaps Jenkins is also hoping medical

        science can cure his free-throw shooting - 47% and falling during his

        last year in the league.</p>

     <p>A reader tells us that Jenkins may not be aware that part of the

        least-valuable asset.</p>

  </article>

</body>

</html>

See more about html at brainly.com/question/15093505

#SPJ1

For ul elements nested within the nav element, set the list-style-type to none and set the line-height
For ul elements nested within the nav element, set the list-style-type to none and set the line-height

how to paste text without changing the style

Answers

Explanation:

left click on the text and move the mouse icon

How can I download battleroyale games in computer?

Answers

To download battle royale games on a computer, open battle royale sites, or if it is present in the play store, from there you can download it.

What is downloading?

When you download, your computer is obtaining information from the Internet. Opening a website, getting an email, buying music files, and watching videos online are all examples of downloading.

The act of getting files, images, and web pages from a web server is known as downloading. You must upload a file in order for it to be accessible to everyone online.

Therefore, open battle royale websites or, if it's available in the play store, go there to download battle royale games for a computer.

To learn more about downloading, refer to the below link:

https://brainly.com/question/26456166

#SPJ1

7. Write long answer of the following questions. a. Explain the various tabs used by Microsoft Office Word 2010.
b. What is design template? How to create a template? Write with proper steps.
c. What is watermark text? What is the purpose of using it? Write proper steps to insert watermark in your document​

Answers

try searching the first few ones the answer should show up and the rest should be easy to search

Explanation:

Which type of printer maintenance commonly requires resetting a maintenance counter?

Answers

The type of printer maintenance that commonly requires resetting a maintenance counter is Fuser Reset or ITM Reset.

What is a Printer?

This refers to the device that is used to produce an output in a hardware format.

At some point during use, the printer can develop some fault and to run a maintenance, there would have to be a reset of the maintenance counter.

This can be done with the use of the Fuser Reset or ITM Reset.

Read more about printer maintenance here:

https://brainly.com/question/11188617

#SPJ1

What are considered higher level questions on NCLEX?

Answers

Higher level questions on the NCLEX are considered to be those that require a greater depth of knowledge and critical thinking skills. These questions often involve analysis, evaluation, and application of information in order to arrive at a correct answer.

Some examples of higher level questions on the NCLEX include:

Questions that ask you to analyze a patient's symptoms and determine a diagnosisQuestions that require you to evaluate a patient's response to treatment and make recommendations for further careQuestions that ask you to apply knowledge of nursing concepts and procedures in a clinical setting

It is important to remember that the NCLEX is designed to test your ability to think critically and make sound clinical judgments. Therefore, higher level questions are an important part of the exam and require a superior level of knowledge and understanding.

Lear More About NCLEX

https://brainly.com/question/29569835

#spj11

What is the gear ratios of a gear train with an input gear of 48 teeth and an output gear of 12?

A. 1:4
B. 1:3
C. 4:1
D. 3:1

Answers

Answer:

D: 4:1

Explanation:

If you divide 48 by 12, you get 4. 12 is 1/4 of 48. Therefore, you keep it at 4:1.

In order to compute the gear ratio, one of two methods can be used: either divide the output speed by the input speed (i=Ws/We) or divide the number of teeth on the driving gear by the number of teeth on the driven gear (i=Ze/Zs). Thus, option C is correct.

What gear ratios of a gear train with an input gear?

The total debt divided by the total shareholders' equity yields the net gearing calculation. The amount of equity that would be needed to pay off all outstanding obligations is shown by the ratio, which is expressed as a percentage.

The speed ratio (also known as velocity ratio) of a gear train is the proportion of the driver's speed to the driven or follower's speed. Train value: The gear train's train value is defined as the difference between the speed of the driver and the speed of the driven or follower.

Therefore, 48 divided by 12 results in 4. 12 is 1/4 of 48. You leave it at 4:1.

Learn more about gear ratios here:

https://brainly.com/question/28883796

#SPJ2

what permission must be granted for a user to run procedures within a database?

Answers

Answer:

To grant permissions on a stored procedure

From Stored Procedure Properties, select the Permissions page. To grant permissions to a user, database role, or application role, select Search. In Select Users or Roles, select Object Types to add or clear the users and roles you want.

which is the correct APA format in books?​

Answers

Answer:

It includes the author's last name, the year, and  a page number. In the reference list, start with the author's last name and initials, followed by the year. The book title is written in sentence case

The APA in-text citation for a book includes the author's last name, the year, and (if relevant) a page number. In the reference list, start with the author's last name and initials, followed by the year. The book title is written in sentence case (only capitalize the first word and any proper nouns).

Write the steps to create labels in OpenOffice writer

Answers

1. Start up Open Office.Org.

2. Click on File >> New >> Labels.

3. In the label dialog box, click on the brand box. This will allow you to choose the type of paper that you use.

4. Select the type of document that you want. The usual standard is Avery, but feel free to explore and discover what you like.

5. Select if you want a single label, a document, and any other options. Some of the things you might want to do are:

- Create a variety of labels for folders or drawers

- Create a sheet of address labels

-  Create decorative labels

6. Click New Document. Here, you see a sheet of blank labels.

7. Create the type of format/placement that you want for your labels. Once you are happy with it, copy it to the rest of the labels.

8. Fill your labels with necessary information.

9. Print them out.

is this right or not???????????

is this right or not???????????

Answers

I think it’s true Bc some people may use different techniques

Answer:

yes you are correct

Explanation:

Which of the following is not a type of application software?
A)Microsoft Office
B)Encyclopedias
C)Games
D)Windows 98

Answers

Answer:

windows 98

Explanation:

Answer:

I think the best answer would indeed be B.

Explanation:

B. Encyclopedias

Users are complaining that they are unable to browse certain websites on the Internet. An administrator can successfully ping a web server via its IP address, but cannot browse to the domain name of the website. Which troubleshooting tool would be most useful in determining where the problem is?
netstat
tracert
nslookup
ipconfig

Answers

In this case, "nslookup" would be the troubleshooting tool that would be most helpful in identifying the problem's location. The Domain Name System (DNS) can be queried using the command-line utility nslookup to learn how to translate domain names to IP addresses.

A web server is a piece of software that runs on a computer and is in charge of distributing content via the internet, including web pages. Receiving requests from web browsers and responding with the desired material in the form of web pages, photos, or other multimedia files is the main responsibility of a web server. Web servers like Apache, Nginx, and Microsoft IIS are frequently used. Web servers are set up to serve particular websites or web applications and frequently interface with web browsers using the HTTP protocol. They can also support various protocols for email, file transfers, and other uses, like FTP, SMTP, and POP3. Depending on the requirements of the application, web servers can be configured for varying degrees of security, performance, and scalability.

Learn more about web server here:

https://brainly.com/question/31017584

#SPJ4

Explain the expression below
volume = 3.14 * (radius ** 2) * height

Answers

Answer:

Explanation:

Cylinder base area:

A = π·R²

Cylinder volume:

V = π·R²·h

π = 3.14

R - Cylinder base radius

h - Cylinder height

What is the horizon on a perspective drawing?

Answers

One form of eye-level line is the horizon. Eye-level lines are the lines that naturally direct the viewer's eye into a photograph.

What is photograph?

Photograph is defined as a picture made when light strikes a photosensitive surface, either a piece of film for photography or an electronic image sensor like a CCD or CMOS chip. Photography, which means "painting with light" in its literal sense.

A natural form of line to direct the viewer's eye level is a horizontal line. Because it enables you to manage the height of the viewer's eye as they stare at the image, a horizon line is crucial in art. The horizon line is always visible to you at eye level.

Thus, one form of eye-level line is the horizon. Eye-level lines are the lines that naturally direct the viewer's eye into a photograph.

To learn more about photograph, refer to the link below:

https://brainly.com/question/25379778

#SPJ1

Match the correct pairs of column A and B to prove your computer
1
intelligence
1. Ms-word, WordStar
a. Database Management system
2. Pagemaker, Ventura
b. Word processing software packages
3. Ms. Excel, Lotus 1,2,3
c. Desktop publishing
4. D Base, fox pro, Ms-Access d. Antivirus Software
5. Basic, cobol, Pascal
e. Parts of E-mail Account
6. McAffee/ Smart Dog/Norton f. Finance and data analyses
7. ComputerVirus
g. Addressing servers on internet
8. Inbox,compose, address book h. Software program that can replicate
itself​

Answers

Explanation:

1 Ms word - b. Word processing software

2 Pagemaker - c desktop publishing

3 Ms excel - f finance and data analyses

4 dbase - a database management system

6 Mcafee/Norton - d anti-virus software

7 virus - h computer program that can replicate itself

8 inbox, compose,.............. - parts of an email account

Most ________ are accompanied by several common utility programs, including a search program, a storage management program, and a backup program.

Answers

Answer:

operating systems

Explanation:

The operating systems is shortly known as OS. It is a system software which manages the software resources of the computer, computer hardware and also provides some common services for the various computer programs.

Most of the operating systems available in the market provides some common utility programs such as the search program, a backup program and a storage management program also.

Some common operating systems are : Linux, Microsoft Windows, Ubuntu, macOS, Unix, and many more.

Question 2 of 10
A game has a function that requires the player sprite to first collect a banana
and then collect a coin, after which the game ends, and the player wins.
Which word is the Boolean operator that should be used in the program to
indicate this set of conditions?
A. Not
B. And
c. Or
D. After

Answers

Answer:

b

Explanation:

I really don't but I hope its correct

The word that is the Boolean operator that should be used in the program to indicate this set of conditions is And. The Option B.

Which Boolean operator should be used to indicate the specified conditions in the game?

The Boolean operator that should be used in the program to indicate the specified set of conditions, where the player sprite needs to collect a banana and then collect a coin to win the game, is "And."

The "And" operator evaluates to true only when both conditions are met simultaneously, meaning the player must satisfy both conditions of collecting the banana and the coin to trigger the game-winning outcome.

Read more about Boolean operator

brainly.com/question/3445425

#SPJ2

whats a computer scientist.

Answers

Answer:

computer scientist is a person who has acquired the knowledge of computer science, the study of the theoretical foundations of information and computation and their application.

Answer:

A computer scientist is a person who has acquired the knowledge of computer science, the study of the theoretical foundations of information and computation and their application. Computer scientists typically work on the theoretical side of computer systems, as opposed to the hardware side on which computer engineers mainly focus (although there is overlap). Although computer scientists can also focus their work and research on specific areas (such as algorithm and data structure development and design, software engineering, information theory, database theory, computational complexity theory, numerical analysis, programming language theory, computer graphics, and computer vision), their foundation is the theoretical study of computing from which these other fields derive.

A primary goal of computer scientists is to develop or validate models, often mathematical, to describe the properties of computer-based systems (processors, programs, computers interacting with people, computers interacting with other computers, etc.) with an overall objective of discovering designs that yield useful benefits (faster, smaller, cheaper, more precise, etc.).

Explanation:

Pleeeez mark me as brainliest i hope it helped you alot pllleez mark me okay. As brainliesy okay mate.

the correct number of clusters in hierarchical clustering can be determined precisely using approaches such as silhouette scorestruefalse

Answers

Determining the correct number of clusters in hierarchical clustering is an essential step in the analysis process. However, it is often challenging to determine the optimal number of clusters precisely. There are several approaches to determining the appropriate number of clusters, including the silhouette score.

The silhouette score is a method for evaluating the quality of clustering results. It is calculated by measuring how similar each data point is to its assigned cluster compared to other clusters. The score ranges from -1 to 1, with values close to 1 indicating a well-clustered dataset.While the silhouette score is a helpful approach, it does not always provide an exact number of clusters. Instead, it provides a range of potential clusters to consider. The optimal number of clusters can vary depending on the dataset and the research question. Therefore, it is crucial to interpret the silhouette score results and use it in conjunction with other methods such as visual inspection of the clustering results.In conclusion, while the silhouette score is a useful tool for determining the optimal number of clusters, it is not a precise approach.It is recommended to use it alongside other methods and domain knowledge to determine the correct number of clusters in hierarchical clustering.

For such more question on silhouette

https://brainly.com/question/1550149

#SPJ11

Provide at least two examples of Amazon responsibilities under the AWS Shared Responsibility model.

Answers

Under the AWS Shared Responsibility model, Amazon and its customers have specific responsibilities when it comes to security and compliance in the cloud. Amazon is responsible for ensuring the security and availability of its cloud infrastructure, while customers are responsible for securing their own data and applications in the cloud. Here are two examples of Amazon's responsibilities under this model:

1. Infrastructure Security: Amazon is responsible for the security of the physical infrastructure that makes up the AWS cloud, including the data centers, servers, networking, and storage. This includes implementing security controls such as firewalls, access controls, and intrusion detection systems to protect against cyber attacks and other threats. Amazon also conducts regular security audits and assessments to identify vulnerabilities and ensure compliance with industry standards and regulations.

2. Service Availability: Amazon is responsible for ensuring that its cloud services are available and accessible to customers at all times. This includes providing redundant systems and backup power supplies to prevent downtime in the event of a hardware failure or natural disaster. Amazon also monitors its cloud infrastructure 24/7 to identify and resolve any issues that may impact service availability.

In summary, Amazon's responsibilities under the AWS Shared Responsibility model include maintaining the security and availability of its cloud infrastructure, while customers are responsible for securing their own data and applications. By working together, Amazon and its customers can ensure a secure and reliable cloud computing environment.

Learn more about model here:

https://brainly.com/question/30564902

#SPJ11

what is the sdlc? describe, compare, and contrast the predictive (traditional waterfall) model and the adaptive (agile) model. [2pts]

Answers

The SDLC stands for Software Development Life Cycle. It is a framework that is used to develop software from concept to completion. The Predictive Model is a traditional Waterfall Model which is a sequential design process while the Adaptive Model (Agile) is a much more iterative process.

The predictive model involves creating a plan of action and following that plan closely. This model requires each phase of the process to be completed before moving on to the next, and the results of each phase need to be tested before the software is released.

The adaptive model involves developing the software in small chunks and then testing those chunks before the full release. This model allows for flexibility in the development process and encourages collaboration between developers, stakeholders, and users.

You can learn more about Software Development Life Cycle at: brainly.com/question/26366977

#SPJ11

Only one indented line of code will be executed after an if statement. True False

Answers

Question: Only one indented line of code will be executed after an if statement. True False

Answer: False

Answer:

its true

Explanation:

When you touch a warm picnic table , your hand becomes warmer. Explain how energy conservation applies to this situation

Answers

When you contact a warm picnic table, this transfer occurs because your hand has a lower surface temperature than the table, which allows the heat to pass from the table to your hand. You can see how this procedure conserves energy.

Why should we conserve energy?

Energy conservation is essential for limiting climate change. It helps to replace non-renewable resources with renewable energy. When there are energy shortages, energy saving is frequently more cost-effective and environmentally friendly than increasing energy output.

What kind of energy is that?

There are numerous shapes that energy can take. Examples of these energies include gravitational energy, mechanical energy, electrical energy, sound energy, chemical energy, nuclear or atomic energy, light energy, heat energy, and so on.

To know more about conserves energy visit:-

https://brainly.com/question/13949051

#SPJ1

Ariana has decided to allow some of her co-workers to use the personal photographs
that she took for their business website. Before doing this, however, what does she
need to obtain to grant them permission?
A. a sticker

B. the property value

C. watermark

D. a license

Answers

Answer: D. a license

Ariana needs a license in order to obtain to grant them permission. Thus, the correct option for this question is D.

What are Business websites?

Business websites may be defined as a space that significantly provides general information about the company or a direct platform for e-commerce.

It involves the collection of World Wide Web pages usually containing links to each other and made available online by an individual, company, or organization.

Before deciding to allow some of her co-workers to use their personal photographs, Ariana needs to obtain to grant them permission in the form of a license. This is because it captures the personal identity of co-workers.

Therefore, Ariana needs a license in order to obtain to grant them permission. Thus, the correct option for this question is D.

To learn more about Business websites, refer to the link:

https://brainly.com/question/23060064

#SPJ2

Other Questions
in christian theology, when do the "12 days of christmas" begin? calculate the equilibrium concentrations of all species when 15.0 ml of 0.100 m agno3 is mixed with 5.00 ml of 0.200 m nh3. the kf of [ag(nh3)2] is 1.7x107 . What does this quote mean to you? "You may need to fight a battle more then once to win." The balance sheet for the Firefox Corp. is shown here in market value terms. There are 8,900 shares of stock outstanding. The company has declared a dividend of $1.06 per share. The stock goes ex-dividend tomorrow. Ignoring any tax effects, what is the stock selling for today? What will it sell for tomorrow? After the dividend, what will be the value of shares and of cash for an investor with 110 shares? Enter your answers rounded to 2 DECIMAL PLACES. What is the stock selling for today? What will the stock sell for tomorrow? What will be the value of the investor's shares after the stock dividend? What will be the value of the investor's cash after the dividend? Click "Verify" to proceed to the next part of the question. Note: This question has 3 parts, so you will be clicking Verify 3 times. Dungeoness Corporation has excess cash of $2,500 that it would like to distribute to shareholders as an extra dividend. Current earnings are $0.90 per share, and the stock currently sells for $40 per share. There are 240 shares outstanding. Ignore taxes and other imperfections. If Dungeoness Corp. pays a cash dividend, what will be the dividend per share? After the dividend is paid, what will the price per share be? What are earnings per share (EPS) and the price earnings (P/E) ratio? Enter your answers rounded to 2 DECIMAL PLACES. Dividend per share = Price per share = Earnings per share (EPS)= Price earnings (P/E) ratio = Shares in Growth Corporation are selling for $45 per share. There are 7 million shares outstanding. The company repurchases 250,000 shares. After the repurchase: How many shares will be outstanding? What will be the price per share? Outstanding shares = Price per share = Brainliest and extra points for right answer.Use the graph to answer the question.Graph of polygon ABCDE with vertices at negative 1 comma negative 4, negative 1 comma negative 1, 3 comma negative 1, 3 comma negative 4, 1 comma negative 6. A second polygon A prime B prime C prime D prime E prime with vertices at 13 comma negative 4, 13 comma negative 1, 9 comma negative 1, 9 comma negative 4, 11 comma negative 6.Determine the line of reflection. Reflection across the x-axis Reflection across x = 6 Reflection across y = 3 Reflection across the y-axis What is the the Valley of Ashes?* 24 13/1,000 as a decimal number Segmenting dimensions that help marketing managers decide whether to include a customer type in a product-market are called ______ dimensions. Which numeral represents the location of the Battle of Vicksburg? A. I B. II C. III D. IV Identify the groups of people in america who were divided between both the patriot and loyalist causes. The content of the variable result after the following is _____________. Enter the result without any spacesint sum = 0;for(int i = 1; i The New Deal sealed Franklin Delano Roosevelt's fate as a failed president. ruined the power of the Supreme Court. ended the Depression. did not end the Depression. A patient who has Parkinson's disease is participating in OT to increase independence with self-feeding. During a session, the OTR notes that the bolus of food becomes pocketed between the patient's teeth and cheek. What does this indicate Which of these is an example of a trace fossil?A. skinB. dungC. a leafD. a skull The midpoint of AB is M(4,4). If the coordinates of A are (2, 1), what are thecoordinates of B? If a customer service representative changes the way she envisions her job, from recording complaints from customers to being an advocate for customer rights, she engages in which form of job crafting Research shows were more careful with our money when we use _____.Group of answer choicesCashCreditChecksDebit one of your co workers suggests a way you could be more efficient, but you are worried it will make your work unsafe which of the following items cannot be found on a firm's balance sheet under current liabilities? a. accrued payroll taxes. b. cost of goods sold. c. short-term notes payable to the bank. d. accounts payable. The sporting goods store with 30% off all items . If a skateboard is normally $70 , what would be the approximate sale price of the skateboard