On a web page coded in HTML, there is a sentence that reads, "Welcome to Assessments Section." Sam wants to insert the word "the" before "Assessments." He also wants to delete the word Assessments and replace it with another word. How will the inserted and deleted text appear?

The inserted text will appear as ___________ text. The deleted text will appear as ___________ text.


1st blank answer choices :
- italicized
- struck through
- bold
- underlined


2nd blank answer choices :
- italicized
- struck through
- bold
- underlined

Answers

Answer 1

Answer:

The inserted text will appear as underlined text. The deleted text will appear as strike through text.

Explanation:

In HTML the text which has been inserted will appear as underlined text. It means if we insert something in HTML then it will underline it. This will highlight the text that has been inserted. While on the other hand if we delete some text and replace it with some other text, then it will appear as strikethrough text.

Strikethrough text is the text which is represented with a horizontal line in its center. It represents those words which are added by mistake and are not meant for inclusion.


Related Questions

In the code snippet, what is the “win” part called in programming?
if (playerGreen > 444) {
setScreen ("win");
}
A. Function
B. Parameter
C. Variable
D. onBoardEvent

Answers

I think the answer is B: parameter

HTML importance in web desgin

Answers

Answer:

HTML is a significant tool for building up a site. It is a programming language used to describe the structure of information on a web page.

Explanation:

what is an attribute that describes an object's characteristic?

Answers

Answer:

Type of the object.

Explanation:

Identify the type of conflict in each situation.
Mark sees his close friend Tom
cheat during a class test and
wonders whether he should
keep the information to
himself or confront Tom about it
Kyle goes on a ski trip alone, only
to be caught in a heavy snowstorm
and become stranded in the
middle of nowhere.
Sarah wants to give up studying
law and follow her dreams of
becoming a musician, but her
family disapproves of this idea.
Kate and Jade have always competed
to be the most popular student
in school. With prom coming up, the
problems between the two increase.
Lizzy finds a wonderful outfit for her
friend's birthday party, but she
realizes that it costs much more
than her budget. She's tom
between buying it and looking
for something else.
Internal Conflict
External Conflict

Answers

first off, good for Tom, he found Brainly. And now the answers (in order)

1. internal

2. internal

3. external

4. external

5. internal

1. Internal conflict 2.  Internal conflict 3. External conflict 4. External conflict 5.  Internal conflict

What is internal and external conflict?

Internal conflict is when a person struggles with their own opposing desires or beliefs.

External conflict sets an individual against something or someone which is not in their control.

1. Mark sees his close friend cheating. The situation must be confronted or kept secret is his inner struggle.

Thus. its an internal conflict.

2. Kyle goes on a ski trip alone and stucks in heavy storm. Now she is afraid of what she will tell her loved ones and how she will face if she get caught.

Thus, its an internal conflict.

3. Sarah wants to pursue her dream of becoming musician. She has to make everyone agree to favor her but she is getting opposed. This struggle is with her parents.

Thus,  its an external conflict.

4. Kate and Jade are competitors. The competition is increasing between the two.

Thus,  its an external conflict.

5. Lizzy denies to buy her wonderful outfit due to high cost. She wants it but can't afford.

Thus,  its an internal conflict.

Learn more about internal and external conflict.

https://brainly.com/question/27377458

#SPJ2

Guess the output #includes<stdio•h>
int main()
{
print("Hello");
break;
printf("world");
return 0;

}


A. Hello
B. World
C. Compile error
D. Hello world​

Answers

Hello. Is the one I work do.

Answer:

Hello Colors

Explanation:

write a c program that reads marks of ten students calculate percentage and deviations percentage of each student using array

Answers

Answer:

a

Explanation:

Final answer:

This detailed response describes how to write a C program to read the marks of ten students, calculate their percentage, and compute the deviation percentage for each student using arrays. An example code snippet is provided to illustrate the implementation.

Explanation:

