Answer: a higher level of technical skill may be required to install, use, or modify it.
Explanation:
Answer:
B. a higher level of technical skill may be required to install, use, or modify it.
Explanation:
Explain why decomposition will be used in creating the algorithm for the game including two dice.
Proper numeric keyboarding technique includes all of these techniques except
O keeping your wrist straight
O resting your fingers gently on the home keys
O looking at the keys
O pressing the keys squarely in the center
Answer: Its the 1st choice, 2nd choice, and the final one is the 4th one. (NOT the third answer choice)
Explanation: (I just took the test)... Hopefully this helps and good luck.
In an inspection, usually the first thing an inspector will want to see is:
Answer:
Your records and paperwork
if you exit a program without saving the document on which you are working, or the computer accidentally losses electrical power, the document will be lost
Which statement is true about the purpose of a work in process constraint?
The available options are:
A. It identifies possible constraints for Solution completion.
B. It helps analyze, approve, and track Portfolio Epics and Enablers.
C. It captures where all new "big" ideas come from.
D. It encourages collaboration and enables
Answer:
It identifies possible constraints for Solution completion
Explanation:
Work in Process is an activity or operational related term that describes a form of self-assigned restriction by a team or organization to aid them in regulating their responsibility, exercise corporate reasoning, and recognize alternatives for lasting development.
Hence, in this case, considering the available option, the correct answer is that Work in Process " identifies possible constraints for Solution completion."
The statement is true about the purpose of a work in process constraint is that it identifies possible constraints for Solution completion.
The WIP limits is often called the work-in-process limits. They are known as fixed constraints. it is implemented on Kanban boards, and it aids teams actively to remove waste from their processes.It also helps teams to optimize their workflows for value delivery.
The WIP limits is used in agile development as it set the maximum amount of work that can exist in each status of a workflow.
Learn more from
https://brainly.com/question/15395767
The full question is below
Which statement is true about the purpose of a work in process constraint?
The options to the question are:
A. It identifies possible constraints for Solution completion.
B. It helps analyze, approve, and track Portfolio Epics and Enablers.
C. It captures where all new "big" ideas come from.
D. It encourages collaboration and enables
Which of these browsers was the first widely adopted?
1. Internet Explorer
2. Chrome
3. Firefox
4. Netscape
Answer:
netscape
Explanation:
The primary reason for networking standards is to: Group of answer choices simplify cost accounting for networks ensure that hardware and software produced by different vendors can work together make it more difficult to develop hardware and software that link different networks ensure that all network components of a particular network can be provided by only one vendor lock customers into buying network components from one vendor
Answer:
ensure that hardware and software produced by different vendors can work together.
Explanation:
Networking standards can be defined as a set of rules and requirements for data communication which are necessary for the inter-operation of network devices (hardware) and software application processes.
Hence, the primary reason for networking standards is to ensure that hardware and software produced by different vendors can work together. This ultimately implies that, networking standards makes it possible for various vendors and manufacturers to develop or produce networks that avail users the ability and opportunity to share informations and communicate with one another easily.
Some examples of organizations responsible for creating networking standards are;
1. International Telecommunications Union— Telecommunications (ITU-T).
2. International Organization for Standardization (ISO).
3. American National Standards Institute (ANSI).
Additionally, the generally accepted standards for networking are; HTML, HTTP, IMAP, POP, SNMP, SMTP, TCP etc.
Question 4
When something is saved to the cloud, it means it's stored on Internet servers
instead of on your computer's hard drive.
Answer:
Wait is this a question or are you for real
Answer:it is stored on the internet server instead
of your computer's hard drive.
Explanation:
the cloud is the Internet—more specifically, it's all of the things you can access remotely over the Internet.
How is a Creative Commons license different from a regular copyright? As a reminder, in the warm-up we saw the this scenario: ----------------------------------------------------------------------------------------------------------------------- Imagine you were using some of our pixelation tools to create an image and you posted it online for your friends to see - but, a week later you find out someone took that image and put it on a T-shirt that they’re selling for $10 each. -------------------------------------------------------------------------------------------------------------------- Now that we understand Copyright, what would need to change in order for the scenario from the warm-up to be okay?
Explanation:
You need to change the whole thing and do it differently.. And register it.
The thing that'll need to be changed in order for the scenario from the warm-up to be okay is to create a creative common license which will give room for people to be able to use my work and sell items that have my work on them.
In this case, the creative commons license enables one to share copyrighted work easily. It should be noted that intense protections are put on a work when the work is copyrighted. With the creative common, a person can allow others use their work as long as the person abide to rules.In conclusion, creative common allows one have control of one's work.
Read related link on:
https://brainly.com/question/
Which of the following HTML structures arranges text in multiple rows and columns?
a.
b.
c.
d.
Answer:
b. <table>
Explanation:
HTML is an acronym for hypertext markup language and it is a standard programming language which is used for designing, developing and creating web pages.
Generally, all HTML documents are divided into two (2) main parts; body and head. The head contains information such as version of HTML, title of a page, metadata, link to custom favicons and CSS etc. The body of the HTML document contains the contents or informations of a web page to be displayed.
A <table> is a HTML structure that arranges text in multiple rows and columns. Other data that can be arranged into rows and columns in a HTML table are images, links, and other tables. Each row in a table is denoted with a <tr> tag.
How has technology influenced space exploration?
Answer:
One of the biggest benefits of machine learning when it comes to space exploration is that programs can sift through the available data more easily than humans, which increases the chance of finding planets just by looking at datasets. It's even thought that AI could be instrumental in locating extra-terrestrial life.
Explanation:
Research and a well-written problem statement are important because A)they give a clear understanding of the problem and its solution. B)they ensure that anyone in the general public will be able to understand and solve the problem. C)they give a list of the needs of the stakeholders. D)they ensure that questions still need to be asked about the problem.
Answer:
A. they give a clear understanding of the problem and it's solution
Explanation:
Research and a well-written problem statement are important because they give a clear understanding of the problem and its solution.
Answer:
Research and a well-written problem statement are important because
they give a clear understanding of the problem and its solution.
they ensure that anyone in the general public will be able to understand and solve the problem.
they give a list of the needs of the stakeholders.
they ensure that questions still need to be asked about the problem.
Digital information processed into a useful form is
Answer:
Output
Explanation:
edhesive 1.7 code practice question 1
Fix the error so that the code works correctly
input (“Enter a number: “)
print (num * 8)
How do I fix the error?
Answer:
num = int(input("Enter a number: "))
print(num * 8)
Explanation:
I highlighted the parts that are added
Since you are getting an input from the user, you need to set the result to a variable. In this case, it is num.
Since it is a number, you need to specify the its type. In this case, it may be int.
Also, the quotation marks must be written as seen.
The corrected program which ensures that the program runs correctly is written thus :
num = int(input("Enter a number: ")
#user supplied input should be assigned to the varibale num
print(num * 8)
#multiplies num by 8 and displays the output.
The num variable in the second line isn't attached to any value, therefore, it will throw an error. The user input value should be attached to the variable, 'num' The second line of code multiplies num by 8 and displays the product.Therefore, if the the user input is 3 ; the final result displayed will be : (3 × 8) = 24.
Learn more :https://brainly.com/question/15566254
Choose the two statements that best describe the relationship between HTTP and the World Wide Web
Answer:
(I) and (III) statements that best describe the relationship between HTTP and the World Wide Web.
Explanation:
Given that,
The following statements that is describe the relationship between HTTP and the World Wide Web
(I). HTTP and WWW are used in website.
(II). World Wide Web are not interlinked by hypertext.
(III). WWW is the system of connected hypertext documents that can be viewed on web browsers.
We know that,
HTTP :
The full form of HTTP is Hypertext Transfer Protocol . A protocol which permits the getting of plans it is called HTTP.
For example : HTML documents.
It is an application of a protocol where any data exchange on the Web.
It is a protocol of online communication and data transfer one system to another system.
WWW :
The full form of WWW is world wide web. It is used as a web which is information systems where documents and other web methods are checked by uniform resource locators, which may be interlinked by hypertext.
It is a collection of webpages.
Hence, (I) and (III) statements that best describe the relationship between HTTP and the World Wide Web.
What is meant by computer generation?
Answer:
The development of computer took place into 5 phases which is known as generation of computer.
Explanation:
From first generation computer till now, development of computer took place in 5 distinct which is also know as generation of computer.
Create a Boolean function odd_number_digits(n) that returns True when a positive integer has an odd number of digits. (You may assume that I will not use a number greater than 1,000,000.) Then, use it to make a
function sum_odd_digits(n) that sums all the numbers from 0 to n that have an odd number of digits.
Answer:
Following are the code to this question:
import java.util.*;//import package for user input
public class Main//defining class main
{
public static boolean odd_number_digits(int n)//defining boolean method odd_number_digits
{
if(n>0 && n%2!=0)//defining if block that check value is positive and odd number
{
return true;//return value true
}
else//defining else block
{
return false;//return false value
}
}
public static void sum_odd_digits(int n)//defining a method sum_odd_digits
{
int sum=0,i;//defining integer variable
for(i=0;i<=n;i++)//defining for loop
{
if(i%2!=0)//defining if block for odd number
{
sum=sum+i;//add odd number
}
}
System.out.print(sum);//use print method to print sum value
}
public static void main(String[] args) //defining main method
{
Scanner ox=new Scanner(System.in);//creating Scanner object
int n= ox.nextInt();//defining integer variable for input value
System.out.print(odd_number_digits(n)+ "\n");//use print method to call method
System.out.println("Sum of odd numbers: ");//print message
sum_odd_digits(n);//calling method
}
}
Output:
please find the attachment.
Explanation:
In the above code, two methods "odd_number_digits and sum_odd_digits" are defined in which the first method return type is boolean because it will true or false value, and the second method returns the sum of odd numbers.
In the "odd_number_digits" method, an integer variable passes as an argument and inside the method, if block is used that check value is a positive and odd number then it will return a true value.
In the "sum_odd_digits" method, it accepts an integer parameter "n", and define integer variable "sum" inside the method, which uses the for loop, inside the loop if block is used that counts odd numbers and adds its in sum and print its value.
What is considered to be the core of the Unix operating system ?
Answer:
My lips
Explanation:
Just kidding what is that?
Complete the statement below with the correct term.
A single-mode
uses a single ray of light, called a mode, to transmit data.
Answer:
Its Fiber
Explanation:
Trust me
Answer:
Data transfer through the core using a single light ray (the ray is also called a mode).
The core diameter is around 10 microns.
At distances up to 3 km, single mode delivers data rates up to 10 Gbps.
Cable lengths can extend a great distance. Or FIBER
Explanation:
hope this helps
write a program that first asks the user to enter three real numbers using GUI input. Print the sum if all three numbers are positive, print the product of the two positive numbers if only one is negative - use a nested if. Then, ask the user to enter two real numbers from the console. If both numbers are negative, print the quotient.
Answer:
Here is the complete program:
import javax.swing.JOptionPane; //to use GUI in JAVA application
import java.util.Scanner; //to take input from user at console
public class Main {
public static void main(String[] args) { //start of main function body
String num1, num2,num3; //declare three variables to store strings of numbers for input dialog
double number1, number2, number3, sum,product; //declare three double type variables to hold the real numbers
num1 = JOptionPane.showInputDialog("num1"); //shows a dialog box prompting user to enter value of first number i.e. num1
number1 = Double.parseDouble(num1); //scans and reads the value of first input number i.e. number1
num2 = JOptionPane.showInputDialog("num2"); //shows a dialog box prompting user to enter value of second number i.e. num2
number2 = Double.parseDouble(num2); //reads number2
num3 = JOptionPane.showInputDialog("num3"); //shows a dialog box prompting user to enter value of third number i.e. num3
number3 = Double.parseDouble(num3); //reads number3
if(number1>0&& number2>0 && number3>0){ //checks if all three numbers are positive
sum = number1 + number2+ number3; //displays the sum by adding all three positive numbers
JOptionPane.showMessageDialog(null, "the sum is : " + sum , "Results", JOptionPane.PLAIN_MESSAGE ); } // displays the result of sum in a message dialog box
if(number1<0 && number2>0 && number3>0) { //checks if number2 and number3 are positive
product = number2*number3; //computes product
JOptionPane.showMessageDialog(null, "the product is : " + product , "Results", JOptionPane.PLAIN_MESSAGE ); } //displays the result
else if (number2<0&&number1>0&&number3>0){ //checks if number1 and number3 are positive
product = number1*number3; //computes product
JOptionPane.showMessageDialog(null, "the product is : " + product , "Results", JOptionPane.PLAIN_MESSAGE ); } //displays the result
else if (number3<0 && number1>0 && number2>0) { //checks if number1 and number2 are positive
product = number1*number2; //computes product of 2 positive numbers
JOptionPane.showMessageDialog(null, "the product is : " + product , "Results", JOptionPane.PLAIN_MESSAGE ); } //displays the result
else { /.if all the numbers are positive.
/*However this part is optional. You can just use else part for above else if statement and exclude this else part. In this way the product of all three positive numbers is not computed and product is only computed when only two numbers of the three are positive */
product = number1*number2*number3; //computes product of all three positive numbers
JOptionPane.showMessageDialog(null, "the product is : " + product , "Results", JOptionPane.PLAIN_MESSAGE ); } //displays the result
Scanner scan = new Scanner(System.in); //creates a Scanner class object
double value1 , value2, quotient; //declares variables to hold the values of two real numbers and the result of division of the two real numbers is stored in quotient variable
System.out.println("Enter the first real number: "); //prompts user to enter the value of first real number from the console
value1 = scan.nextDouble(); //reads the first number from user
System.out.println("Enter the second real number : "); //prompts user to enter the value of second real number from the console
value2 = scan.nextDouble(); //reads the second number from user
if(value1<0&&value2<0) { //checks if both the numbers are negative
quotient = value1/value2; //compute the quotient
JOptionPane.showMessageDialog(null, "the quotient is : " + quotient , "Results", JOptionPane.PLAIN_MESSAGE ); } //displays result
else //if both numbers are not negative
JOptionPane.showMessageDialog(null, "Both numbers are not negative" ); //displays this message in a dialog box
} }
Explanation:
In the above given code if you want to display the outputs in console then alter the following statements as follows:
if(number1>0&& number2>0 && number3>0){
sum = number1 + number2+ number3;
System.out.println("the sum is : " + sum); }
if(number1<0 && number2>0 && number3>0) {
product = number2*number3;
System.out.println("the product is : " + product); }
else if (number2<0&&number1>0&&number3>0){
product = number1*number3;
System.out.println("the product is : " + product); }
else if (number3<0 && number1>0 && number2>0) {
product = number1*number2;
System.out.println("the product is : " + product); }
else {
product = number1*number2*number3;
System.out.println("the product is : " + product); }
Scanner scan = new Scanner(System.in);
double value1 , value2, quotient;
System.out.println("Enter the first real number: ");
value1 = scan.nextDouble();
System.out.println("Enter the second real number : ");
value2 = scan.nextDouble();
if(value1<0&&value2<0) {
quotient = value1/value2;
System.out.println("the quotient is : " + quotient); }
else
System.out.println("Both numbers are not negative");
Notice that all the JOptionPane.showMessageDialog statement are changed with System.out.println which prints the results on the console.
Suppose you have a class Ship, which was written by another programmer who used to work for your employer. Ship is used in several different applications. Ship contains a public method called getBearing() that consults gyroscopes and a compass to determine the direction in which the ship is moving and returns a Location object. You need to refactor the code to use a GPS receiver instead. You should
Answer:
Research of the GPS features and the modules and packages needed by the programming language to implement and receive data from a GPS tracker.
Explanation:
The Ship class is a blueprint that holds a data structure of a ship's location in coordinates. The location variable can be changed using the getBearing method and an instance of the ship class can be made several times for different ships in the harbor. This class depicts the power of object-oriented programming.
Refactoring is a concept in software engineering where source codes are modified to achieve code efficiency and speed. All programming language source code should be refactored where needed with the right packages or modules.
which of the following is another term for a variable, such as cost or schedule, that limits the freedom of design, development, or manufacture of a product?
Answer:
constraint
Explanation:
Which color reflects more light red blue black or white
Which of the following is used to encrypt web application data?
a. MD5
b. AES
c. SHA
d. DHA
Answer:
b. AES
Explanation:
AES is an acronym for Advanced Encryption Standard and it is a cryptographic or symmetric block cipher that is based on a substitution-permutation network (SPN) used for the encryption of sensitive data over the internet or web. AES uses a key length of 128, 192 or 256 bits and a block length of 128 bits to encrypt data on web applications.
It is an encryption standard of the government of the United States of America and is supported by the National Institute of Standards and Technology (NIST).
Hence, AES is used to encrypt web application data and it uses an algorithm developed by Vincent Rijmen and Joan Daemen, known as the Rijndael algorithm.
Plzz helps me with hw
Answer:
1. not statistical
2. statistical
3. statistical
4. not statistical
5. statistical
6. not statistical
7. statistical
Explanation:
The statistical can compare more then 1 thing to make it reasonable.
Explain demand paging with a proper example
which of the file names below follows standard file naming convention
BUS-APP_QUZ_CH02_V01
5. Which one of the following best defines a network server?
O A A type of network system that provides resources to network clients
B A type of system where all devices on the network are clients
C A type of network with one server and multiple clients
O D A type of device that connects all all other network devices together
Answer:
i thank it is B for the answer
Chunking is a good strategy for completing large assignments because it makes the work
O less boring.
more thorough.
less difficult
O more manageable.
Answer:
D. more manageable
Explanation:
it wouldn't make the work less boring, wont make work less difficult and and it wont help u get more through quicker
Why are problem-solving strategies important? Choose all that apply. ensures important factors are taken into consideration ensures everyone involved in the solution understands the steps that are being taken makes it possible to find all solutions makes it possible to repeat the process to refine the solution DONE
Answer:
A,B,D
Explanation:
Answer:
A: ensures important factors are taken into consideration
B: ensures everyone involved in the solution understands the steps that are being taken
D: makes it possible to repeat the process to refine the solution