Describe the major research, discoveries, or impact Timothy Berners-Lee has made on the scientific community. 100 points for answer and best description gets brainleist

Describe The Major Research, Discoveries, Or Impact Timothy Berners-Lee Has Made On The Scientific Community.

Answers

Answer 1

Answer:

Giving you brainiest

Explanation:

Because why not you just gave me a 100


Related Questions

please help me with this coding assignment :)
What values are stored in nums after the following code segment has been executed?

int[] nums = {50, 100, 150, 200, 250};
for (int n : nums)
{
n = n / nums[0];
}
[1, 2, 3, 4, 5]
[1, 1, 1, 1, 1]
[1, 100, 150, 200, 250]
[50, 100, 150, 200, 250]

Answers

Answer:

D. [50, 100, 150, 200, 250]

Explanation:

This is a trick question because the integer n is only a counter and does not affect the array nums. To change the actual array it would have to say...nums[n] = n/nums[0];

What output will this code produce?def whichlist():

11=[3,2,1,0]

12=11

11[0]=42

return 12

print(whichlist())

What output will this code produce?def whichlist(): 11=[3,2,1,0] 12=11 11[0]=42 return 12print(whichlist())

Answers

Answer: are you using chIDE

Explanation: yui

I have been working on this python program for a hour now, and I am trying to figure out what I an doing wrong in the loop. I have attached the code and screenshot of my work. I need help to figure out how to loop the rest of the years for a calculation. The calculation has looped the same result for all years.
This is the assignment:
In 2017, the tuition for a full time student is $6,450 per semester. The tuition will be going up for the next 7 years at a rate of 3.5% per year. Write your python program using a loop that displays the projected semester tuition for the next 7 years. You should display the actual year (2018, 2019, through 2024) and the tuition amount per semester for that year.
Here is my code:
# declare global constant variables
startingTuition = 6450.00;
starting_tuitionYear = 2018;
ending_tuitionYear = 2025;
increment = 1;
rate = .035;
tuition = 0;
tuitionRate = 0;
#loop for the next 7 years
for year in range(starting_tuitionYear, ending_tuitionYear, increment):
# calculate rate per year
tuitionRate = (rate)*startingTuition;
# add rate per year to the tuition fee
tuition = startingTuition + tuitionRate;
print('Tuition for the year of ' + str(year)+ ' is ' + str(tuition));

Answers

Answer:

The correct loop is as follows:

for year in range(starting_tuitionYear, ending_tuitionYear, increment):

   tuition = startingTuition + rate * startingTuition

   startingTuition = tuition

   print('Tuition for the year of ' + str(year)+ ' is ' + str(tuition));

Explanation:

Required

The correction to the attached program

Some variables are not needed; so, I've removed the redundant variables.

The main error in the program is in the loop;

After the tuition for each year has been calculated, the startTuition of the next year must be set to the current tuition

See attachment for complete program

I have been working on this python program for a hour now, and I am trying to figure out what I an doing

Python question

The following code achieves the task of adding commas and apostrophes, therefore splitting names in the list. However, in the case where both first and last names are given how would I "tell"/write a code that understands the last name and doesn't split them both. For example 'Jack Hansen' as a whole, rather than 'Jack' 'Hansen'.

names = "Jack Tomas Ponce Ana Mike Jenny"

newList = list(map(str, names.split()))

print(newList) #now the new list has comma, and apostrophe

Answers

Answer:

You can use regular expressions to match patterns in the names and split them accordingly. One way to do this is to use the re.split() function, which allows you to split a string based on a regular expression.

For example, you can use the regular expression (?<=[A-Z])\s(?=[A-Z]) to match a space between two capital letters, indicating a first and last name. Then use the re.split() function to split the names based on this regular expression.

Here is an example of how you can use this approach to split the names in your list:

(Picture attached)

This will give you the output ['Jack', 'Tomas', 'Ponce', 'Ana', 'Mike', 'Jenny', 'Jack Hansen']. As you can see, the name "Jack Hansen" is not split, as it matches the pattern of first and last name.

It's worth noting that this approach assumes that all first and last names will have the first letter capitalized and the last names capitalized too. If this is not the case in your data, you may need to adjust the regular expression accordingly.

