what is the full form of BASIC​

Answers

Answer 1

Answer:

BASIC, in fullBeginner's All-purpose Symbolic Instruction Code, computer programming language developed by John G.


Related Questions

what is the importance of knowing and following a step /steps of the personal computer disassembly

Answers

So that in case of emergency caomeone spills food or liquid you know what precautions to take

Answer:

emergency pils at a doctor

What is this passage mostly
about?
Working together can help people
tackle difficult problems.
Giving a speech to the United Nations
can be challenging.
Learning about climate change begins
in school.
Collecting information can help set
new goals.

What is this passage mostlyabout?Working together can help peopletackle difficult problems.Giving a speech

Answers

Answer:

working together can help people tackle difficult problems.

Explanation:

I did the Iready quiz.

Do threads share stack pointers?

Answers

Yes, threads share the same stack pointers. In a multi-threaded program, each thread has its own set of registers and program counters, but they all share the same stack.

This is because the stack is used to store function parameters, local variables, and return addresses for each thread, and these values need to be accessed by all threads in the program. Pointers can be used to keep track of the stack location for each thread, but the actual stack memory is shared. Threads within a single process share most of their resources, but each thread has its own stack and stack pointer. The stack is used for storing local variables and function call information, while the stack pointer keeps track of the current position within the stack. Since each thread has its own execution context, separate stacks and stack pointers are necessary to maintain the proper flow of each thread's execution.

Learn more about variables here-

https://brainly.com/question/17344045

#SPJ11

what are the seven layers in the osi protocol stack?

Answers

The connections between computing systems are divided into seven distinct abstraction levels in the OSI reference model: Physical, Data Link, Network, Transport, Session, Presentation, & Application.

What does the OSI model's seventh layer look like?

Applications are the sole focus of Layer 7, also referred to as the application layer, in the OSI reference model. Layer 7 is in charge of presenting data and graphics to the user in an understandable fashion given this confined context. This allows users to interact with the presentation layer, which is a layer below the application level.

Why does the OSI model include seven layers?

The fundamental tenet of OSI is that there are seven different levels or categories of linked functions that can be used to classify how two endpoints in a network communicate with one another. Any user or program using a device capable of supporting those seven functional tiers is communicating.

Learn more about OSI reference model: https://brainly.com/question/27606450

#SPJ4

read and choose the correct option. the airport has large windows. what do the windows allow people to do as they wait for their flight?

Answers

The question asks about the purpose of the large windows in an airport.

The large windows in an airport allow people to do various things as they wait for their flight. They can enjoy the natural light and view of the outside, watch planes take off and land, and people-watch. The windows also provide a sense of openness and spaciousness in the airport.

In conclusion, the large windows in an airport serve multiple purposes, including providing natural light, views, and a sense of openness. They allow people to relax and pass the time while waiting for their flight.

To learn more about airport, visit:

https://brainly.com/question/2091004

#SPJ11

Which of the following is NOT an agent of Socialization?
A. Your family
B. Kim Kardashian
C. Police officer
D. Your teacher
E. Your friends

Answers

C

is the answer you know why because it is okay I love you by the way

Answer:

C. Police officers

Why?

because they deal with people badly.

What does Snap do?

enables you to create a shortcut to a program, document, or file
enables you to temporarily hide all open windows and view the desktop
enables you to close all windows but the one you’re viewing
enables you to resize open windows

Answers

Answer:

Snap enables you to resize open windows,

Explanation:

Snap enables you to resize open windows, It is convenient when you want to see two windows simultaneously (side by side).

To do this, drag the desired window the left\right until the cursor reaches to the edge of the screen and then release the mouse.

The window will snap into place.

Wesellyoubuy, a consumer electronics company, received consumer complaints about its employees not being able to communicate with consumers properly. After investigating the prime reason behind these complaints, the management found that the consumer service employees were following the same strategy to address all types of consumer issues. The management immediately started a new training program for the consumer service employees where they were trained to respond to every possible query a consumer might have. Eventually, their service ratings and sales showed improvement. In this scenario, the consumer service team improved _____.

