Answer:
Extension lines are used to indicate the extension of a surface or point to a location preferably outside the part outline.
Explanation:
only evansandre2007 and elizabetharnold84 can answer
Answer:
Explanation:
Okie dokie
Have a nice day
When enabling IPsec mobile client support, you made some selections in the Xauth section of the interface. What does Xauth stand for
Answer:
Extended authentication
Explanation:
Xauth = Extended authentication
An extended authentication can cause security to be increased because it requires the user to enter a username and password. These details would then be authenticated at the internal database of the controller. This extension is an ipsec extension which would enable VPN users to enter a username and password. These details would be required of the user while trying to connect and they would be checked against the login details registered by such a user.
Java Unit 3: Lesson 3 - Coding Activity 3
Answer:
import java.util.Scanner;
public class MultiplicationTablePractice {
public static void main(String[] args) {
var scanner = new Scanner(System.in);
var quit = false;
while (!quit) {
var randomNumber1 = (int) (Math.random() * 12) + 1;
var randomNumber2 = (int) (Math.random() * 12) + 1;
System.out.println(randomNumber1 + " * " + randomNumber2 + " = ?");
var answer = scanner.nextInt();
if (answer == randomNumber1 * randomNumber2) {
System.out.println("Correct!");
} else {
System.out.println("Wrong!");
}
System.out.println("Quit? (y/n)");
var quitInput = scanner.next();
if (quitInput.equals("y") ||
quitInput.equals("Y")) {
quit = true;
}
}
scanner.close();
}
}
Explanation:
First, we create a new scanner object, based on the System.in stream. Then we create a varaible called quit which we set to false which we then use as the condition for the while loop.
Inside the scope of the while loop, we create two random numbers based off of Math.random(). The formula we use is (int) (Math.random() * 12) + 1; With these new variables, we print:
randomNumber1 + " * " + randomNumber2 + " = ? "
After this is printed, we scan the user input as an int. We check the input answer against the actual answer to check if it's correct or not. If it is correct, we print "Correct!" otherwise we print "Wrong!".
Once all of this is handled, we ask the user if they want to quit or not. If the input is "y" or "Y" the while loop terminates, and the scanner closes. Otherwise, the while loop will continue, and restart the process.
Which file type is used when forwarding a contact as a business card to another user to share their information?
PST
CSV
XML
VCF
Answer:
VCF
Explanation:
Answer:VCF
Explanation:
What is a ribbon or ribbions in Microsoft Word?
There are five best practices for designing media on the web that are discussed in the lesson. Describe three of these best practices and explain why they are important to creating effective web-based media.
Paid media, media wins and own media are important to creating effective web-based media.
Paid media
Paid digital media is the most similar to other types of traditional media. Just as a sponsor pays a TV or radio network to display their ad, on the internet, companies and professionals pay to have their domains and banners promoted on wide-reaching websites and platforms.
Media winsEarned or free digital media can be compared to spontaneous media, that is, the well-known “word of mouth” of Internet Marketing.
Own mediaFinally, proprietary digital media, as the term itself clarifies, is media controlled directly by your company.
The corporate websiteBlogE-commerce or Application of an organizationIt usually channels with content and structure fully owned and directed by the responsible brand.
With this information, we can conclude that
Paid mediaMedia wins and Owned mediaare influential to create effective web-based media.
Learn more about web-based media in https://brainly.com/question/532899
Which of the following is NOT an example of editing?
O Adjusting photos
O Cutting video and audio
O Proofreading written content
O Designing graphics
Answer:
ang answer po at proofreading written
content
Explanation:
if I wrong please correction me!
NEED HELP!
Molly says she is learning how to code. Which of the following is the best description of what Molly is doing?
learning how to be a hacker
learning a mathematical language
learning a language that computers use
learning how to set up a computer
The statement that represents the best description of what Molly is doing is that Molly is learning a language that computers use. Thus, the correct option for this question is C.
What is meant by Programming language?The programming language may be defined as a type of system of notation for writing computer programs. In this way, programmers (developers) are able to communicate with computers.
Programming languages typically consist of a set of rules that allows string values to be converted into various ways of generating machine code, or, in the case of visual programming languages, graphical elements.
Therefore, the correct option for this question is C.
To learn more about Programming languages, refer to the link;
https://brainly.com/question/16936315
#SPJ1
write a c++ program to find the factorial of a number.
Answer:
I'm not gonna use recursion for this program.
#include <iostream>
using namespace std;
int main()
{
int input,factorial=1;
cout<<"Enter a number to get it's factorial: ";
cin>>input;
for(int i=1;i<=input;i++)
{
factorial *=i;
}
cout<<"The factorial of the number you entered is: "<<factorial;
return 0;
}
The value of the expression X(X+Y) is X
O a. True
b. False
sorry I didn’t know this was Boolean math
I answered for regular math equations
Drag each tile to the correct box. Match each decimal number to an equivalent number in a different number system. 6910 22810 4210 2710
Explanation:
you can do that with calculator only
2 al Class A computer networks are identified by IP addresses starting
with 0.0.0.0, class B computer networks are identified by IP addresses
starting with 128.0.0.0 and class C computer networks are identified by IP
addresses starting with 192.0.0.0. (Class D networks begin with 224.0.0.0.)
Write these starting IP addresses in binary format.
b) Using the data above, write down the upper IP addresses of the three
network classes A, B and C.
c) A device on a network has the IP address:
10111110 00001111 00011001 11110000
i) Which class of network is the device part of?
ii) Which bits are used for the net ID and which bits are used for the
host ID?
iii) A network uses IP addresses of the form 200.35.254.25/18.
Explain the significance of the appended value 18.
d) Give two differences between IPv4 and IPv6.
Due to its primary three octets beginning with the binary form 110, the device belongs to a Class C network.
How to explain the classii) In Class C networks, the leading 24 bits thereof stand for the net ID and the latter 8 bits register the host ID.
Two disparities between IPv4 and IPv6 are:
IPv4 on 32-bit addresses conversely IPv6 opts for 128-bits ones, thereby equipping IPv6 with an abundance booster of addresses which permits more devices alongside distinct numbers.
Whereas IPv4 seeks out an organized addressing structure with subnetting, IPv6 wields a smooth addressing etiquettes that relies on prefix delegation eliminating the prerequisites for any sort of subnetting.
Learn more about computer on
https://brainly.com/question/24540334
#SPJ1
When multiple architects work on a construction plan, which section of a construction plan will help them keep track of when the changes are made and by whom?
A.
framing plan
B.
schedule
C.
title block
D.
bill of materials
Answer:
I believe that it is . A. framing plan
Explanation:
But I am not certain But I do know that it IS NOT B..
Answer:
the answer is schedule!!!
Explanation:
Where do I look for a deep learning mentor who can assist me in my career?
The answer:
You have to pay for it man!
Explanation:
You can find a lot of services from Fiverr and Upwork etc. But that would need to pay a lot for it.
ov. 1 Dollar Store purchases merchandise for $1,400 on terms of 2/5, n/30, FOB shipping point, invoice dated November 1. 5 Dollar Store pays cash for the November 1 purchase. 7 Dollar Store discovers and returns $150 of defective merchandise purchased on November 1, and paid for on November 5, for a cash refund. 10 Dollar Store pays $70 cash for transportation costs for the November 1 purchase. 13 Dollar Store sells merchandise for $1,512 with terms n/30. The cost of the merchandise is $756. 16 Merchandise is returned to the Dollar Store from the November 13 transaction. The returned items are priced at $260 and cost $130; the items were not damaged and were returned to inventory. Journalize the above merchandising transactions for the Dollar Store assuming it uses a perpetual inventory system and the gross method.
On November 1, Dollar Store purchased $1,400 of merchandise with terms 2/5, n/30, FOB shipping point. On November 7, $150 of defective merchandise was returned for a cash refund. On November 10, Dollar Store paid $70 for transportation costs. On November 13, Dollar Store sold merchandise for $1,512 with terms n/30, and on November 16, returned $260 of merchandise that was not damaged and returned to inventory. Journal entries are required.
As per the given scenario, on November 1, Dollar Store purchased merchandise worth $1,400 on terms of 2/5, n/30, FOB shipping point.
On November 5, the store paid cash for the purchase.
On November 7, defective merchandise worth $150 was returned for a cash refund.
On November 10, the store paid $70 cash for transportation costs related to the November 1 purchase.
On November 13, Dollar Store sold merchandise worth $1,512 with terms n/30, and the cost of goods sold was $756.
On November 16, $260 of merchandise was returned to the store, which was not damaged and returned to inventory.
The journal entries for these transactions would be:
Nov. 5: Merchandise Inventory $1,400
Accounts Payable $1,400
Nov. 7: Accounts Payable $150
Merchandise Inventory $150
Nov. 10: Merchandise Inventory $70
Cash $70
Nov. 13: Accounts Receivable $1,512
Sales $1,512
Cost of Goods Sold $756
Merchandise Inventory $756
Nov. 16: Accounts Receivable $260
Sales Returns and Allowances $260
Merchandise Inventory $130
Cost of Goods Sold $130
In summary, these transactions involve purchases, sales, returns, and allowances, and are recorded in the respective accounts in the perpetual inventory system using the gross method.
For more such questions on Merchandise:
https://brainly.com/question/27773395
#SPJ11
How to protect data in transit Vs rest?
Implement robust network security controls to help protect data in transit. Network security solutions like firewalls and network access control will help secure the networks used to transmit data against malware attacks or intrusions.
If this helps Brainliest please :)
How to use the screen mirroring Samsung TV app
If you want to show what's on your phone or computer screen on a Samsung TV, you can do it by these steps:
Make sure both your Samsung TV and the thing you want to copy are using the same Wi-Fi.
What is screen mirroringThe step also includes: To get to the main menu on your Samsung TV, just press the "Home" button on your remote.
The screen mirroring is Copying or making a duplicate of something. They are repeating each other's words to try to fix the problem between them. This is the way to show what is on your computer or phone screen on another screen by using wireless connection.
Learn more about screen mirroring from
https://brainly.com/question/31663009
#SPJ1
You may review Chapter 2, pages 67-71 of the textbook or communication skills.
Now please answer the following questions:
• What communication systems do you believe are best to be used at a help desk?
• What may be a couple of reasons for the satisfaction disparity?
• How can you ensure that all employees are satisfied with the help desk's services regardless of how
Responses to Other Students: Respond to at least 2 of your fellow classmates with at least a 50-100-w
found to be compelling and enlightening. To help you with your discussion, please consider the following
• What differences or similarities do you see between your posting and other classmates' postings?
**what communication system do you believe are best to be used at a help desk?
The communication systems that are said to be used at help desks are:
Phone as well as Call Center SystemThe use of Email SystemThe use of Ticketing SystemWhat is the communication systems?In terms of Phone as well as Call Center System: This is seen as a form of a traditional system of communication that is often used as help desks.
It is one that gives room for a lot of users to be able ot call as well as speak directly with the person who is a help desk agents for any form of assistance.
Hence the choice of communication the the person who is help desk wants to use can depend on a lot of factors.
Learn more about communication systems from
https://brainly.com/question/30023643
#SPJ1
When a computer is being developed, it is usually first simulated by a program that runs one instruction at a time. Even multiprocessors are simulated strictly sequentially like this. Is it possible for a race condition to occur when there are no simultaneous events like this?
My response is Yes, the simulated computer is one that can be multiprogram med.
What is meant by computer simulations?A computer simulation is known to be a kind of a program that is known to often run on a computer and it is said to be one that uses a form of step-by-step mechanism to examine or look through the behavior of a mathematical model.
Note that this is said to be a model of a real-world system and as such, My response is Yes, the simulated computer is one that can be multiprogram med.
Learn more about simulated computer from
https://brainly.com/question/24912812
#SPJ1
which of the following technologies is specifically developed to move designs into production? computer-integrated manufacturing (cim) computer-aided manufacturing (cam) flexible manufacturing systems (fms) computer-aided design (cad)
Computer-Aided Manufacturing (CAM) is specifically developed to move designs into production. It is a system that uses computer technology to control the process of manufacturing products.
What is computer technology?Computer technology is the use of computers to store, retrieve, transmit and manipulate data, or information, often in the context of a business or other enterprise. It includes hardware components such as computers, laptops and mobile devices, as well as software applications, operating systems and programs. It also includes networks such as the Internet, intranets and extranets, which allow users to connect to the Web and access data from anywhere in the world.
CAM is used to control and automate machines used in the manufacturing process, such as lathes, mills, routers, and grinders. This technology can help reduce labor costs, improve product quality, and increase production efficiency.
To learn more about computer technology
https://brainly.com/question/14511802
#SPJ1
What is output by the following code? Select all that apply.
c = 2
while (c < 12):
print (c)
c = c + 3
answers possible
3
4
6
7
9
2
10
5
12
8
1
11
Answer:
........................... ...it is 5
Which of the following statements is correct?
Select one:
a. A failure in Network layer crashes the application
b. A failure in Network layer affects transport layer
c. A failure in Network layer affects Data Link layer
d. A failure in Network layer affects entire communication
e. A failure in Network layer stops the device from working entirely
The statement which is correct from the given answer choices is:
C. A failure in Network layer affects Data Link layerAccording to the given question, we are asked to show which of the statement about the network layer is most represented accurately.
As a result of this, we can see that a network layer is a part of the OSI model which is in charge of receiving and forwarding service requests from the sender to the receiving host in a network.
With this in mind, if the network layer fails, then there would also be a failure in the data link layer.
Therefore, the correct answer is option C
Read more here:
https://brainly.com/question/21298343
Joshua always participate in team meetings and comes up with ideas and suggestions. what quality is he demonstrating?
A. Honestly
B. Innovativeness
C. approahability
D. confidence
E. resourcefulness
its plato!! pls help!!
Answer:
recoursefulness
Explanation:
because he is being a good recourse and is actively participating
Resourcefulness quality is demonstrated in this particular instance. Thus, option E is correct.
What is quality?Quality refers to how well the goods adhere to all rules, regulations, and guidelines. the benchmark by which something is evaluated in comparison to other items of a similar nature; the level of brilliance of something.
The skill and ingenuity to deal with challenging circumstances or uncommon difficulties are referred to as resourcefulness. It entails overcoming challenges and limitations to solve problems and complete tasks. Making the most of your assets in order to create someone new or improved is another aspect of being resourceful.
Additionally, they possess the ability to remain resourceful in the midst of difficulty and come up with original solutions to challenges. Therefore, option E is the correct option.
Learn more about quality, here:
https://brainly.com/question/31317502
#SPJ2
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.
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.
Define an array with the following numbers 12,3,56,79,91
Here's an array definition in Python that includes the numbers 12, 3, 56, 79, and 91:
python
my_array = [12, 3, 56, 79, 91]
What is the array ?In the code provided, an array (or a list) is defined with the name my_array and it contains the numbers 12, 3, 56, 79, and 91 as its elements. Arrays are a collection of items, in this case, numbers, that are stored in a sequential manner and can be accessed using an index.
The syntax for defining an array in Python is to enclose the elements within square brackets [] and separate them by commas. In this case, the numbers 12, 3, 56, 79, and 91 are included as elements in the array. The array is then assigned to the variable my_array using the assignment operator =.
Once the array is defined, you can access individual elements in the array using their index. In Python, the index starts from 0, so my_array[0] represents the first element in the array, which is 12, my_array[1] represents the second element, which is 3, and so on. You can use these indices to read or modify the values stored in the array.
Read more about array here:
https://brainly.com/question/28061186
#SPJ1
These operating systems were referred to as command-based.
Android and MS-DOS
iOS and Windows
LINUX and UNIX
MS-DOS and UNIX
\({\underline{\boxed{\bf{MS - DOS \: and \: UNIX}}}}\)
)A cable has a bandwidth of 3000 Hz assigned for data communication. The SNR is 3162. How many signal levels do we need?
Answer:
\(L=56.2\)
Explanation:
We need to use two theoretical formulas: Shannon Capacity and Nyquist Bit Rate.
From Shannon:
\(C=B*log_2(SNR+1)\)
From Nyquist:
\(C=2B*log_2(L)\)
Where:
\(C= Channel\hspace{3}capacity\\B=Bandwidth\hspace{3} of\hspace{3} the\hspace{3} channel\\SNR=Signal\hspace{3}to\hspace{3}noise\hspace{3}ratio\\L=Number\hspace{3}of\hspace{3}signal\hspace{3}levels\hspace{3}used\hspace{3}to\hspace{3}represent\hspace{3}data\)
Using the data provided by the problem and the equations above, let's find the signal levels we need. Using the Shannon equation:
\(C=B*log_2(SNR+1)\)
Where:
\(B=3000Hz\\SNR=3162\)
\(C=3000*log_2(3162+1)\\\\C=3000*log_2(3163)\\\\C=34881.23352\hspace{3}bps\)
Now, using Nyquist equation:
\(C=2B*log_2(L)\)
Where:
\(C=34881.23352\hspace{3}bps\\B=3000Hz\)
\(34881.23352=2*3000*log_2(L)\\\\34881.23352=6000*log_2(L)\)
Solving for \(L\) :
\(\frac{34881.23352}{6000} =log_2(L)\\\\5.81353892=log_2(L)\\\\2^{5.81353892} =2^{log_2(L)}\\ \\56.24055476=L\\\\L\approx56.2\)
Therefore, we need approximately 56.2 signal levels.
When will this program stop calling the playLevel function?
Answer:
D
Explanation:
when the life value = 0 it means the program will stop
reindexing only valid with uniquely valued index objects
This means that the index must consist of only unique values, such as integers or strings, and not duplicates or multiple values of the same type. Reindexing allows for the creation of an ordered list of values from an existing set of values, which can be useful for data analysis.
Reindexing is a useful tool for data analysis because it allows for the creation of an ordered list of values from an existing set of values. This is only possible when the index consists of unique values, such as integers or strings. Duplicates or multiple values of the same type in the index will not be accepted for reindexing. This technique is useful for organizing data in a manner that is easy to analyze, such as sorting a list of numbers from lowest to highest. Additionally, reindexing can help identify any outliers or missing values in the data set. Reindexing is a powerful tool for data analysis and should be used when appropriate.
Learn more about string here-
brainly.com/question/14528583
#SPJ4
The complete question is
Reindexing is only valid with uniquely valued index objects in Python.
If you are working in a word-processing program and need to learn about its features, the best place to get assistants is from the ________.
A. application's help menu
B. desktop
C. toolbar
D. start menu
Answer:
A
Explanation:
plz mark me brainlies
Answer:
A. Application's help menu
Explanation: