Explanation:
circle with radius and colour red
Answer:
x, y , radius , line width , color
Explanation:
type x in the first blank
then y in the second blank
then radius in the third
in the forth line width
then in the last one type color
Answer 1:
X
Answer 2:
Y
Answer 3:
Radius
Answer 4:
Line Width
Answer 5:
Color
in windows, a simple permission is actually a larger set of ___
Answer:
folders.
Explanation:
Which of the following is a popular format for electronic document distribution?
a. DOCM
b. BMB
c. XPS
d. TFT
The answer is c. XPS.
XPS (XML Paper Specification) is a popular format for electronic document distribution because it is a platform-independent format that preserves the layout and formatting of the original document. XPS files can be opened and viewed by a variety of software applications, including Microsoft XPS Viewer, Adobe Reader, and Foxit Reader.
XPS documents can be viewed and printed on any device that has a compatible XPS viewer.
Other popular formats for electronic document distribution include PDF (Portable Document Format), DOCX (OpenDocument Format), and RTF (Rich Text Format).
The other options are not as popular for electronic document distribution. DOCM is a Microsoft Word document that contains macros, BMB is a proprietary format used by Brother printers, and TFT is a type of display technology.
Learn more about XPS format here:
https://brainly.com/question/31452768
#SPJ11
FREE BRAINLIEST!!!
When recording a macro, the cursor will look like a _____ to indicate it is recording. A.microphone
B. Arrow
C. CD
D. cassette tape
Answer:
B
Explanation:
Answer:
When recording a macro, the cursor will look like a cassette tape to indicate it is recording. This answer has been confirmed as correct and helpful.
Explanation:
the correct answer is D
Which of the following Internet protocols is MOST important in reassembling packets and requesting missing packets to form complete messages?
A. Transmission Control Protocol (TCP)
B. Internet Protocol (IP)
C. User Datagram Protocol (UDP)
D. HyperText Transfer Protocol (HTTP)
Answer:
A
Explanation:
TCP numbers the packets before sending them so that the receiver can correctly reorder the packets, and it can request missing packets be resent.
UDP- sends all the packets at once
IP- rules on the networks
HTTP- used for transmitting web pages over the Internet
The Internet protocols that is MOST important in reassembling packets and requesting missing packets to form complete messages is A. Transmission Control Protocol (TCP)
Transmission Control Protocol (TCP) is an internet protocol that allows computer program to ,transmit, communicate and exchange information across a network.
With Transmission Control Protocol (TCP) packets can successfully or safely be send over the internet.
Transmission Control Protocol (TCP) has the capacity to ability to do the following:
•Separate data that are vast into separate packets
•Help to send back missing packets
•Re-arrange all packets
•It helps to successfully create a connection across various computers.
Inconclusion the Internet protocols that is MOST important in reassembling packets and requesting missing packets to form complete messages is A. Transmission Control Protocol (TCP)
Learn more about Transmission Control Protocol here:
https://brainly.com/question/18247758
what buttons do you need to keep on pressed on the pendant while jogging the robotic arm or running a program function?
SHIFT and JOG keys are the buttons you need to keep on pressed on the pendant while jogging the robotic arm or running a program function.
The process of manually moving the industrial robot using the teach pendant is known as "jogging" the robot. There are typically four different ways to move the robot manually: joint mode or axis in which just one axis is driven, either positively or negatively.
For autonomous task execution, robot software is employed. There are many software frameworks and techniques that have been suggested to make programming robots simpler. Some robot software seeks to create mechanically intelligent devices. Feedback loops, control, pathfinding, data filtering, data location, and data exchange are typical tasks.
To learn more about Software click here:
brainly.com/question/18994353
#SPJ4
Although not an exact equivalent, the first column in a vlookup table_array serves a role that is similar to what database concept?.
The first column in a vlookup table_array serves a role that is similar to the concept of A key
What is VLOOKUP?This is known to be one of the most flexible way to get back data that is often use through the VLOOKUP function.
This is one that shows the value a person want to lookup in a tableThe term VLOOKUP searches for any kind of matching value in the leftmost column of the table, and then gets it back that is that same value in the same row.
Learn more about VLOOKUP from
https://brainly.com/question/20566143
Jaime works for twenty hours per week as a Food Science Technician.
A. Salaried job
B. hourly job
C. part time job
D. full time job
Solomon's company provides health insurance for him.
A. job with benefits
B. Salaried job
C. entry-level jobs
D. advanced job
Charity is hired as a Mathematician by an employer that requires she have a doctoral degree.
A. advanced job
B. entry-level job
C. job with benefits
D. hourly job
Beth is paid a different amount every week, depending on how much she works.
A. part time
B. job with benefits
C. Salaried job
D. hourly job
Think back on the Font Tester App. Can you think of an example of another app or feature of an app which would use a loop to control different elements on a screen?
Answer:
The search bars in search engines to find the most reliable information.
Explanation:
Loops are very powerful concept in programming as they allow the performance of complex and repetitive task without having to repeat lines of code each time the task is to be performed. An example of an application which uses a loop to control elements on a screen is a shopping application.
Shopping applications are built to allow customers shop conveniently using their smart devices, pay and make decisions on retrieval of the selected items. Using a for loop, all selected items can be appended to a list which is called cart. This displays the number of selected items which is the number of items in the customer's cart. Using a loop, the cart is iterated and the total sum of the goods are displayed. If bonuses are available or discount for a certain product or groups, a loop can be used to effect the discount on the shopper's fee.Therefore, most applications require the use of loops in other to avoid writing bulky and efficient programs.
Learn more :https://brainly.com/question/15727806
A company is monitoring the number of cars in a parking lot each hour. each hour they save the number of cars currently in the lot into an array of integers, numcars. the company would like to query numcars such that given a starting hour hj denoting the index in numcars, they know how many times the parking lot reached peak capacity by the end of the data collection. the peak capacity is defined as the maximum number of cars that parked in the lot from hj to the end of data collection, inclusively
For this question i used JAVA.
import java.time.Duration;
import java.util.Arrays;;
class chegg1{
public static int getRandom (int min, int max){
return (int)(Math.random()*((max-min)+1))+min;
}
public static void display(int[] array){
for(int j=0; j< array.length; j++){
System.out.print(" " + array[j]);}
System.out.println("----TIME SLOT----");
}
public static void main(String[] args){
int[] parkingSlots= new int[]{ -1, -1, -1, -1, -1 };
display(parkingSlots);
for (int i = 1; i <= 5; i++) {
for(int ij=0; ij< parkingSlots.length; ij++){
if(parkingSlots[ij] >= 0){
parkingSlots[ij] -= 1;
}
else if(parkingSlots[ij]< 0){
parkingSlots[ij] = getRandom(2, 8);
}
}
display(parkingSlots);
// System.out.println('\n');
try {
Thread.sleep(2000);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
}
output:
-1 -1 -1 -1 -1----TIME SLOT----
8 6 4 6 2----TIME SLOT----
7 5 3 5 1----TIME SLOT----
6 4 2 4 0----TIME SLOT----
5 3 1 3 -1----TIME SLOT----
4 2 0 2 4----TIME SLOT----
You can learn more through link below:
https://brainly.com/question/26803644#SPJ4
which computer was used to solve problems in major universities,military agencies and scientific research laboratories?
Answer:
IBM
Explanation:
The term "Super Computing" was first used by the New York World newspaper in 1929 to refer to large custom-built tabulators IBM made for Columbia University. It was used to solve problems involving by major universities, military agencies and scientific research laboratories.
Answer: IBM
The term "Super Computing" was first used by the New York World newspaper in 1929 to refer to large custom-built tabulators IBM made for Columbia University. It was used to solve problems involving by major universities, military agencies and scientific research laboratories.
How do I turn off lanschool student?
Answer:
First try logging out. If that doesn't work there is a really helpful video on how to uninstall and reinstall with everything still there. Hope this was helpful.
In terms of information systems, a collaboration tool that helps a team communicate, organize, plan, schedule, track, and delegate jobs would be an example of A. a personal information system B. a workgroup information system C. an enterprise information system D. an organizational complement
An organizational complement is a collaboration tool that helps a team communicate, organize, plan, schedule, track, and delegate jobs. Option D is correct.
How is a computer system operated?An information system can contain information about a company and its surroundings. There are three fundamental processes that produce the information that businesses require: intake, production, and processing Feedback is the output that is provided to the appropriate groups or individuals within an organization so that they can evaluate and enhance the input.
An organizational supplement information system is a technological device that makes it easier for teams within an organization to communicate and work together to plan events, keep track of projects, and submit completed work.
Learn more about information system:
brainly.com/question/5419206
#SPJ4
This control sequence is used to skip over to the next horizontal tab stop. true or false
Option a.True, This control sequence is used to skip over to the next horizontal tab stop, which is true.
The control sequence referred to is used for moving the cursor to the next horizontal tab stop, making the statement true. The sequence structure indicates instructions are to be executed one statement at a time in the order they occur from top to bottom unless a different control structure dictates otherwise. They might, for example, carry out a series of read or write operations, arithmetic operations, or assignments to variables.
Learn more about the control: https://brainly.com/question/26398073
#SPJ11
which of the following returns the book handcranked computers in the results?
The query that would return the book "HANDCRANKED COMPUTERS" in the results is:c: SELECT * FROM books WHERE title LIKE 'H_N_C%';
What is the returnsThe LIKE operator in SQL is used to find specific patterns in a WHERE statement. You can find things that match a pattern by using special symbols called wildcard characters.
The symbol '%' can stand for any group of letters or numbers. This question looks for anything that starts with "H", then "N", and ends with "C" by using a symbol (%) that stands for any letter or number. The symbol % can stand for any letters or numbers. It will find any title that begins with "H", has some letters or numbers in the middle, and ends with "N", then "C".
Learn more about COMPUTERS from
https://brainly.com/question/24540334
#SPJ4
Which of the following returns the book HANDCRANKED COMPUTERS in the results?
SELECT * FROM books WHERE title = 'H_N_%';
SELECT * FROM books WHERE title LIKE "H_N_C%";
SELECT * FROM books WHERE title LIKE 'H_N_C%';
SELECT * FROM books WHERE title LIKE '_H%';
What was the biggest challenge you faced in getting to where you are today and how did you overcome it? Peer counseling
What is the quickest way to remove all filters that have been applied to a worksheet?
Answer:
Click the Filter button in the Sort & Filter group.
Explanation:
Quizlet
Which of these are characteristics of a database management system? (choose all that apply) manage access to data control data redundancy provide multiple views of data database searching
A database management system (DBMS) can manage data access, control data redundancy, provide support for multiple views of data, and allow efficient database searching. Thus, all the given options are correct.
The explaination of each characteristics of DBMS is given below:
Manages access to data: DBMS allows users to access and manipulate data in a controlled way with enforced security policies. In turn, that increases data security.Controls data redundancy: DBMS ensures that multiple copies of the same data are consistent across the database.Provides multiple views of data: DBMS allows multiple users to interact with the database with different views based on their requirements and interests.Database searching: With DBMS’s searching facility data can be searched very quickly. No matter whether being searched data is a single record or consists of multiple records, DBMS provides the search result efficiently.You can learn more about features of DBMS at
https://brainly.com/question/24027204
#SPJ4
Type the correct answer in the box. Spell all words correctly.
Which software keeps a tab on server jobs?
A(n)____
keeps a tab on the job to be run by the server at a particular time.
Answer:
SQL software
Explanation:
In simple words, SQL provides for Structured Query Languages (pronounced "ess-que-el"). SQL sentences are used to execute activities including updating data in a repository and retrieving data from one. Oracle, Sybase, Microsoft SQL Server, Access, Ingres, and other hierarchical database management schemes that use SQL are only a few examples.
Answer:
Scheduler
Explanation:
it is mentioned in the lesson
Question 7 of 10
Charts are most useful for which task?
A. Removing data that is not useful from a spreadsheet
B. Organizing data into a new spreadsheet
C. Creating more columns in a spreadsheet
D. Creating visual displays of data for presentations
Charts are most useful for Removing data that is not useful from a spreadsheet.
What is meant by spreadsheet?
A spreadsheet is a piece of software that can store, display, and edit data that has been organized into rows and columns.One of the most used tools for personal computers is the spreadsheet.In general, a spreadsheet is made to store numerical data and short text strings.Spread, used to refer to a newspaper or magazine item that spans two facing pages, extends across the centerfold, and treats the two pages as one large page, is the root word for the word "spreadsheet."Worksheet is another name for a spreadsheet. It is used to collect, compute, and contrast numerical or monetary data. Each value can either be derived from the values of other variables or be an independent value.To learn more about spreadsheet refer to
https://brainly.com/question/26919847
#SPJ1
A project team is faced with the problem of how to improve on-time performance for an airline. To solve the problem, they decide to get employees from different parts of the company together in a conference room. What type of approach in thinking should be done and why?
The project team should adopt a collaborative approach to problem-solving by bringing employees from different parts of the company together in a conference room.
Bringing employees from different parts of the company together in a conference room fosters a collaborative approach to problem-solving. This approach encourages cross-functional communication and allows individuals with diverse perspectives and expertise to contribute their ideas and insights. By involving employees from various departments, such as operations, customer service, and scheduling, the project team can gain a holistic understanding of the challenges impacting on-time performance.
When employees from different parts of the company come together, they can share their experiences and knowledge, enabling a more comprehensive analysis of the problem. Each department may have unique insights into the root causes of delays or inefficiencies. For example, the operations team may identify operational bottlenecks, while customer service representatives may shed light on customer pain points. By pooling their collective wisdom, the team can identify potential solutions that address the underlying issues and improve on-time performance.
Moreover, a collaborative approach promotes ownership and accountability among employees. When individuals from different departments are actively involved in problem-solving, they feel a sense of responsibility towards finding effective solutions. This shared responsibility fosters teamwork and boosts employee engagement, as everyone is invested in achieving the common goal of improving on-time performance.
Learn more about: project team
brainly.com/question/31682184
#SPJ11
discuss the various computer generation along with the key characteristics of computer of each generation
Explanation:
Here are some pic . hope it may help you.
interface iplayer { int play(); //returns the player's move, which is always 0, 1, or 2 int getpreviousmove(int movesago); // returns a previous move
The "iplayer" interface provides two methods: "play()" to return the player's move (0, 1, or 2), and "getpreviousmove(int movesago)" to retrieve a previous move.
The "iplayer" interface is designed to facilitate gameplay by providing methods for obtaining the player's move and retrieving previous moves. The "play()" method is responsible for returning the player's current move, which can be 0, 1, or 2. This method is crucial for enabling the game logic to progress and determine the outcome based on the player's selection.
The second method, "getpreviousmove(int movesago)," allows the game to access the player's past moves. By providing an integer argument "movesago," the method retrieves a specific previous move made by the player. This functionality can be valuable in scenarios where the game algorithm needs to reference previous player moves to make strategic decisions or implement specific gameplay mechanics.
Together, these two methods of the "iplayer" interface work in tandem to support gameplay by providing the current move and enabling access to the player's past moves. This interface can be implemented in various game scenarios that require player interaction and rely on maintaining and analyzing move history to enhance the gaming experience.
learn more about interface here:
https://brainly.com/question/14154472
#SPJ11
Use the drop down menus to complete the statements about creating a table of authorities.
Before a table of authorities, you must first create or mark_____.
To insert a table of authorities, look under the command group in the_____tab.
Answer: ☑️ citations
☑️ References
Explanation:
mary wants to check a png-formatted photo for gps coordinates. where can she find that information if it exists in the photo?
The image's attributes contain the Latitude and Longitude coordinate metadata, which can be used to pinpoint the image's location. For this, Marry needs to look for GPS Coordinates of the photo.
A person looks for the answer to how to find out the place where a photo was shot in order to determine the precise location of a photo. They can find a variety of methods online to manually or automatically identify the place from a photo using a sophisticated and expert tool.
Follow the instructions below to view the information linked to the image.
1. To pinpoint the precise area from which the image was shot, you must first download the image into your Windows computer.
2. To extract metadata from images, right-click on the photo and then select Properties.
3. Select the Details tab, then navigate to the GPS Section.
4. You can view the four GPS coordinates, or latitude and longitude, under the GPS section.
5. The user can determine the precise location of a photo by obtaining the geolocation data from the image. Finding the photo's date and time is also helpful.
To learn more about GPS click here:
brainly.com/question/16761310
#SPJ4
Which of these are considered I/O devices? Check all that apply.
Answer:
Hard disk drives; Any devices that receive input or send out output are considered I/O devices. I/O devices such as speakers, web cams, and monitors.
Explanation:
The hardware used to interact with a machine by a human operator or other systems is an input/output device. As the name implies, input/output devices have the ability to provide data that is output to a computer and receive data that is input from a computer.
A hard drive is a need for all computers; they would not work without one. These days, the majority of computers contain input/output devices like a CD-RW or DVD-RW drive, a network card, and a sound card or inbuilt sound on the motherboard.
You are writing an algorithm and want to tell the computer what to do if the
user does not perform an action. Which type of statement should you include
in your algorithm?
A. Return
B. When-if
C. If-else
D. And-or
Answer:
you are writing an algorithm and went to tell computer what to do If the return
The type of statement, i.e., if-else should be include in your algorithm. The correct option is C.
What is if-else statement?An "if-else" statement is a conditional statement that determines whether a particular condition is true or false and then executes different code based on the outcome of that evaluation.
An "if-else" statement could be used in the context of a user action to check whether the user has performed a specific action and then execute different code depending on whether the user has performed that action or not.
To exit a function and return a value to the calling code, use a "return" statement. A "when-if" statement and a "and-or" statement are not standard programming constructs and are rarely used in code.
Thus, the correct option is C.
For more details regarding algorithm, visit:
https://brainly.com/question/22984934
#SPJ7
Alejandro has gone to school startfraction 5 over 7 endfraction of the last 35 days. which expression can be used to determine the number of days alejandro has gone to school?
The expression that can be used to determine the number of days Alejandro has gone to school is 5/7 x 35.
To find the number of days Alejandro has gone to school, we need to calculate the fraction of days he has attended. Since Alejandro has gone to school for 5/7 of the last 35 days, we can multiply the fraction (5/7) by the total number of days (35). This will give us the number of days he has attended. Therefore, the expression 5/7 x 35 can be used to determine the number of days Alejandro has gone to school.
Know more about fraction here:
https://brainly.com/question/10354322
#SPJ11
Which is the compressed format of the IPv6 address 2001:0db8:0000:0000:0000:a0b0:0008:000 1?
The compressed format of the IPv6 address 2001:0db8:0000:0000:0000:a0b0:0008:0001 is 2001:db8::a0b0:8:1.
1. Eliminate leading zeros from each 16-bit block:
2001:db8:0:0:0:a0b0:8:1
2. Replace one or more consecutive blocks of zeros with "::":
2001:db8::a0b0:8:1
IPv6 is the latest version of the Internet Protocol, which provides a significantly larger address space than its predecessor, IPv4. IPv6 addresses are 128 bits long and are expressed in hexadecimal notation.
The standard notation of an IPv6 address is eight groups of four hexadecimal digits separated by colons. However, consecutive zeros within a group can be compressed to a double colon (::) once in an address. This compression can only occur once in an IPv6 address, and it replaces the consecutive zeros in that position. This helps reduce the length of the address and makes it easier to read and remember.
Learn more about IPv4:
https://brainly.com/question/24475479
#SPJ11
i need help converting this to python but i have no idea how to.
const tolerance := 0.0000001
function fac (x : real) : real
var answer : real := 1
if x = 0 or x = 1 then
result answer
else
for i : 1 .. round (x)
answer *= i
end for
result answer
end if
end fac
function e : real
var answer1 : real := 0
var answer2 : real := 1
var n : real := 0
loop
exit when abs (answer1 - answer2) <
tolerance
answer2 := answer1
answer1 += 1 / fac (n)
n += 1
end loop
result answer1
end e
put e
Answer:
see below
Explanation:
In Python, this code is much simpler.
It is a mathematical series to calculate e.
When comparing and
, what is the main difference?
O The first symbol changes action, and the second symbol changes text.
The first symbol is available in quick edit, and the second is not available in quick edit.
The first symbol moves text, and the second symbol changes actions.
O The first symbol is available in HTML, and the second is not available in HTML.
Answer:
HTNML
Explanation:
The new text will be typed at the cursor location when you start typing, displacing any previous content to the right.
When you select text and begin typing fresh text, what happens? At the place where the cursor is when you start typing, fresh text will be inserted, pushing any previously written content to the right.To move the pointer around the document and start typing, you can also use the arrow keys.When you start typing, the cursor will show you where on the page text will appear.Using the Home tab's Font group, select the Font Color button.Activate the Font Color toolbar button on the Mini toolbar.Set up text.The text you want to format should be selected.Click it again to select only one word.Click to the left of the text to choose that line.To change the text's font, size, color, or to add bold, italicized, or underlined text, choose a corresponding option.To learn more about select text refer
https://brainly.com/question/26940131
#SPJ4