Python questionThe following code achieves the task of adding commas and apostrophes, therefore splitting

What unit on a digital camera gives added illusions

Answers

Vfx used for visual effects in the creation on any screen.. imagery that does not physically exist in life. Vfx also allow makers of films to create environments, objects, creature,ect..

In this lab, you use what you have learned about searching an array to find an exact match to complete a partially prewritten C program. The program uses an array that contains valid names for 10 cities in Michigan. You ask the user to enter a city name; your program then searches the array for that city name. If it is not found, the program should print a message that informs the user the city name is not found in the list of valid cities in Michigan. The file provided for this lab includes the input statements and the necessary variable declarations. You need to use a loop to examine all the items in the array and test for a match. You also need to set a flag if there is a match and then test the flag variable to determine if you should print the the Not a city in Michigan. message. Comments in the code tell you where to write your statements. You can use the previous Mail Order program as a guide. Instructions Ensure the provided code file named MichiganCities.cpp is open. Study the prewritten code to make sure you understand it. Write a loop statement that examines the names of cities stored in the array. Write code that tests for a match. Write code that, when appropriate, prints the message Not a city in Michigan.. Execute the program by clicking the Run button at the bottom of the screen. Use the following as input: Chicago Brooklyn Watervliet Acme

Answers

Answer:

Complete the program as follows:

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

     if(inCity == citiesInMichigan[i]){

         foundIt = true;

         break;       }    }

   if(foundIt){         cout<<"It is a city";     }

   else{         cout<<"Not a city";     }

Explanation:

Required

Complete the pre-written code in C++ (as indicated by the file name)

The pre-written code; though missing in this question, can be found online.

The explanation of the added lines of code is as follows:

This iterates through the array

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

This checks if the city exists in the array

     if(inCity == citiesInMichigan[i]){

If yes, foundIt is updated to true

         foundIt = true;

And the loop is exited

         break;       }    } -- The loop ends here

If foundIt is true, print it is a city

   if(foundIt){         cout<<"It is a city";     }

Print not a city, if otherwise

   else{         cout<<"Not a city";     }

// MichiganCities.cpp - This program prints a message for invalid cities in Michigan.// Input: Interactive// Output: Error message or nothing#include <iostream>#include <string>using namespace std;int main(){ // Declare variables string inCity; // name of city to look up in array const int NUM_CITIES = 10; // Initialized array of cities string citiesInMichigan[] = {"Acme", "Albion", "Detroit", "Watervliet", "Coloma", "Saginaw", "Richland", "Glenn", "Midland", "Brooklyn"}; bool foundIt = false; // Flag variable int x; // Loop control variable // Get user input cout << "Enter name of city: "; cin >> inCity; // Write your loop here for (x = 0; x < NUM_CITIES; x++) { // Write your test statement here to see if there is // a match. Set the flag to true if city is found. if (inCity == citiesInMichigan[x]) { foundIt = true; cout << "City found." << endl; break; } else { foundIt = false; } } // Test to see if city was not found to determine if // "Not a city in Michigan" message should be printed. if (!foundIt) { cout << "Not a city in Michigan." << endl; } return 0; } // End of main()

The are two schools of ____________ are Symmetry and Asymmetry.

Answers

The two schools of design that encompass symmetry and asymmetry are known as symmetrical design and asymmetrical design.

Symmetrical design is characterized by the balanced distribution of visual elements on either side of a central axis. It follows a mirror-like reflection, where the elements on one side are replicated on the other side, creating a sense of equilibrium and harmony.

Symmetrical designs often evoke a sense of formality, stability, and order.

On the other hand, asymmetrical design embraces a more dynamic and informal approach. It involves the intentional placement of visual elements in an unbalanced manner, without strict adherence to a central axis.

Asymmetrical designs strive for a sense of visual interest and tension through the careful juxtaposition of elements with varying sizes, shapes, colors, and textures.

They create a more energetic and vibrant visual experience.

Both symmetrical and asymmetrical design approaches have their merits and are employed in various contexts. Symmetry is often used in formal settings, such as architecture, classical art, and traditional graphic design, to convey a sense of elegance and tradition.