Answers

Answer:

customer satisfaction

Explanation:

The consumer electronics company started a new training program for the consumer service employees as the company found that the consumer service employees were following the same strategy to address all types of consumer issues due to which they were not able to communicate with consumers properly.

This leads to improvement in service ratings and sales.

In this scenario, the consumer service team improved customer satisfaction

he heap allows you to create dynamic arrays, and wait until runtime to decide how many elements are needed, unlike the static arrays which are built into the c++ language. in fact, the heap is what the vector and string classes use to allow them to expand as the user adds

Answers

The heap is a memory region in C++ that allows for the creation of dynamic arrays. Unlike static arrays, which have a fixed size determined at compile time, dynamic arrays on the heap can be allocated and resized during runtime.

The heap is utilized by classes like vector and string in C++, enabling them to dynamically expand as elements are added by the user. This flexibility in size makes the heap an essential feature for managing data structures that require variable or growing sizes, providing more flexibility and efficiency in memory allocation.

In C++, the heap is a region of memory that can be dynamically allocated and deallocated using the `new` and `delete` operators. It allows for the creation of dynamic arrays, which can have their size determined at runtime rather than compile time. This provides a great advantage over static arrays, as it allows programs to handle varying amounts of data and adapt to changing requirements.

The heap is particularly useful in data structures such as vectors and strings. The vector class, for example, uses the heap to dynamically allocate memory for its underlying array. As the user adds elements to the vector, it can dynamically resize the array on the heap to accommodate the growing size. Similarly, the string class uses the heap to store variable-length strings, allowing them to expand or contract as needed.

By utilizing the heap, dynamic data structures like vectors and strings can efficiently manage memory, allocate resources as required, and adapt to changing data sizes. This flexibility enables programmers to handle a wide range of scenarios and optimize memory usage by allocating only the necessary amount of memory at any given time.

To learn more about dynamic arrays: -brainly.com/question/33636506

#SPJ11

What's the difference between git merge and git rebase?

Answers

Git merge creates a new commit that joins the histories of the two branches, while git rebase rewrites the project history by creating new commits based on the latest commit of the source branch.

Git merge takes the changes from one branch and applies them to another, creating a new merge commit that has two parent commits. Git rebase, on the other hand, takes the changes from one branch and replays them on top of another, creating a linear history without merge commits.

This can make the history cleaner and easier to follow, but it can also create conflicts if there are overlapping changes. It's important to understand the differences between these two commands and choose the one that is best for your workflow and project needs.

Learn more about merge https://brainly.com/question/30585647

#SPJ11

Write an LMC program as follows instructions:
A) User to input a number (n)
B) Already store a number 113
C) Output number 113 in n times such as n=2, show 113
113.
D) add a comment with a details exp

Answers

The LMC program takes an input number (n) from the user, stores the number 113 in memory, and then outputs the number 113 n times.

The LMC program can be written as follows:

sql

Copy code

INP

STA 113

INP

LDA 113

OUT

SUB ONE

BRP LOOP

HLT

ONE DAT 1

Explanation:

A) The "INP" instruction is used to take input from the user and store it in the accumulator.

B) The "STA" instruction is used to store the number 113 in memory location 113.

C) The "INP" instruction is used to take input from the user again.

D) The "LDA" instruction loads the value from memory location 113 into the accumulator.

E) The "OUT" instruction outputs the value in the accumulator.

F) The "SUB" instruction subtracts 1 from the value in the accumulator.

G) The "BRP" instruction branches back to the "LOOP" label if the result of the subtraction is positive or zero.

H) The "HLT" instruction halts the program.

I) The "ONE" instruction defines a data value of 1.

The LMC program takes an input number (n) from the user, stores the number 113 in memory, and then outputs the number 113 n times.