To write a C program that reads the marks of ten students calculates the percentage, and then computes the deviation percentage for each student, we first need to understand the basics of arrays in C. An array is a collection of elements of the same type placed in contiguous memory locations. In this case, we use an array to store the marks of the ten students.

First, we will calculate the percentage of each student's marks out of the total possible marks. Secondly, we will compute the deviation percentage, which involves finding the average marks of the students, then calculating the difference between each student's marks and the average marks, and finally expressing this difference as a percentage of the average.

Example Code

#include
int main() {
   int marks[10];
   float sum = 0, avg, deviation;
   for(int i = 0; i < 10; i++) {
       printf("Enter marks for student %d: ", i+1);
       scanf("%d", &marks[i]);
       sum += marks[i];
   }
   avg = sum / 10;
   printf("Average marks: %.2f\n", avg);
   for(int i = 0; i < 10; i++) {
       deviation = ((float)marks[i] - avg) / avg * 100;
       printf("Deviation Percentage for student %d: %.2f%%\n", i+1, deviation);
   }
   return 0;
}

This program reads the marks of ten students, calculates the average marks, and then calculates the deviation percentage of each student's marks from the average. It illustrates the use of arrays, loops, and basic arithmetic operations in C programming for handling calculations and output formatting.

Round Robin Algorithm

Using the following table as your starting point for each algorithm RR with a time quantum of 5

Job
A
B
C
D
E

Arrival time:
0
0
0
0
0

Time burst:
15
2
14
10
1

Answers

Answer:

Please check the attachment.

Explanation:

avg turnaround time = (38+7+42+33+18)/5= 27.6

avg waiting timee = (33+5+28+23+17)/5= 21.2

And its D, A C in Gantt chart at last and exit time are 33, 38 and 42 mentioned as last three in Gantt chart.

when troubleshooting a computer hardware problem , which tool might help​

Answers

Answer:

Some softwares by microsoft or windows maybe :)

Explanation:

Which of the following is one of the options available on the Columns menu on the
Layout tab?
Choose the answer.
a)Three
b)Two
c)Left
d)all of the above

Answers

Answer:

d)all of the above

Explanation:

The options available on the column menu on the layout tab are one, two, three left and right. Hence, all of the above options are the options available on the column menu on the layout tab. You can check this by going inside the layout tab, and clicking on the column option. Once you will do this, you will see all of the above-mentioned options showing there. Hence, d. all of the above is the correct choice for this question.

how do i create an advanced search using the search criteria in the range K2:S3 and the inventory data where the results will be displayed in the search results (starting in cell K10).

Answers

Final answer:

To perform an advanced search in Excel, use the Advanced Filter feature, inputting your inventory data as the list range, the criteria in K2:S3, and output the results starting at cell K10.

Explanation:

To create an advanced search using the search criteria in the range K2:S3 and show the results in the search results area starting in cell K10, you can use Excel's Advanced Filter function. Follow these steps:

First, ensure your data in the inventory has headers, and the criteria range K2:S3 is set up with the same headers.

Go to the Data tab on the Excel ribbon and choose 'Advanced' under the Sort & Filter group.

In the Advanced Filter dialogue box, select 'Copy to another location'.

For 'List range', select your inventory data. For 'Criteria range', select K2:S3. For 'Copy to', select cell K10, where you want to display the results.

Click OK, and Excel will filter the data according to your criteria and display the results in K10 and below.

This method allows you to accurately filter and extract specific data from a larger dataset based on multiple conditions.

Final answer:

To create an advanced search using Excel VLOOKUP function.

Explanation:

To create an advanced search using the search criteria in the range K2:S3 and the inventory data, you can use the Excel VLOOKUP function. Here's how:

In cell K10, enter the following formula: =VLOOKUP(K2,$K$2:$S$3,2,FALSE). This formula will search for the value in cell K2 in the range K2:S3 and return the corresponding value from the second column of that range.

Drag the formula down to fill the cells below K10. The formula will adjust automatically to display the search results for each value in the range K2:S3.

By using this method, you can create an advanced search in Excel.

research about the various models of intel processors from the last decade focusing on their speed and cost​

Answers

The Intel announced the eighth- generation chips will offer up to 40 percent speed boost  over the previous generation.

Explanation:

The most popular Intel processors are the core i3, i5, and i7 product lines. The core i3 is entry level and core i7 processors are the powerful hyper-threaded quad-core options.

The CPU does good job in understanding and completing single tasks. A clock speed of 3.5 GHz to 4.0 GHz is considered a good clock speeding for gaming. It is useful for having good single thread performance.

Intel's prior series of 8086,80186, 80386 and 80486 microprocessors, the first P5 based microprocessor released as original Intel Pentium.

1) Moore's law refers to:

Answers

Answer:

Moore's law refers to: the pace at Central Processing Units (CPU) improves this rule.

Explanation:

It also predicts that CPU will double about every 2 years dynamic, random access.

Simon took a photograph of his town's city hall. He wants to use the photograph in a report. Is this okay for Simon to do? A.
Yes, he took the photograph, so he owns the rights to it.
B.
No, he did not build the city hall, so he is not allowed to use its image.
C.
No, you should only use professional photographs in reports.
D.
Yes, but only if he is careful to cite the source of the photograph.

Answers

A would be the correct answer as it is a public building and he took the picture.

Simon can use his own photograph of the city hall in his report as he generally owns the copyright to it, assuming the photo was taken legally in a public space. If using others' photos, he must cite the source and may need permission for wider distribution to avoid copyright infringement.

If Simon took the photograph of his town's city hall himself, he generally owns the rights to that photograph and can use it in his report, assuming the photography took place in a public space and there are no other regulations or rights limiting such use. Therefore, the correct answer would be A. Yes, he took the photograph, so he owns the rights to it. It's important to note, however, that if Simon is using photographs that he didn't take himself, he then needs to cite the source of any images created by another writer or photographer, as he would be required to do for words he borrows.

Moreover, for photographs he did not create, he might need to obtain permission from the copyright holder for use outside of the classroom to avoid copyright infringement. This is especially relevant if the report will be widely shared or published. In sum, whether or not Simon needs to cite his own photograph can depend on specific school or publisher guidelines, but in terms of copyright law, his own photograph can be used freely if it was taken within legal bounds.

What is the answer to this question?

Answers

5

8

Explanation:

Since the number is already defined as 5, greater_than_zero holds the value true and less_than_zero holds the value false because 5 is greater than zero and not less than 0. Since there are 4 four if conditions, only two holds true i.e the first one and the last one because the in third condition we are using and logic which needs both condition to be true to make the condition true, whereas in fourth we are using or logic which can make condition true even if one condition is true. Hence the number printed will be number and number +3.

how do you fix your zsnes emulator from lagging it’s lagging on My laptop

Answers

To fix your zsnes emulator from lagging use another emulator, like Snes9X or BSnes.

Explanation:

The reason why this lag is here is because of how the backgrounds work. First off, the PC, has a variety of stuff running in the background that could soak up CPU time and slow down the emulator just enough to cause the sync issues. The PC's running a new version of SNES9x, which is more processor intensive. The sync on the monitor versus the TV might be slightly different. NTSC TVs have a refresh rate of 59.94 frames per second, whereas your PC monitor might be exactly 60 frames per second. If the emulator is compensating for the difference, that could cause the difference. As for the controller, I would suggest making sure no other programs on your PC have that slight input lag. Some controller drivers have a lot of processing involved in them that can cause that sort of issue, and I wouldn't be surprised if the Xbox simply handles the inputs faster since it's designed as a gaming rig. It's also possible that the newest version of SNES9x is slightly slower on the controller input.

Which of the following refers to semitransparent text or a faint object that appears
behind document content?
Choose the answer.
a)footer
b)page color
c)page border
d)watermark

Answers

Option D: Watermark refers to semitransparent text or a faint object that appears behind the document content.

Explanation:

Footer: This is a text which appears in the bottom of every page. Mostly page numbers and the name of the publisher or the company name will be in the footer.