Asymmetry, on the other hand, is commonly found in contemporary design, modern art, and advertising, where it adds a sense of dynamism and creativity.

In conclusion, the schools of symmetry and asymmetry represent distinct design approaches, with symmetrical design emphasizing balance and order, while asymmetrical design embraces a more dynamic and unbalanced aesthetic.

For more such questions on symmetry,click on

https://brainly.com/question/31547649

#SPJ8

1. The jargon for navigating on the Internet is called: A. surfing B. selecting C. clicking D. analyzing​

Answers

Answer:

A. surfing

Explanation:

Browsing the internet is known as surfing the internet.

Edhisive 3.5 code practice

Answers

Answer:

x = int(input("What grade are you in? "))

if (x == 9):

   print ("Freshman")

elif (x == 10):

   print("Sophomore")

elif (x == 11):

   print ("Junior")

elif (x == 12):

   print("Senior")

else:

   print ("Not in High School")

Explanation:

The 0-1 knapsack problem is the following. A thief robbing a store finds n items. The ith item is worth vi dollars and weighs wi pounds, where vi and wi are integers. The thief wants to take as valuable a load as possible, but he can carry at most W pounds in his knapsack, for some integer W . Which items should he take?

Answers

Step by step Explanation:

Based on what we could deduce from the above statement, the items he should take are:

must either take one single item or must leave the other behind,and only a whole amount of an item must be taken,in which an item cannot be taken more than once into his knapsack.

Hence, the thief needs to carefully determine items with an optimal value which still falls within his specified weight (W).

In this exercise, we examine how pipelining affects the clock cycle time of the processor. Problems in this exercise assume that individual stages of the datapath have the following latencies:
IF ID EX MEM WB
250ps 350ps 150ps 300ps 200ps
Also, assume that instructions executed by the processor are broken down as follows:
alu beq sw sw
45% 20% 20% 15%
1. What is the clock cycle time in a pipelined and non-pipelined processor?
2. What is the total latency of an LW instruction in a pipelined and non-pipelined processor?
3. If we can split one stage of the pipelined datapath into two new stages, each with half the latency of the original stage, which stage would you split and what is the new clock cycle time of the processor?
4. Assuming there was are no stalls or hazards, what is the utilization of the data memory?
5. Assuming there are no stalls or hazards, what is the utilization of the write-register port of the "Registers" unit?
6. Instead of a single-cycle organization, we can use a multi-cycle organization where each instruction takes multiple cycles but one instruction finishes before another is fetched. In this organization, an instruction only goes through stages it actually needs (e.g., ST only takes 4 cycles because it does not need the WB stage). Compare clock cycle times and execution times with single-cycle, multi-cycle, and pipelined organization

Answers

The clock cycle time in a pipelined and non-pipelined processor will be 350ps and 1250ps respectively.

1. The clock cycle time in a pipelined processor will be the slowest instruction decode which is 350ps. The clock cycle time in a non-pipelined processor will be:

= 250 + 350 + 150 + 300 + 200

= 1250ps

2. The total latency of an LW instruction in a pipelined processor will be:

= 5 × 350 = 1750ps.

The total latency of an LW instruction in a non-pipelined processor will be:

= 250 + 350 + 150 + 300 + 200

= 1250ps

3. Based on the information asked, the stage to be split will be the cycle time. Now, the new cycle time will be based on the longest stage which will be 300ps.

4. It should be noted that the store and load instruction is used for the utilization of memory. The load instruction is 20% of the time while the store instruction is 15% of the time. Therefore, the utilization of data memory will be:

= 20% + 15% = 35%

5. The utilization of the write-register port of the "Registers" unit will be:

= 20% + 45% = 65%

6. The multi cycle execution time will be:

= (5 × 20%) + [4 × (45% + 20% + 15%)]

= (5 × 0.2) + (4 × 0.8)

= 1 + 3.2

= 4.2

The single cycle execution time will be:

= Cycle time non-pipeline / Cycle time pipeline

= 1250/350

= 3.5

Read related link on:

https://brainly.com/question/25231696

I would like assistance on writing a c++ program without using double. Thank you

I would like assistance on writing a c++ program without using double. Thank you
I would like assistance on writing a c++ program without using double. Thank you