To know more about LMC program visit :

https://brainly.com/question/14532071

#SPJ11

¿A que nivel crees que llegará la tecnología dentro de 100 años, impactando de manera positiva y negativa a la humanidad?

Answers

Answer:

Personalmente, creo que dentro de 100 años, es decir, en el primer cuarto de los 2100s, la tecnología habrá llegado a un punto en el cual se habrán automatizado todos los procesos productivos y de elaboración de bienes y servicios, con lo cual el esfuerzo físico humano será prácticamente nulo en términos de producción económica, reservándose el mismo sólo a efectos de prácticas ociosas. De esta manera, se hará aun mas rápido el sistema productivo, lo que generará mayor abundancia de bienes, reduciendo el hambre y la pobreza, pero a costa de que muchas personas queden sin empleo.

A su vez, la automatización y digitalización de la vida diaria generará mayores problemas de salud en las personas, dado que generará menos cantidad de esfuerzo físico, aumentando el sedentarismo y sus problemas conexos como la obesidad, enfermedades respiratorias y cardíacas, etc.

Steps in saving an excel work book

Answers

Question

Steps in saving an excel work book

꧁༒Answer༒꧂

1.Click File > Save as

2.Under save as, pick place where

you want to save your workbook.

3.click browse to find the location you

want in your documents folder.

4.in the file name box, enter a name for a

new workbook.

5.To save your workbook in a different

file format(like.

6.Click save

which tool is used to terminate cables into a 66-block

Answers

Answer: Circuit pairs are connected to the block with a punch-down tool by terminating the tip wire on the leftmost slot of one row and ring wire on the leftmost slot of the row beneath the mating tip wire.

Web services that help people meet, interact, and share content with other people online are called ____________.

Answers

Web services that help individuals meet, interact, and share content with other individuals online are called social networking services.

A social networking service or SNS is an online platform that people use to build social relationships or social networks with other people who share similar interests, content, activities, backgrounds, or real-life connections. People who use social networking services create a profile with personal information and photo and build connections with other profiles.

Popular social networking sites are Fa-cebook, Tw-itter, Ins-tagram, and TikTok. These sites enable people to maintain social connections, stay informed, as well as access and share a wealth of information.

You can learn more about social networking service at

https://brainly.com/question/21106318

#SPJ4

The following situation uses a robot in a grid of squares. The robot is represented by a triangle which is initially in the top right square and facing left. The robot may not travel through the black squares.

Answers

The robot can start by moving one square to the left. Since it is facing left, it can then move forward two squares. Since it is blocked from moving left, it can move down one square and then move left two squares. Finally, it can move forward two squares, ending in the bottom left square.

What is a robot?

A robot is an artificial machine capable of performing complex tasks, such as those of a human. They are often equipped with sensors, motors, and computer hardware, and are programmed to execute a set of instructions or commands. Robots are used for a variety of purposes, such as manufacturing, medical care, transportation, cleaning, and even entertainment. They can be used to automate repetitive and tedious tasks, freeing up humans to focus on more important tasks.

The robot starts in the top right square and is facing left. It can move one square to the left, then move two squares forward since it is facing left. It can then move down one square and left two squares since it is blocked from moving left. Finally, it can move two squares forward to end in the bottom left square.

To learn more about robot
https://brainly.com/question/13515748
#SPJ4

Is our world better or
worse because of
digital representation?

Answers

Answer:

is better cuz with digital representation u get to learn more when u use them

Can someone write this on a piece of paper for me please

Can someone write this on a piece of paper for me please

Answers

Written includes handwritten, typewritten, printed, lithographed, photographed, telexed, telefaxed, and any other alternative for writing, whether electronic or not, or a combination of both.

What mean in writing?

A pen, pencil, or other instrument is used to etch or inscribe (characters, letters, words, etc.) on something's surface. Name-dropping is encouraged. giving a written account of; expressing or corresponding in writing; She expressed her gratitude via letter for our kindness.

Anything that is "in writing" may be expressed verbally, printed, lithographed, photographed, telexed, telefaxed, or represented in any other form, whether electronically or otherwise, or in some combination of all of these ways.

Good writing exhibits efficient organisation or structure. The writer's organisation of the ideas in this text and the way she moves from one to the next feel natural. Sentences written with sentence fluency feel organic, effortless, and expressive.

To learn more about writing refer to:

https://brainly.com/question/1643608

#SPJ1

Write a method that takes a RegularPolygon as a parameter, sets its number of sides to a random integer between 10 and 20 inclusive, and sets its side length to a random decimal number greater than or equal to 5 and less than 12. Use Math.random() to generate random numbers.


This method must be called randomize() and it must take an RegularPolygon parameter.


Could someone help me out here thanks! C:

Answers

Answer:

public static void randomize(RegularPolygon r){

   int side = (int)((20-10) * Math.random()) + 10;

   int length = (int)((12-5)  * Math.random()) + 5;

   // assuming the regularpolygon class has setSide and setLength methods.

   r.set.Side(side);

   r.setLength(length);

}

Explanation:

The randomize method is used to access and change the state of the RegularPolygon class attributes sides and length. The method accepts the class as an argument and assigns a random number of sides and length to the polygon object.

You connect your computer to a wireless network available at the local library. You find that you can access all of the websites you want on the internet except for two. What might be causing the problem?

Answers

Answer:

There must be a  proxy server that is not allowing access to websites

Explanation:

A wireless network facility provided in colleges, institutions, or libraries is secured with a proxy server to filter websites so that users can use the network facility for a definite purpose. Thus, that proxy server is not allowing access to all of the websites to the user on the internet except for two.

what is a turnaround documents.

A a letter
B a newspaper
C a machine readable document
D verify accuracy of information ​

Answers

Answer:

D

Explanation:

A turnaround document is a computer-generated form that is sent to a third party, who is supposed to fill in the document and return it to the issuer. The information on the form is then used as the basis for data entry back into the computer system.

Create a database named “InventoryManagementSystem.odb” in Open Office Base and then create the above tables and perform the following operations:

i) For ITEM_DETAILS table, set ITEM_ID as the primary key and VENDOR_ID as the foreign key (referencing to VENDOR table).

ii) Set VENDOR_ID as the primary key of VENDOR table.

iii) Set a composite primary key (ITEM_ID, CUSTOMER_ID, SOLD_DATE) for SELLING_DETAILS table; ITEM_ID and CUSTOMER_ID as the foreign keys.

iv) Set CUSTOMER_ID as the primary key of CUSTOMER table.

v) Write a query to display the ITEM details where the Item name starts with the letter ‘S’.

vi) Write a query to find the maximum item quantity supplied by vendor “Yash”.

vii) Create forms and reports for all the tables in the database.



Please send screenshots of doing it in computer

Answers

Create a database called "InventoryManagementSystem.odb" in Open... I Make ITEM ID the main key for the ITEM DETAILS table and VENDOR ID the secondary key.

What is inventory management system?

Whether the stocked items are company assets, raw materials and supplies, or finished goods that are ready to be sent to vendors or end users, an inventory management system is the combination of technology (hardware and software), processes, and procedures that oversees the monitoring and maintenance of stocked items. What are the top three inventory control models? Economic Order Quantity (EOQ), Inventory Production Quantity, and ABC Analysis are three of the most well-liked inventory control approaches.

Know more about secondary visit:

https://brainly.com/question/336747

#SPJ1

what indicates a website of a university

Answers

Answer:

The domain suffix/TLD .edu is reserved for colleges and universities

Examples:

harvard.edu

stanford.edu

juilliard.edu

The tab in the Excel spreadsheet entitled "10YearMarketYield"
contains data on the market yield on US Treasury Securities at
10-year constant maturity. a. Make a time series plot of the data
b. Us

Answers

The tab in the Excel spreadsheet entitled "10YearMarketYield" contains data on the market yield on US Treasury Securities at 10-year constant maturity. To make a time series plot of the data.


Open the Excel spreadsheet and navigate to the "10YearMarketYield" tab. select the column containing the dates and the column containing the market yields. Click on the "Insert" tab in the Excel ribbon and choose the type of chart you want to create (e.g., line chart).

The resulting time series plot will show the changes in the market yield on US Treasury Securities over time. Each data point on the chart will represent a specific date and the corresponding yield value. The chart will be created, and you can customize it by adding titles, labels, and formatting options.

To know more about Excel spreadsheet visit :-

https://brainly.com/question/10541795

#SPJ11

I need help, i am coding this question i checked all the internet and i cant find method to move rectangle. Please help you dont have to code for me just explain to me. Thanks.
Its java language i want know how to move the box1 rectangle, the question is complete.
Now use the Rectangle class to complete the following tasks: - Create another object of the Rectangle class named box2 with a width of 100 and height of 50. Display the properties of box2. - Call the proper method to move box1 to a new location with x of 20, and y of 20. - Call the proper method to change box2's dimension to have a width of 50 and a height of 30. - Display the properties of box1 and box2. - Call the proper method to find the smallest intersection of box1 and box2 and store it in reference variable box3. - Calculate and display the area of box3. Hint: call proper methods to get the values of width and height of box3 before calculating the area. - Display the properties of box3.

Answers

In Java, we may utilize the Graphics/Graphics2D class's methods to draw a rectangle (outlines) onto the current graphics context: drawRect(int x, int y, int width, int height) (int x, int y, int width, int height) draw3DRect(int x, int y, int width, int height, boolean raised) (int x, int y, int width, int height, boolean raised) draw(Rectangle2D).

Rectangle rect1 = new Rectangle(100, 100, 200, 240); Rectangle rect2 = new Rectangle(120, 80, 80, 120); Rectangle intersection = rect1. intersection(rect2). Which method in the Rectangle class must be implemented in order for the main() function to produce the relevant output: public school public int height; public int width; rectangle public school void static public main (String[] args) rectangle = new RectangleO; System.

Learn more about Java here

https://brainly.com/question/12978370

#SPJ4

Pleaseee Help!!!!

What industry holds a significant place in the commercial phere of economies all over the world due to factors such as the growing variety of game hardware and peripheral devices, emerging markets, and increasingly diversified demographics?

A)The Medical software industry

B)The video game industry

C)The graphic artistry industry

D)The international travel industry

Answers

Answer: B
Hope this helps!!
And do you want an explanation?

Analysis tools that support viewing all or selected parts of data, querying the database, and generating reports include query-by-example as well as a specialized programming language called

Answers

Analysis tools such as query-by-example and a specialised programming language called SQL facilitate examining all or selected data, querying the database, and generating reports.

Data collection and analysis technologies are used to collect, evaluate, and present data for a range of applications and industries. They take unprocessed data and turn it into meaningful knowledge that businesses can use to make better choices. A data analyst may operate in a range of sectors, including operations, marketing, and finance. For instance, their findings might result in lower shipping costs. different viewpoints on consumer behaviour. Among the numerous types of data analysis tools, three categories stand out as particularly essential: Applications for Excel, R, Python, and business intelligence (BI).

Learn more about Analysis tools from

brainly.com/question/13994256

#SPJ4

Think of a binary communication channel. It carries two types of signals denoted as 0 and 1. The noise in the system occurs when a transmitted 0 is received as a 1 and a transmitted 1 is received as a 0. For a given channel, assume the probability of transmitted 0 correctly being received is 0.95 = P(R0 I T0) and the probability of transmitted 1 correctly being received is 0.90 = P(R1 I T1). Also, the probability of transmitting a 0 is 0.45= P(T0). If a signal is sent, determine the
a. Probability that a 1 is received, P(R1)
b. Probability that a 0 is received, P(R0)
c. Probability that a 1 was transmitted given that a 1 was received
d. Probability that a 0 was transmitted given that a 0 was received
e. Probability of an error