Page Color: This represents the color of the page

Page border: This option provides border to the page. The border can be thin or thick according to the requirement.

Watermark: This is the right answer. A watermark is added such that your content cannot be used by anyone else without permission. When you copy the text, the water mark also gets copied, thus avoiding plagiarism.

Match the description to its correct game design principle.

1. clarity

2. consistency

3. engagement

4. simplicity

5. utility

A. use features that retain the interest of 
the intended player audience in the game



B. know the kind of fun the game must 
create in the intended player audience



C. add minimum features that 
meet the goal of the game



D. use one type of approach 
in the game



E. provide flexibility for 
future modifications​

Answers

Answer:

The answers are explained below.

Explanation:

Clarity refers to know the kind of fun the game must create in the intended player audience.

Consistency is explained in letter D: use one type of approach in the game.

Engagement matches letter A: use features that retain the interest of the intended player audience in the game.

Simplicity is to add minimum features that meet the goal of the game.

Utility refers to provide flexibility for future modifications.

the advantage of purchasing a dual Ethernet 10/100 Mbps NIC for your PC is that your PC can now?​

Answers

A dual Ethernet 10/100 Mbps NIC for your PC is that your PC is now compatible with both LAN speeds.

Explanation:

A 10/100 Ethernet port transmits 10 and 100 Mbps, while the maximum speed of a 10/100/1000 "Gigabit" port is 1 Gbps. Ethernet uses the highest common speed between sending and receiving devices. Ethernets above one gigabit are separate and do not mix with 10/100/1000 components.10GBase-T networks can span up to 100 meters. Enterprises use 10 Gigabit Ethernet switches to provide Layer 2 networking for very high-speed network applications – mostly in the data center or server room. 10/100 Mbps NIC is a good choice for flexibilty. Also, plan to use a PCI bus slot.The NIC should have both half duplex as well as full duplex capacity.By modifying the NIC properties through the operating system your PC will also work faster compared to before.

In a non-formatted/standard template, if the number 25 is converted to text format, the
alignment becomes
_. (right, left, center)

Answers

The alignment of the text will be "left" by default

Explanation:

In Excel or spreadsheet, if any number is entered, it will automatically be aligned to right because right alignment is preferable for the numbers.In case of any alignment is mentioned in the cell in prior to entering text or if the type of data is changed after or before entering the text, then the text is aligned accordingly.According to the given scenario, a number "25" is entered and it is converted to text. So a text format will preserve the alignment as entered. By default it will be "left" aligned.

"Jan23" can be stored using which data type?

Answers

Answer: string and text types

Explanation:  Such as:

A character, which may be a letter of some alphabet, a digit, a blank space, a punctuation mark, etc.

A string, which is a sequence of characters. Strings are typically used to represent words and text.

The string "Jan23" can be stored using the String data type in programming languages that support it, such as Java, Python, or C#.

In the context of programming, data types are an integral concept used to define the type of data that can be stored in a variable. Since "Jan23" is a combination of alphabetic and numeric characters, it does not fit conventional numeric types like integers or floating-point numbers, nor does it represent a boolean value or a single character. Therefore, the most suitable data type to store "Jan23" is a String, which is designed to store sequences of characters that can include letters, digits, and symbols. This categorization allows it to hold both the textual month abbreviation 'Jan' and the numeric component '23' without any need for numerical calculations or binary storage, as would be the case with numeric data types.

You'd like to change the minimum password length policy in the Default Domain Policy group policy preference (GPO). What's the best way to go about doing this?

A) Open ADAC and edit policy settings there

B) Manually edit config files in SYSVOL

C) Open the Group Policy Management Console by running gpmc.msc from the CLI

D) Edit the Windows Registry to change group policy settings

Answers

Answer:

C) Open ----CLI

Explanation:

If the group policy management tools are active, and which you can check in windows features, then you can open the GPMC by running the gpmc,msc, and then they can do the above mentioned changes, and change the minimum password length policy in the default domain policy group policy preference.