Answers

Here is the corrected code:

function convertTime() {

let hours, minutes, ampm;

let military = prompt("Enter military time (hh:mm):");

// Verify input is a valid military time

if (!/^\d{2}:\d{2}$/.test(military)) {

  alert(military + " is not a valid time.");

  return;

}

// Parse hours and minutes

hours = parseInt(military.split(":")[0]);

minutes = parseInt(military.split(":")[1]);

// Convert to 12-hour format

if (hours == 0) {

  hours = 12;

  ampm = "AM";

} else if (hours < 12) {

  ampm = "AM";

} else if (hours == 12) {

  ampm = "PM";

} else {

  hours = hours - 12;

  ampm = "PM";

}

// Output the converted time

let standard = hours.toString().padStart(2, "0") + ":" + minutes.toString().padStart(2, "0") + " " + ampm;

alert("Standard time: " + standard);

// Ask if the user wants to convert another time

let repeat = prompt("Would you like to convert another time? (y/n)").toLowerCase();

if (repeat == "y") {

  convertTime();

}

}

convertTime();

what is the difference between a know simple and a simple query ? ​

Answers

A know simple governs the process of actual methodology on the SQL. While a simple query deals with a query that significantly searches using just one parameter.

What are the two different types of queries in SQL?

The two different types of queries present in the SQL database may include a simple query and a complex query. A simple query contains a single database table. While a complex query can be constructed on more than one base table.

According to the context of this question, a known query represents the simple facts and understanding in all prospectives. While a simple query deals with a simple and single database table specific to its structure and functions.

Therefore, a know simple governs the process of actual methodology on the SQL. While a simple query deals with a query that significantly searches using just one parameter.

To learn more about SQL queries, refer to the link:

https://brainly.com/question/25694408

#SPJ1

What is a new option in PowerPoint 2016 that provides the ability to add multiple pictures into a slide, complete with transitions and captions?

Screenshot feature
Photo Album feature
Online Pictures command
Format command

Answers

Answer:

B

Explanation:

Photo Album feature s a new option in PowerPoint 2016 that provides the ability to add multiple pictures into a slide.

What is Photo album feature?

Slideshows are excellent for many types of presentations than simply professional ones. To make a memorable performance, use Microsoft PowerPoint to make a photo album and add music or visual effects.

Let's look at how to construct a photo book in PowerPoint for personal presentations of special occasions like weddings and anniversaries or even slideshows for organizations where the major focus is photographs.

Open PowerPoint and either start from scratch or use an existing presentation. PowerPoint automatically adds the photo album to a new slideshow when you create it.

Therefore, Photo Album feature s a new option in PowerPoint 2016 that provides the ability to add multiple pictures into a slide.

To learn more about Photo album feature, refer to the link:

https://brainly.com/question/20719259

#SPJ3

Write a pseudocode that receives a positive number from the user, and then,
starts printing and keep printing the word “CS” until the number of the printings matches the received number from the user.
b-) Write an algorithm for the same problem. c-) Draw a flowchart for the same problem.

Please help me

Answers

Algorithm, pseudocodes and flowcharts are used as prototypes for a complete program.

The pseudocode is as follows:

input n

for i = 1 to n

  print("CS")

The algorithm is as follows:

1. Begin

2. Input number

3. For 1 = 1 to number

3.1     Display "CS"

4. End For

5. Stop

The following explanation of  the pseudocode can be used for algorithms and flowcharts

This gets an integer input from the user (the integer represents the number of times to print "CS")

input n

This is repeated n times

for i = 1 to n

This prints "CS" in each iteration

  print("CS")

See attachment for flowchart

Read more about algorithm, pseudocodes and flowcharts at:

https://brainly.com/question/21172316

 Write a pseudocode that receives a positive number from the user, and then,starts printing and keep

shows a document in its final form: ____ shows a document in its first form.
Final; Original Markup
Original; No Markup
Final Markup: No Markup
No Markup: Original

Answers

Answer:

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

Explanation:

This question is about a feature in Word processing software such as ms word. This feature is related to review the document. While reviewing the document, you can keep the track of changes in the document.

There are different options available to show the markup or not.