Answers

The probability that a 1 is received, P(R1), is 0.1.The probability that a 0 is received, P(R0), is 0.55.The probability that a 1 was transmitted given that a 1 was received is 0.8182 (approximately).The probability that a 0 was transmitted given that a 0 was received is 0.8936 (approximately).The probability of an error is 0.1564 (approximately).

In a binary communication channel, we are given the probabilities of correctly receiving a transmitted 0 and 1, as well as the probability of transmitting a 0.

a. To determine the probability of receiving a 1, we subtract the probability of receiving a 0 (0.45) from 1, resulting in P(R1) = 1 - P(R0) = 1 - 0.45 = 0.55.

b. To determine the probability of receiving a 0, we use the given probability of transmitted 0 correctly being received: P(R0 I T0) = 0.95. Since P(R0 I T0) is the complement of the error probability, we have P(R0) = 1 - P(error) = 1 - 0.05 = 0.55.

c. The probability that a 1 was transmitted given that a 1 was received is determined using Bayes' theorem: P(T1 I R1) = (P(R1 I T1) * P(T1)) / P(R1). Substituting the given values, we have P(T1 I R1) = (0.9 * 0.55) / 0.55 = 0.9.

d. Similarly, the probability that a 0 was transmitted given that a 0 was received is determined using Bayes' theorem: P(T0 I R0) = (P(R0 I T0) * P(T0)) / P(R0). Substituting the given values, we have P(T0 I R0) = (0.95 * 0.45) / 0.55 = 0.8936 (approximately).

e. The probability of an error is calculated as the sum of the probabilities of receiving the incorrect signal for both 0 and 1: P(error) = 1 - P(R0 I T0) + 1 - P(R1 I T1) = 1 - 0.95 + 1 - 0.9 = 0.05 + 0.1 = 0.1564 (approximately).

In summary, we determined the probabilities of receiving 1 and 0, the conditional probabilities of transmitted signals given the received signals, and the probability of an error for the given binary communication channel.

Learn more about Probability

brainly.com/question/31828911

#SPJ11

what property of virtualization allows entire virtual machines to be saved as file that can moved or copied like any other file?

Answers

The property of virtualization that allows entire virtual machines to be saved as file that can moved or copied like any other file is encapsulation.

What is property of virtualization?

Property of virtualization is a concept to create something virtual from of something, like opposite or different from physical version. Property of virtualization have many types, one of them is encapsulation.

Encapsulation is a type of property of virtualization with the concept of bundling data in one unit which makes it as easy to move or copy as a single unit as a file normally.

Learn more about property of virtualization here:

brainly.com/question/12972001

#SPJ4

Discuss the Autonomous Robots and Additive Manufacturing contribution to Smart Systems. Why are these two technologies are important for the Smart Systems? Explain the technologies with an example.

Answers

Autonomous robots and additive manufacturing are two crucial technologies that significantly contribute to Smart Systems. Autonomous robots, equipped with sensors, artificial intelligence, and navigation capabilities, can perform tasks with minimal human intervention. They enhance efficiency, safety, and flexibility in various industries. For example, in a smart warehouse, autonomous robots can navigate the facility, locate items, and autonomously pick, pack, and transport them, streamlining the order fulfillment process.