Open the GPMC. Now expand the domain, and now your domain, and then th group policy object. Now you are required to rightclick on default domain policy and click on edit. Now move to password policy, which is under Computer configuration\Policies\Windows Settings\Security Settings\Account Policies\Password Policy. Now double click on minimum password length, and change to your desired value. And you are done.

The best way to change the password is C. Open the Group Policy Management Console by running gpmc.msc from the CLI.

It should be noted that the information is simply about how a user can change the minimum password length policy in the Default Domain Policy group policy preference (GPO).

In this case, opening ADAC and edit policy settings there or manually editing config files in SYSVOL won't work in this situation. Therefore, it's best to open the Group Policy Management Console by running gpmc.msc from the CLI.

Learn more about domain on:

https://brainly.com/question/1369616

Financial institutions are monitored through which of the following?
A. Federal Reserve System
B. National Banking Union Administration
C. Federal Deposit Insurance Corporation
D National Financial Institution Agency

Answers

Answer:

federal reserve system

Financial institutions are monitored through Federal Deposit Insurance Corporation.

Option C is the correct answer.

We have,

The Federal Deposit Insurance Corporation (FDIC) is responsible for monitoring and regulating financial institutions in the United States.

It is an independent agency of the federal government that aims to maintain stability and public confidence in the banking system.

The FDIC oversees banks and savings associations, ensures their compliance with relevant laws and regulations, and provides deposit insurance to protect depositors' funds.

The FDIC conducts regular examinations of financial institutions to assess their financial health, risk management practices, and adherence to consumer protection laws.

These examinations evaluate the institution's capital adequacy, asset quality, management practices, earnings, and liquidity.

Thus,

Financial institutions are monitored through Federal Deposit Insurance Corporation.

Learn more about financial institutions here:

https://brainly.com/question/29641948

#SPJ6

Which of the following is an example of real-time processing?

A file used to update several student tuition payments
An executive using tools for forecasting future student enrollment
An immediate change in a student's schedule
Several personnel accessing the registration system

Answers

An immediate change in a student's schedule

Explanation:

Real-time processing:

In simple, Real-time processing means, as and when the data comes, it will processed and the output will be sent immediately.

Example: ATMs, traffic system on road, etc.

Batch processing:

Rather in Batch processing, more number of inputs or "bulk inputs" will enter the system and there will be time for processing. The output will be sent later.

Option A: the term "several student payment" says that it is batch

Option B: Forecasting future student enrollment: The output can be given later. Hence it is batch processing.

Option C: Immediate change implies that it is real-time processing

Option D: The word "several personnel accessing" implies that it is batch processing.

Which statement describes what happens if multiple users make changes simultaneously to a presentation when

coauthoring?

©

O

O

Only the primary coauthor's changes are retained to avoid conflicts.

A record of the initial change is kept in the case of conflicts.

A record is kept of all edits that are made so conflicts can be resolved.

It is the last change that will be retained in the case of conflicts.

Answers

Answer:

A record is kept of all edits that are made so conflicts can be resolved.

Explanation:

If only primary coauthor's changes were retained, what will be the meaning of keeping multiple authors only board? However, other authors' changes cannot be finalized without the approval of the primary author. Though the record of all the edits can be kept, each edit is important and must be taken into account while finalizing the final document. And this way we can resolve the conflicts. Hence, the third option is the correct option, for this question.

Answer:C

Explanation:

Will web browser cannot open any web page what should will do first

Answers

Answer:

The solution to this question is given below in the explanation section.

Explanation:

If a web page is not open in a web browser, the first step that will be performing is to check if the internet is connected or not. Because we need to connect to the internet to access any web page. For this, you need to see the wifi or LAN icon and see the status of the connection. If this step is shown the internet is connected. Then diagnose the problem in the browser click on "Running Windows Network Diagnostics".

The diagnosis will get started in your browser, the solution will be suggested by this step if the problem exist. Mostly these problems are internet disconnectivity, router shutdown, browser issues, and internet connection and DNS issues.