If you want to show a document in its final form then you need to select No Markup.

If you want to show a document in its first form then you need to select Original.

So, the correct answer is:

No Markup: Original

You can find these functionalities in Ms word going through the Review tab, then under the Tracking group, and then select these options from Track changes drop down menu.

Which of these is a correct example of the creation of a list in Python? A. names = [“James”, “Omar”, “Hazel”, “Lee”, “Mia”] B. names = (“James”, “Omar”, “Hazel”, “Lee”, “Mia”) C. list[names] = [“James”, “Omar”, “Hazel”, “Lee”, “Mia”] D. list(names) = (“James”, “Omar”, “Hazel”, “Lee”, “Mia”)

Answers

Answer:

A.

The round brackets () are called tuples. Tuples are another way of storing data, and are slightly different from lists.

Lists are changeable.

Tuples are not changeable outside their codeline.

which of the following was not identified as a reason that iot (internet of thing) security should be a concern?

Answers

Answer:

please give the following

Explanation:

you can either update the question or post a new one

please help me please help me.​

please help me please help me.

Answers

Answer:

dont know man thanks for points tho

but it is 209

Explanation:

.Which column is the best candidate for an index from the syntax below?
Missing _________________ affects the restore process and makes you unable to restore all the remaining backup file. Please consider a weekly full backup, a daily differential backup and hourly log backup.

(Please consider the SELECTIVITY OF AN INDEX).
select I-id, I-name, I-city, I-salary
from Instructors
where I-city = 'Houston'
order by I-id(1 Point)

Answers

In the given syntax, the column "I-city" in the "where" clause is the best candidate for an index.

What is the explanation for the above response?

The selectivity of an index refers to the percentage of rows in the table that match a specific value in the indexed column. Since the query filters by the value of the "I-city" column, creating an index on this column would improve the query's performance by allowing the database to quickly locate and retrieve the matching rows.

In this case, if a significant portion of the Instructors table has a "Houston" value in the "I-city" column, creating an index on this column would result in a high selectivity, making it a good candidate for indexing.

Learn more about syntax at:

https://brainly.com/question/10053474

#SPJ1

A backup operator wants to perform a backup to enhance the RTO and RPO in a highly time- and storage-efficient way that has no impact on production systems. Which of the following backup types should the operator use?
A. Tape
B. Full
C. Image
D. Snapshot

Answers

In this scenario, the backup operator should consider using the option D-"Snapshot" backup type.

A snapshot backup captures the state and data of a system or storage device at a specific point in time, without interrupting or impacting the production systems.

Snapshots are highly time- and storage-efficient because they only store the changes made since the last snapshot, rather than creating a complete copy of all data.

This significantly reduces the amount of storage space required and minimizes the backup window.

Moreover, snapshots provide an enhanced Recovery Time Objective (RTO) and Recovery Point Objective (RPO) as they can be quickly restored to the exact point in time when the snapshot was taken.

This allows for efficient recovery in case of data loss or system failure, ensuring minimal downtime and data loss.

Therefore, to achieve a highly time- and storage-efficient backup solution with no impact on production systems, the backup operator should utilize the "Snapshot" backup type.

For more questions on Recovery Time Objective, click on:

https://brainly.com/question/31844116

#SPJ8

A ______ can hold a sequence of characters such as a name.

Answers

A string can hold a sequence of characters, such as a name.

What is a string?

A string is frequently implemented as an array data structure of bytes (or words) that records a sequence of elements, typically characters, using some character encoding. A string is typically thought of as a data type. Data types that are character strings are the most popular.

Any string of letters, numerals, punctuation, and other recognized characters can be stored in them. Mailing addresses, names, and descriptions are examples of common character strings.

Therefore, a string is capable of storing a group of characters, such as a name.

To learn more about string, refer to the link:

https://brainly.com/question/17091706

#SPJ9

special purpose computer​

Answers

Answer:

Special-purpose computers are designed for one specific task or class of tasks and wouldn't be able to perform general computing tasks. For example, a router is a special-purpose computer designed to move data around a network, while a general-purpose computer can be used for this task, as well as many others.

