When a turtle object attempts to move beyond a window boundary, the turtle object stops because it cannot move outside the window boundary.
The turtle graphics window is simply a graphics window that is used as a playground when drawing turtles.
A turtle object is always in the turtle graphics window.
This in other words mean that, the turtle object cannot exceed the boundaries of the turtle graphics window
An attempt to move the turtle object outside its window will stop the turtle object;
This is so because the turtle object is always in the turtle graphic window, and it cannot move beyond it.
Read more about turtle graphics window at:
https://brainly.com/question/3070883
Do you have any concerns or worries about how you will manage your course assignments or expectations? Your journal entry will only be seen by you and your instructor, so feel free to share any questions and worries you have.
Answer:
no worries at all.
yeah-ya..... right?
1. Which of the following options can you use to format the contents of a cell?
Select all that apply.
a. Font Size
b. Sort
C. Italic
d. Underline
Answer:
a
Explanation:
The correct options are A, C, and D. Front Size, Italic, and Underline are the options can you use to format the contents of a cell.
You can also use the keyboard shortcuts Ctrl+B, Ctrl+I, and Ctrl+U to bold, italicize and underline a selection of text.
What is the use of format cells?You can only alter how cell data appears in the spreadsheet by using cell formats. It's critical to remember that the data's value is unaffected; only how the data is presented has changed. The formatting options include options for fractions, dates, timings, scientific alternatives, and more.
Regular, Bold, Italic and Bold Italic are the four different sorts of font styles. Selected cells or ranges in a worksheet can have their font style changed. Changing the typeface involves the following steps: Pick the cell or cells that need to be changed. The text you want to format should be selected. Go to the Home tab and select Bold, Italic, or Underline. Ctrl + B will bold text. Ctrl + I will italicize text.
Thus, the correct options are A, C, and D.
Learn more about Format cell here:
https://brainly.com/question/24139670
#SPJ2
Kiểm tra cặp số hứa hôn
Đầu vào : số nguyên n,m
Đầu ra : in ra n,m là cặp số hứa hôn và in ra không là số hứa hôn nếu ngược lại
Answer:
Sorry im not Vietnam so please explain it in English or ask someone who can speak Vietnam to help you
Which validation method would you use for first name on a data form
Write a program, using case statements, that mimics a calculator. The program should take as input two integers and the operation to be performed. It should then output the numbers, the operator, and the result. For division, of the denominator is zero, output an appropriate message.
Answer:#include<iostream>
using namespace std;
int main() {
int var1, var2;
char operation;
cout << "Enter the first number : ";
cin >> var1;
cout << endl;
cout <<"Enter the operation to be perfomed : ";
cin >> operation;
cout << endl;
cout << "Enter the second nuber : ";
cin >> var2;
cout << endl;
bool right_input = false;
if (operation == '+') {
cout << var1 << " " << operation << " " << var2 << " = " << (var1 + var2);
right_input = true;
}
if (operation == '-') {
cout << var1 << " " << operation << " " << var2 << " = " << (var1 - var2);
right_input = true;
}
if (operation == '*') {
cout << var1 << " " << operation << " " << var2 << " = " << (var1 * var2);
right_input = true;
}
if (operation == '/' && var2 != 0) {
cout << var1 << " " << operation << " " << var2 << " = " << (var1 - var2);
right_input = true;
}
if (operation == '/' && var2 == 0) {
cout << "Error. Division by zero.";
right_input = true;
}
if (!right_input) {
cout << var1 << " " << operation << " " << var2 << " = " << "Error;";
cout << "Invalid Operation!";
}
cout << endl;
system("pause");
return 0;
}
Explanation:
HOW TO DISCONNECT A MONITOR FROM A SYSTEM UNIT
Answer: 1. Use the Windows key + P keyboard shortcut.
2. Using the “Project” flyout, select the PC screen only option.
3. Open Settings.
Click on Display.
Under the “Select and rearrange displays” section, select the monitor that you want to disconnect.
Select monitor on Windows 10
Under the “Multiple displays” section, use the drop-down menu and select the Disconnect this display option.
what is the different sheets in excel
Answer:
By clicking the sheet tabs at the bottom of the Excel window, you can quickly select one or more sheets. To enter or edit data on several worksheets at the same time, you can group worksheets by selecting multiple sheets. You can also format or print a selection of sheets at the same time.
Explanation:
hope this helps
the most important part of a computer
Answer:
CPU central processing unit
.tag is used to draw a horizontal line
Answer:
<hr> tag.
Explanation:
<hr> tag makes a line along the webpage :)
What is the difference between a computer’s RAM and its hard disk?
A. RAM is not volatile, which means that it is more reliable than a hard disk. A hard disk is volatile, which means that it is vulnerable to electronic interference.
B. RAM is volatile, which means that it does not retain information in memory after powering down. A hard is not volatile, which means that it retains information in memory after powering down.
C. RAM is not volatile, which means that it retains information in memory after powering down. A hard disk is also not volatile, which means that it retains information in memory after powering down.
D. RAM is volatile, which means that it must be handheld with care when removed or replaced. A hard disk is not volatile, which means that it is much more resistant to movement during removal or replacement.
Answer:
D. RAM is volatile, which means that it must be handheld with care when removed or replaced. A hard disk is not volatile, which means that it is much more resistant to movement during removal or replacement.
Explanation:
Most RAM (random access memory) used for primary storage in personal computers is volatile memory. Volatile memory contrasts with non-volatile memory, which does not lose content when power is lost. Non-volatile memory has a continuous source of power and does not need to have its memory content periodically refreshed.
Answer:
Explanation:
RAM can be accessed faster than hard drive. – Any changes made to the file will be present in RAM while once the changes are saved it is copied to the hard drive permanently. – RAM needs power to store data, hard drives do not.
What is the grooming process as it relates to online predators
the process by which online predators lure in minors to get close enough to hurt them.
True or False. When FTP users authenticate with an FTP server, the sign-in process can be decoded by a protocol analyzer or network sniffer software.
The File Transfer Protocol is commonly called FTP. FTP users authenticate with an FTP server, the sign-in process can be decoded by a protocol analyzer or network sniffer software is a true statement.
There are some element that often specifies the authentication settings for FTP sites. The authentication settings are known to be wired or configured at only the site-level. They can also be configured per URL.The File Transfer Protocol (FTP) is known simply as a standard communication protocol that is often employed for the movement of computer files from a server to a client using a computer network.
It uses the client–server model architecture via different control and data connections between the client and the server.
Learn more from
https://brainly.com/question/20602197
Write a function remove_duplicates that removes duplicates from an array. For example, if remove_duplicates is called with an array containing 1, 4, 9, 16, 9, 7, 4, 9, 11 … then the array is changed to 1, 16, 7, 4, 9. 11. Your function should have a reference parameter for the array size that is updated when removing the duplicates
The function is an illustration of loops
Loops are used to perform repetitive operations
The function in Java where comments are used to explain each line is as follows:
//This defines the remove_duplicates function
public static int remove_duplicates(int arr[], int n){
//If the length of the array is 0 or 1, then return the original array
if (n == 0 || n == 1) {
return n;
}
//This creates a new array
int[] newArr = new int[n];
//This initializes the index of the array to 0
int ind = 0;
//This iterates through the original array
for (int i = 0; i < n - 1; i++) {
//The following loop populates the new array with the unique elements of the original array
if (arr[i] != arr[i + 1]) {
newArr[ind++] = arr[i];
}
}
newArr[ind++] = arr[n - 1];
// The following loop changes the original array
for (int i = 0; i < ind; i++) {
arr[i] = newArr[i];
}
return ind;
}
At the end of the function, the duplicate elements of the array are removed
Read more about similar programs at:
https://brainly.com/question/22552591
3. Elaborate why and how you use “Output” command in Python Programming Language, write the syntax of output command?
Answer:
Explanation:
you use print() to output something
so it would be like this:
print("What is up, gamer?")
so the syntax is print() with whatever is in the parentheses being what you want to output
what is the difference between software hardware ???
Answer:
Some differences are written below:
Explanation:
Hardware refers to the physical components of the computer. You can see and touch it (keyboard, screen, mouse, monitor..etc..)
Computer Software is a programming code executed on a computer processor.We can see and also use the software but can’t touch them. (Ms Word, Excel, Power Point, Photoshop..etc..)
Hardware can't perform tasks without software. And Software can't be executed without software.
Hardware has four main categories: input device, output devices, storage, and internal components.
Software is divided into System software, Programming software and Application software.
Hardware is not affected by computer viruses. Software is affected by computer viruses.
You are writing code to store the length of a side of a square. Which one is a good variable name
Answer:
Explanation:
Hi, pooop! i really like your username
In programming we should use camelcase whichLooksLikeThis because the capital letters are kind of like the back of a camel
so perhaps make the variable name:
lengthSquare
it looks like your question has multiple choice answers.. but i cant see them... so i just made up my own answer...
What are the steps to creating a text box? Use the drop-down menus to complete them.
1. Go to the
View
tab on the ribbon.
2. Click
.
3. Select any of the templates shown or
, which will open a blank text box.
4. Position the text box and adjust the text size, font, and color as desired.
Answer: The answers (in order) are
Insert
Text Box
Draw Text Box
Explanation: Just took the test on edgen, November 2021.
The _______ is responsible for fetching program instructions, decoding each one, and performing the indicated sequence of operations.
Answer: C P U Terms in this set (124) What is the CPU responsible for? Fetching program instructions, decoding each instruction that is fetched, and performing the indicated sequence of operations on the correct data.
Explanation:
The Central Processing Unit is responsible for fetching program instructions, decoding each one, and performing the indicated sequence of operations.
What is CPU?A central processing unit, often known as a central processor, main processor, or simply processor, is the electrical circuitry that processes computer program instructions. The CPU executes fundamental arithmetic, logic, controlling, and input/output operations as provided by the program's instructions.
The CPU is in charge of all data processing. It keeps data, interim outcomes, and instructions saved (program). It controls how all computer components work.
Therefore, it can be concluded that The CPU is in charge of acquiring program instructions, decoding each one, and performing the prescribed series of actions on the proper data.
Learn more about CPU here:
https://brainly.com/question/21477287
#SPJ5
HELP ME ILL GIVE BRAINLY Input 50 numbers and then output the average of the negative numbers only. Write in pseudocode!
Answer:
The explanation is for 10 inputs though. You'd have to follow these steps to find input 50 numbers.
Explanation:
This is how I wrote it in the Plain English programming language which looks like pseudo-code but compiles and runs (to save you all the rest of the steps):
To run:
Start up.
Write "Enter 10 numbers separated by spaces: " on the console.
Read a reply from the console.
Loop.
If the reply is blank, break.
Get a number from the reply.
Add 1 to a count.
Add the number to a total.
Repeat.
Write "The total is: " then the total on the console.
Put the total divided by the count into an average.
Write "The average is: " then the average on the console.
Refresh the screen.
Wait for the escape key.
Shut down.
30th Nov 2020. Difference between Data and Information
Answer:
Data is a collection of unstructured or unorganized facts and figures.
Information is a collection of processed data.
Hope it helps...............Just a quick question, how do you set something == to char and int in an if statement (java)
Write a method checkCharacter() which has 2 parameters: A String, and a specified index (an int). Method checkCharacter() checks the character at the specified index of the String parameter, and returns a String based on the type of character at that location indicating if the character is a letter, digit, whitespace, or unknown character.
Ex: The method calls below with the given arguments will return the following Strings:
checkCharacter("happy birthday", 2) returns "Character 'p' is a letter"
checkCharacter("happy birthday", 5) returns "Character ' ' is a white space"
checkCharacter("happy birthday 2 you", 15) returns "Character '2' is a digit"
checkCharacter("happy birthday!", 14) returns "Character '!' is unknown"
Your program must define the method:
public String checkCharacter(String word, int index)
this is what i got to but im stuck on how to find out if its a char or int
public class TollCalculation {
public double calcToll(int hour, boolean isMorning, boolean isWeekend) {
Scanner scnr = new Scanner(System.in);
int timeHour; // Time of travel hour (24 hour format)
int timeMinute; // Time of travel minute
int inputColon; // Used to read time format
String userInput; // User specified time
double tollAmount;
}
public static void main(String[] args) {
TollCalculation tollObj = new TollCalculation();
// Test the three samples from the specification.
System.out.println(tollObj.calcToll(7, true, false));
System.out.println(tollObj.calcToll(1, false, false));
System.out.println(tollObj.calcToll(3, true, true));
}
}
This is the requested code in java.
public class CharTest {
public static String checkCharacter(String text, int index) {
if (0 <= index && index <= text.length()) {
char ch = text.charAt(index);
if (Character.isLetter(ch)) {
return ch + " is a letter";
} else if (Character.isDigit(ch)) {
return ch + " is a digit";
} else if (Character.isWhitespace(ch)) {
return ch + " is a whitespace character";
} else {
return ch + " is an unknown type of character";
}
} else {
return "index " + index.toString() + " is out of range";
} // end if
} // end function checkChar()
public static void main(String[] args) {
// Test the three samples from the specification.
System.out.println(checkCharacter("happy birthday", 2));
System.out.println(checkCharacter("happy birthday", 5));
System.out.println(checkCharacter("happy birthday 2 you", 15));
} // end function main()
} // end class CharTest
The function checkcharacter(text, index) returns a string value describing the kind of character found at the position in text specified by index; whether it was a letter, digit, whitespace, or an unknown kind of character.
How it does that is to make use of respective functions defined within the Character class in java. That is
isLetter(char) returns a bool specifying if the char parameter is a letter.isDigit(char) returns a bool specifying if the char parameter is a digit.isWhitespace(char) returns a bool specifying if the char parameter is a whitespace character.It calls these functions in an if statement. These else part of the if statement is then executed if the character is neither a letter, digit, or whitespace.
Finally, the function main() calls checkCharacter() three times to test the function and return the results to the console.
Another example of a java program on characters is found in the link below
https://brainly.com/question/15061607
discuss the communicatin process giving detailed explanation on each process
Communications is fundamental to the existence and survival of humans as well as to an organization. It is a process of creating and sharing ideas, information, views, facts, feelings, etc. among the people to reach a common understanding. Communication is the key to the Directing function of management.
A manager may be highly qualified and skilled but if he does not possess good communication skills, all his ability becomes irrelevant. A manager must communicate his directions effectively to the subordinates to get the work done from them properly.
Communications ProcessCommunications is a continuous process which mainly involves three elements viz. sender, message, and receiver. The elements involved in the communication process are explained below in detail:
1. Sender
The sender or the communicator generates the message and conveys it to the receiver. He is the source and the one who starts the communication
2. Message
It is the idea, information, view, fact, feeling, etc. that is generated by the sender and is then intended to be communicated further.
Browse more Topics under Directing
Introduction, Meaning, Importance & Principles of DirectingElements of DirectionIncentivesLeadership3. Encoding
The message generated by the sender is encoded symbolically such as in the form of words, pictures, gestures, etc. before it is being conveyed.
4. Media
It is the manner in which the encoded message is transmitted. The message may be transmitted orally or in writing. The medium of communication includes telephone, internet, post, fax, e-mail, etc. The choice of medium is decided by the sender.
5. Decoding
It is the process of converting the symbols encoded by the sender. After decoding the message is received by the receiver.
6. Receiver
He is the person who is last in the chain and for whom the message was sent by the sender. Once the receiver receives the message and understands it in proper perspective and acts according to the message, only then the purpose of communication is successful.
7. Feedback
Once the receiver confirms to the sender that he has received the message and understood it, the process of communication is complete.
8. Noise
It refers to any obstruction that is caused by the sender, message or receiver during the process of communication. For example, bad telephone connection, faulty encoding, faulty decoding, inattentive receiver, poor understanding of message due to prejudice or inappropriate gestures, etc.
Create a procedure named STATUS_SHIP_SP that allows an employee in the Brewbeans' Shipping Department to update an order status to add shipping information. The BB_BASKETSTATUS table lists events for each order so that a shopper can see the status, date, and comments as each stage of the order process is finished. The IDSTAGE column of the BB_BASKETSTATUS table identifies each stage; the value 3 in this column indicates that an order has been shipped. The procedure should allow adding a row with an IDSTAGE of 3, date shipped, tracking number and shipper. The BB_STATUS_SEQ sequence is used to provide a value for the primary key column. Test the procedure with the following information: o Basket # = 3 o Date shipped = 20-FEB-12 o Shipper = UPS o Tracking # = ZW2384YXK4957
Answer:
c
Explanation:
A procedure named STATUS_SHIP_SP that allows an employee in the Brewbeans' Shipping Department to update an order status to add shipping information is in the explanation part below.
A representative from Brewbeans' shipping division can change an order's status and add shipment details by using the PL/SQL method STATUS_SHIP_SP, as shown in the following example:
CREATE OR REPLACE PROCEDURE STATUS_SHIP_SP (
p_basket_number IN NUMBER,
p_date_shipped IN DATE,
p_shipper IN VARCHAR2,
p_tracking_number IN VARCHAR2
)
IS
v_status_id NUMBER;
BEGIN
-- Get the next value from the BB_STATUS_SEQ sequence
SELECT BB_STATUS_SEQ.NEXTVAL INTO v_status_id FROM DUAL;
-- Insert a new row into the BB_BASKETSTATUS table
INSERT INTO BB_BASKETSTATUS (STATUSID, BASKETNO, IDSTAGE, STATUSDATE, COMMENTS)
VALUES (v_status_id, p_basket_number, 3, p_date_shipped, 'Shipped: ' || p_shipper || ', Tracking Number: ' || p_tracking_number);
-- Commit the transaction
COMMIT;
-- Display a success message
DBMS_OUTPUT.PUT_LINE('Order status updated. Shipment information added.');
EXCEPTION
WHEN OTHERS THEN
-- Display an error message
DBMS_OUTPUT.PUT_LINE('Error: Unable to update order status.');
-- Rollback the transaction
ROLLBACK;
END;
/
Thus, by doing this, the procedure will be called with the specified parameters, and if successful, a new entry with the proper shipping information for basket number 3 will be added to the BB_BASKETSTATUS database.
For more details regarding SQL, visit:
https://brainly.com/question/34315524
#SPJ6
discuss with illustrations how to implement a simple home network
Answer:
How to Set Up a Home Network- Beginners Guide
Today almost every home and small office has a local network, and an Internet connection.
The home network or small area network enables multiple devices e.g. PCs,tablets etc to connect to each other, and also to connect to the internet.
In this tutorial you will learn how you to build and setup a home or small area network and connect it to the Internet.
Explanation:
Choosing a Wired or Wireless Network
Do You Build a wired or Wireless Network? which is best?
Early (pre 2008) home networks were predominately wired networks.
Wired networks use Ethernet over UTP cable and tend to be faster than wireless networks, which is an important consideration if you are a gamer. The simple wired home network diagram below shows a minimum setup with a switch and broadband router.