What client specifications relate to typography, logos, and color schemes specific to the client's organization?

___________ guidelines are a comprehensive set of references related to typography, color schemes, logo design, and page design specific to each organization and its culture.

Answers

Answer:

Branding

Explanation:

Branding guidelines are a comprehensive set of specifications related to typography, color schemes, logo placement, page layout, and others aspects of design unique to an organization and its culture.

Ansel Adams education and special training

Answers

Answer:

Ansel Adams was dismissed sadly from various schools where he studied because of his bad behavior. And hence he got special training that was being given to him by various private tutors as well as his family members since he was 12 years of age. And in 1916, while on a Yosemite National Park trip, he started working on Photography as well, and he will always be remembered for the work he did in Photography.

Explanation:

Please check the answer section.

Using pseudo code, Natural language and flow chart design an algorithm for quadratic formula

Answers

Answer:

sol 1,2 = (-b +- sqrt(b^2 -4ac))/2a

And rest is as in the image attached. I have added a flow chart.

Explanation:

Please check the attachment.

1. Joe works at Dion's Pizza for $9.35 an hour. When he works over time his pay jumps up
to $14.03 an hour. Last week, Joe worked 45 hours.
a. What is Joe's gross pay for last week?
b. What would be Joe's Social Security deduction? (remember SS tax is 6.2%)
c. What would b Joe's Medicare Tax deduction? (remember Medicare tax is 1.45%
d. Joe's other deductions are: federal tax $61.62, state tax $21.03, city tax $6.01.
What are Joe's total deductions for this pay period?
e. What is Joe's net pay for this pay period?

Answers

Answer:

a. Maximum hours allowed per hour= 40

                      extra hours worked = 5

                        Joe's Gross Pay = 40 x 9.35 + 5 x 14.03

                                                     =$444.15s

b. SS Tax = 6.2%

                  Social security deduction= 6.2 % of Gross Pay

                                                             = (6.2 *444.15)/100

                                                             =$27.5373s

c. Medicare tax =1.45% of Gross Pay

                          = (1.45 x 444.15)/100

                          = $6.440175s

d. Federal Tax = $61.62 State Tax = $21.03 city Tax= $6.01

              Total deduction for this period= SS Tax +Medicare Tax + Federal Tax + State Tax + City Tax

             =   27.5373+6.440175 +  61.62 + 21.03 + 6.01

             =  $122.637475s

e. Joe's net pay for this pay period = 444.15 - 122.637475

               =$321.512525s

Explanation:

Please check the answer section.

When you use the Sort&Filter button, the options for sorting that you see depend on_____.

1- the size of your worksheet

2- the number of columns in the spreadsheet

3- the number of rows currently selected

4- the type of data in the cell ( alphabetic or numeric)

Answers

4- the type of data in the cell ( alphabetic or numeric)

Explanation:

Sorting refers to arranging the data in ascending or descending order. It can be done alphabetically or numerically. Whereas the filter is set to sieve unwanted records and displays only the desired information.

Follow the below steps to sort through the columns:

Select the cells in the list to apply sort & filter. Click on the Data tab Find Sort Click the Add Level button, to set the sorting value. Select the column in Sort by dropdown from where you want to sort.

For applying a filter,

Select the cells in the list to apply sort & filter. Click on Data tab Find Filter Set the filter by inserting values