Mối quan hệ giữa đối tượng và lớp
1. Lớp có trước, đối tượng có sau, đối tượng là thành phần của lớp
2. Lớp là tập hợp các đối tượng có cùng kiểu dữ liệu nhưng khác nhau về các phương thức
3. Đối tượng là thể hiện của lớp, một lớp có nhiều đối tượng cùng thành phần cấu trúc
4. Đối tượng đại diện cho lớp, mỗi lớp chỉ có một đối tượng

Answers

Answer:

please write in english i cannot understand

Explanation:

Which properties of the word "readability” changed?

Answers

The properties of the word "readability” that has changed are;

Its caseIts  colorIts  sizeIts style

What is readability?

The term readability is known to be the ease that any given reader do feel when they are said to understand any kind of written text.

Note that In natural language, the readability of text is one that is based on its content as well as the presentation and it entails its font size, line height, character spacing, and others.

Note that it also entails:

The Speed of perceptionIts Visibility, etc.

Therefore, The properties of the word "readability” that has changed are;

Its caseIts  colorIts  sizeIts style

Learn more about readability from

https://brainly.com/question/3923453

#SPJ1

pls help now the question is very hard someone help me pls​

pls help now the question is very hard someone help me pls

Answers

Answer:

The answers are "Option a, Option b, Option d, and Option c".

Explanation:

The Traceroute utilizes the "Internet Control Message Protocol" for transmit and receive echo-request and echo-reply messages. This is most often used in the echo packets of specified interval to live (TTL) quantities.The Transport layer will be the next but is usually directly linked with the same name layer in the OSI model. Functions involve message fragmentation, acknowledgment, traffic management, session parallelization, error detection, as well as message rearranging.Leaders generally fully involve one or even more workers in design buildings.67 was its UDP port number which is used as the port number of a database. So although UDP port number 68 is being used by the client.

Write a program that prints the square of the product. Prompt for and read three integer values and print the square of the product of all the three integers.

Answers

Answer:

ok

Explanation:

aprogram that prints the square of the product. Prompt for and read three integer values and print the square of the product of all the three integers. is written below

a program that prints the square of the product. Prompt for and read three integer values and print the square of the product of all the three integers.

Research the disadvantages of the computer and explain them.​

Answers

Answer:

Too much sitting-affects the back and makes our muscles tight

Carpal tunnel and eye strain-moving your hand from your keyboard to a mouse and typing are all repetitive and can cause injuries

Short attention span and too much multitasking-As you use a computer and the Internet and get immediate answers to your questions and requests, you become accustomed to getting that quick dopamine fix. You can become easily frustrated when something doesn't work or is not answered in a timely matter.

Point out the correct statement:_____.
a. A virtual machine is a computer that is walled off from the physical computer that the virtual machineis running on
b. Virtual machines provide the capability of running multiple machine instances, each with their own operating system
c. The downside of virtual machine technologies is that having resources indirectly addressed means there is some level of overhead
d. All of the mentioned

Answers

Answer:

b. Virtual machines provide the capability of running multiple machine instances, each with their own operating system

Explanation:

A VM ware is a virtual machine that is designed to run, test, and optimize operating system software. It's an emulation program that is set for running and supporting multiple OS within the single host operating system. The virtual system offers similar hardware and software tools that are present in a system virtually.

a painting company has determined that for every 112 square feet of wall space, one gallon of paint and eight hours of labor will be required. the company charges $35.00 per hour for labor. write a program that asks the user to enter the square feet of wall space to be painted and the price of the paint per gallon. the program should display the following data: The number of gallons of paint required
The hours of labor required
The cost of the paint
The labor charges
The total cost of the paint job
Finally it returns the total cost to the calling program
Write the main() function that prompts the user to enter area of wall space to be painted and the price of a paint gallon. The main function then calls compute_cost() function to compute the cost and prints the total cos.
Make sure it is in python program

Answers

A method of notation for creating computer programmes is known as a programming language. The majority of programming languages are formal text-based languages.

What is programming ?Writing code to support certain activities in a computer, application, or software programme and giving them instructions on how to do is known as computer programming.Orthogonality or simplicity, available control structures, data types, and data structures, syntactic design, support for abstraction, expressiveness, type equivalence, strong versus weak type checking, exception handling, and limited aliasing are among the characteristics of a programming language