Wired Network Advantages
Fast typically 100 Mbps to 10 Gbps
Secure and reliable.
Wired Network Dis-Advantages
Doesn’t work with devices that don’t have an Ethernet port e.g. tablets and smart phones.
Not so easy and fast to setup as it requires running cables. However Homeplug or powerline adapters can be used instead.
Not so easy for visitors and mobile devices (laptops) to connect to.
Main Uses
It Is best used for network backbone i.e. connecting between router,network switches and wireless access points on different levels (floors).
Where is RAM installed?
Answer: RAM is located in the central processing unit or CPU which is also called a processor. This is located inside the computer case on the motherboard.
Would appreciate brainly <3
For security reasons, the network administrator needs to prevent pings into the corporate networks from hosts outside the internetwork. Which protocol should be blocked with access control lists
Answer:
ICMP
Explanation:
Project managers have the overall responsibility for planning, executing, and completing a project. (3 points) True False
Design a chip that can complete four bit binary addition, subtraction, and, or operation. Complete the Verilog program and show simulation on Modelsim software , write the program list and screenshot of simulation results.
Answer:
How am I supposed to design a chip here?
Explanation:
What are two drawbacks of using netbook ? (Choose two)
A. Portability
B. Screen size
C. Boot up time
D. Storage capacity
Answer:
D and C
Explanation:
I would say D and C because they don't have fast processors they normally only use Celerons. and normally they only have a 64GB internal SSD.
It's definitley not a because they are extremely portable and have amazing battery life
I don't think its B because they have small screens but you can also get them in bigger 14" variants which is normally the generic size.
What are 3 things message timing must include
Answer:
1)Message Timing. Another factor that affects how well a message is received and understood is timing. ...
2)Access Method. Access method determines when someone is able to send a message. ...
3)Flow Control. Timing also affects how much information can be sent and the speed that it can be delivered.