Other Questions
As of a certain date, there had been a total of 14,404 performances of two shows on Broadway, with 2384 more performances of Show A than Show B. How many performances were there of each show? Which of the following statements about how westernization has impacted the global economy is false?A.Westernization creates a global culture that expands the market for goods and services across the globe.B.Westernization increases competition among goods producers, which drives down cost for the consumer.C.Westernization maintains individual ethnic cultures and caters to individual countries and their demands.D.Westernization promotes capitalism and industrialization, thus providing jobs in developing nations.Please select the best answer from the choices provided.ABCD A student's calibration curve for Blue #1 at 635 nm yields a straight line described by the equation y = 0.194 x + 0.025. If the measured absorbance for a solution of unknown concentration of Blue #1 is 0.293, what is the concentration of the Blue #1 solution? Provide your response to three digits after the decimal. Monopolistically competitive firms: a will set price where MC > MR. b earn a positive economic profit if price is greater than ATC. c engage in collusive activity in order to maximize profit. d are regulated by the government to keep long-run economic profits equal to zero. e are very similar to perfect competitors in producing at the minimum ATC. Erin and Ethan add fractions 2 1/3 and 1 1/2 PLEASE HELP ONLY IF RIGHT 69 points, brainliest, 5 stars, and thank you.A prop for the theater clubs play is constructed as a cone topped with a half-sphere. What is the volume of the prop? Round your answer to the nearest tenth of a cubic inch. Use 3.14 to approximate pi, and make certain to show your work. Hint: you may need to find the volume of the component shapes. Presented below are selected account balances for Homer Winslow Co as of December 31, 2014.Instructions: Prepare closing entries for Homer Winslow Co on December 31,2014. (Omit explanations)Inventory 12/31/14 $60,000 Cost of Goods Sold $225,700Common Stock 75,000 Selling Expenses 16,000Retained Earnings 45,000 Administrative Expenses 38,000Dividends 18,000 Income Tax Expense 30,000Sales Returns and Allowances 12,000 Sales Discounts 15,000Sales Revenue 410,000 In the Wall Street Journal (last March) it was reported that the unemployment rate decreased from 4.1% to 3.9% from January 2019 to February 2019 in the United States. This unambiguously shows that the U.S. economy must have expanded and the labor market remained robust. a. Trueb. False Can you someone answer these for me will be marked brainliest. ( Career Management) If you need the passage look up learning for earning chapter 8. "Which type of report would help the company study available options and how should it be organized?" An optimizing consumer currently spends money on many goods. The last ticket to a baseball game she bought cost $15 and gave her 10 utils of satisfaction. If this same consumer spends $10 on a movie ticket and is still optimizing utility, how many utils will she receive from the purchase What does it mean for a wireless network to be operating in "infrastructure mode"? If the network is not in infrastructure mode, what mode of operation is it in, and what is the difference between that mode of operation and infrastructure mode? during which of these time periods was there a period of inflation In vacuum, the speed of light is c= 2.998 x 108m/s. However, the speed generally decreases when light travels through media other than vacuum. Then, the speed is approximately c divided by a quantity called the medium's refractive index (7). In which of the following, would the frequency of 210nm-light be the lowest? (c = 2v) (1) H2, n = 1.0001 (2) CCl4, n = 1.461 (3) H20, n = 1.3330 (4) silicone oil, n = 1.520 (5) diamond, n = 2.419 A company normally sells a product for $25 per unit. Variable per unit costs for this product are: $3 direct materials, $5 direct labor, and $2 variable overhead. The company is currently operating at 100% of capacity producing 30,000 units per year. Total fixed costs are $75,000 per year. The company should accept a special order for 1,000 units which would be sold for $13 per unit because the special order price exceeds variable costs. True or False True False For what purpose did some businessmen and politicians establish the liberty league in 1934? The number of oranges a grocery store bought this year was 15% more than the number of oranges bought last year. This year the store bought 299 oranges. What was the original number of oranges purchased? Name the three bodies of water that form the backdrop for the Spartan and Athenian campaigns whats 5(3 + 4) - 3 (-2 +11) Consider a locus with two alleles - B and b. B is dominant, while b is recessive. There is no mutation. B has a selective advantage relative to b, so that the fitnesses of the three genotypes are BB = 1, Bb = 1, and bb = 1-s. In this case, s = 0.50, so that bb homozygotes have 50% fitness of heterozygotes and BB homozygotes. If the population has the following genotypic counts prior to selection of BB = 500, Bb = 250, and bb = 250, what is the expected change in the frequency of B after one generation with selection? Please give your answer to two decimal places.