def main():

   # Ask for the square footage of wall space to be painted.

   square_footage = input('Enter the number of square feet to be painted: ')  

   price_gallon = input('Enter the price of the paint per gallon: ')

   estimate(square_footage, price_gallon)

def estimate(square_footage, price_gallon):

   num_gallons = square_footage/115

   hours_labor = num_gallons * 8

   total_price_gallon = num_gallons * price_gallon

   total_labor = hours_labor * 20

   final_total = total_price_gallon + total_labor

   print 'The total estimated price for this paint job is $', final_total

main()

To learn more about programming language refer :

brainly.com/question/16936315

#SPJ4

Other Questions
with aec the area of interest must be placed directly over the selected detectors in order to avoid two of the following hellpppp. meeeee plesse HELP NEEDED ASAP/NOW......NO LINKS AND NO JOKING PLSAUBSERD ANSWERS WILL BE REPORTED accrued wages of $10,600. Ind cate the effect of the errors on (a) revenues, (b) expenses, and (c) net income for the year ended August 31 . Feedoack - Check My Work expenses not recorded. The difference would be the effect on net income. Effects of Errors on Adjusted Trial Balance For each of the foliowing errors, considered individually, indicate whether the error would cause the adjusted trial balance totals to be uniequal, If the error would cause the: adjusted trial balance totals to be unequal, indicate whether the debit or credit total is higher and by how much. a. The adjustment for accrued wages of $6,900 was journalized as a debit to Wages Expense for $6,900 and a credit to Accounts Payable for $6,900. Enter the difference between the debik and credit totals. If the totals are equal, enter a zero. 1 b. The entry for $1,519 of supplies used during the period was journalized as a debit to Supplies Expense of $1,519 and a credit to Supplies of $1,591. Enter the difference between the debit and credit totals. If the totals are equal, enter a zero. 1 SL SAYILARMATEMATIK343 Bir ton atik kait geri dnOstogonde 16aac kurtarr.Buna gre 2 ton atik kadn geri dnmsalandnda ka tane aga kurtanm olur? acil lazm \begin{cases}b(1)=16\\\\ b(n)=b(n-1)+1 \end{cases} b(1)=16 b(n)=b(n1)+1 Find the 2^{\text{nd}}2 nd 2, start superscript, start text, n, d, end text, end superscript term in the sequence. Given the function -x^2 + x + 6 what is the horizontal distance between zeros? Little help pls. I dont know the answer Stephanie collected data about the high temperature in her city for 7 days in a row. The high tempertures for the 7 days were 70, 78, 85, 73, 65, 78, and 89. She made the following graph to show her data.She says the temperature in her city is pretty consistent. How could she redraw the graph so that the daily temperture doesn't seem quite so consistent? An array A has a base address of 2000. A[0] is thus at address 2000. What is the address of A[1]?(a) 2000(b) 2001(c) 2004 A bank offers a CD that pays a simple interest rate of 7.0%. How much must you put in this CD now in order to have $4500 for a home-entertainment center in 5 years.The present value that must be invested to get $4500 after 5 years at an interest rate of 7.0% is $__ (Round up to the nearest cent.) write the definition of the function delete vector duplicates() that passes an stl vector of type int. the function deletes all duplicates. assumption: the vector has at least two elements. Which of the following requires frequent safety and health inspections What are questions a researcher seeks to answer in the study of consumer behavior. More than one answer may be correct. taxpayers with a(n) tax liability in the previous year or whose tax payable after subtracting their withholding amounts is less than $ are not subject to underpayment penalties. decisions should reflect the costs, rather than just the costs. group of answer choices financial; marginal opportunity; nonfinancial opportunity; financial nonfinancial; financial Please help me!!!!!! Use the net to find the size of the base and the height of each triangular face of this square pyramid. Spiders, ticks, horseshoe crabs, and scorpions all have a pair of claw-like appendages near their mouths used for feeding, defense, movement, and/or sensory reception. What are these appendages called?. communication challenges reduce and increase in a team. in cultures, team members use direct communication, while in cultures, members use indirect communication. accents and fluency can lead to misunderstandings and frustration and influence perceptions of