Additive manufacturing, also known as 3D printing, revolutionizes traditional manufacturing methods by constructing objects layer by layer. It enables rapid prototyping, customization, and on-demand production. For instance, in a smart healthcare system, additive manufacturing can be employed to produce personalized medical implants, such as customized prosthetics or dental implants, based on patient-specific requirements, resulting in improved patient outcomes and reduced lead times. Both technologies contribute to the advancement of Smart Systems by optimizing processes, enhancing productivity, and enabling customization in various industries.
Other Questions
1frogaroni please answer this 888888,1*9000. a)Write the equations of complete combustion of the following fuels with air. Calculate the stoichiometric air/fuel ratios.CH4b)Calculate the equivalence ratio for fuel, since an internal combustion engine was run with CH4, and the air/fuel ratio was measured as 18/1 as a result of the operation. from an ordinary deck of 52 cards, five cards are drawn randomly. what is the probability of drawing What is the best example of a Best, Worst, Most likely case?Select an answer:John journals each day to track his worst, best, and most common responses to people on his team. John scans his social media for only a few moments each day--just long enough to discover the worst, best, and mostcommon thread of conversation. John considers the worst, best, and most likely outcome to a scenario that is worrisome to him. John stands in line at the grocery and decides what the best, worst, and most likely reason is that the woman in front of himis yelling at her child unearned revenue should be reduced and revenue increased for the amount of revenue during the period. (enter only one word per blank.) 12c+2d=48g solve for d Jessica believes that she succeeds in high school because she works hard, earned a place on the basketball team because she practices constantly, and cooks well because she takes cooking classes. Julian Rotter would say that Jessica has ________. Group of answer choices An external strategic management audit (also known as external or industry analysis) focuses on identifying and evaluating trends and events beyond the control of a single company. Watch screenshot for details Amanda has completed 68 deliveries so far this week. She needs to make 85 deliveries for the week. What percentage of her deliveries has Amanda completed?0 A torque applied to a flywheel causes it to accelerate uniformly from a speed of 300 rev/min to a speed of 900 rev/min in 6 seconds. Determine the number of revolutions N through which the wheel turns during this interval. (Suggestion: Use revolutions and min- utes for units in your calculations.) In general, you want to enter the water with your BC: If the DNA codes is ACCGCG, which amino acids will be produced? A company requires a password to access a data storage vault. The password must be 4 characters long and maycontain digits and lowercase letters only.How many passwords are possible if characters can be repeated? Enter your answer as a number, like this: 425 An individual with savant syndrome is most likely to have:__________ Question 1 of 15During the migrations in the United States, well-paying jobs have been a:A. magnet factor.B. push factor.C. pull factor.OD. great attractor. The points X and Y have coordinates (0, 3) and (6, 11) respectively. XY is a chord of a circle C with centre Z, as shown in Figure 3. (a) Find the gradient of XY. Figure 3 The point M is the midpoint of XY (b) Find an equation for the line which passes through Z and M. Given that the y coordmate of Z is 10(c) find the x coordmate of Z(d) find the equation of the circle C, giving your answer in the form x + y + ax + by + c = 0 where a, b and care constants question d only rotected turn lanes are raised lines on the roadway that inform drivers they are reaching the edge of the roadway. What information is needed to predict local weather patterns?A. a larger sense of global weather patterns around the worldB. only information about local weather patterns and historyC. a combination of global weather patterns and regional weather patternsD. a combination of larger weather pattern observations and local weather knowledge which of the following works on behalf of authors to get their manuscripts before book industry members? a. literary agent b. acquisitions editor c. book rep d. editorial manager 2. who developed the printing press around the year 1440? a. da vinci b. gutenberg c. charlemagne d. marconi 3. books that are aimed at the general public are known as what kind of books? a. general interest b. professional c. mass market d. consumer 4. how many hardcover copies must a title sell to achieve best seller status? a. 100,000 b. 75,000 c. 200,000 d. 50,000 5. the book publishing industry is a. still dominated by many hundreds of small publishing companies b. characterized by a handful of companies that dominate the most lucrative areas of the business c. carefully regulated by government agencies that discourage conglomeration d. is not very profitable 6. chain bookstores a. include barnes