Answer:
3. Will
4. Realize
5. Fabric
6. Bandana
Realize is in is in [1][1], Fabric is in [3][2], Bandana is in [2][1] . Arrays inside of arrays are what are known as two-dimensional arrays.
What is two-dimensional array?Arrays inside of arrays are what are known as two-dimensional arrays. 2D arrays, which are made up of rows and columns, are constructed as metrics. To create a database that resembles the data structure, 2D arrays are frequently used.
You may store a large amount of data using 2d arrays at once, which can then be supplied to as many different functions as necessary. Two indices are used to refer to the position of the data element in two-dimensional or multi-dimensional arrays. Row and column are the two dimensions indicated by the name. Realize is in is in [1][1], Fabric is in [3][2], Bandana is in [2][1] .
Therefore, realize is in is in [1][1], Fabric is in [3][2], Bandana is in [2][1].
To know more about two-dimensional array, here:
https://brainly.com/question/30463245
#SPJ3
WHAT DO YOU LEARN IN CODE.ORG
Answer:
You learn how to animate and make websites
Explanation:
how to make websites and code/program games!!
Introduction to Programming Workbook
Draw flowchart to find the largest among threu different numbers entered by a user
In the file Calculator.java, write a class called Calculator that emulates basic functions of a calculator: add, subtract, multiply, divide, and clear. The class has one private member field called value for the calculator's current value. Implement the following Constructor and instance methods as listed below: public Calculator() - Constructor method to set the member field to 0.0 public void add(double val) - add the parameter to the member field public void subtract(double val) - subtract the parameter from the member field public void multiply(double val) - multiply the member field by the parameter public void divide(double val) - divide the member field by the parameter public void clear( ) - set the member field to 0.0 public double getValue( ) - return the member field
Answer:
Explanation:
The following calculator class written in Java has all the methods and variables requested in the question, each completing their own specific function to the member variable.
class Calculator {
private double member;
public Calculator() {
this.member = 0.0;
}
public void add(double val) {
this.member += val;
}
public void subtract(double val) {
this.member -= val;
}
public void multiply(double val) {
this.member *= val;
}
public void divide(double val) {
this.member /= val;
}
public void clear() {
this.member = 0.0;
}
public double getValue() {
return this.member;
}
}
Let's talk about this cryptocurrency: Vechain (VET)
Answer:
This is gonna be interesting
⚠️⚠️⚠️⚠️HELP - What is the software that allocates resources of a physical computer to a virtual machine?
Group of answer choices
Switch
Operating systems
Hypervisor
HostVM
Answer:
the answer is going to be hostvm
An acceptable website design is one that meets
user design expectations and is also:
A.colorful
B.effective
C.template-based
D.standardized
Answer:
i'd say b
Explanation:
PLZZ HELP!!!
Select the correct answer.
Brian’s team has built a new application based on the client’s requirements. They will deploy this application in multiple locations on the client side. Brian is unsure about the hardware and software specifications at the client side. Which option will help him best solve this issue?
A.
creating multiple test scripts
B.
automating test scripts
C.
creating multiple test plans
D.
creating multiple test environments
E.
communicating with the development team
Answer: Option D creating muiltiple test enviroments
Explanation: I had the same question and I hope this helps ( :
The option that will help Brain best solve this issue is by creating multiple test environments.
What is the specification of software?A software requirements specification (SRS) is known to be a type of requirement that are often written in a document that tells more about what the software can do.
Hence in the above scenario, what will help help Brain best solve this issue is by creating multiple test environments where the client can see a demonstration and be convince in getting the product.
Learn more about application from
https://brainly.com/question/24847617
What information will you find in the 16-bit field in an IP datagram?
Answer: This 16-bit field defines the entire packet size in bytes, including header and data. The minimum size is 20 bytes (header without data) and the maximum is 65,535 bytes. All hosts are required to be able to reassemble datagrams of size up to 576 bytes, but most modern hosts handle much larger packets.
Explanation: Hopefully this helps you with what ever u are doing.
An information which you will find in the 16-bit field in an IP datagram is: the total length of the datagram it's attached to.
An IP address is an abbreviation of internet protocol address and it can be defined as a unique number assigned to a computer or other network devices such as routers, switches, etc., in order to differentiate each device from one another in an active network system. Thus, an IP address is typically used to uniquely identify each computer or network device connected to the internet or an interconnected network.
In Computer networking, IP address are classified into two (2) main categories and these are;
Local (internal) IP address.Global (external) IP address.An IP datagram can be defined as the standard format of data that an internet protocol (IP) recognizes.
Generally, an IP datagram comprises two (2) main components and these include:
1. The header: it is used for sending messages on a computer to the protocol in the same layer of a destination (recipient) computer.
2. The data: this is a set of information that is transmitted from one computer to another over an interconnected network.
On a related note, an IP datagram contain three (3) fields which are typically used for the transmission of data;
Header length.IP version.Total length.The Total length is a field that is used to specify the total length of an IP datagram and it is typically 16-bits in size.
In conclusion, an information which is found in the 16-bit field in an IP datagram is the total length of the datagram it's attached to.
Find more information here: https://brainly.com/question/19204809
3. Java is Platform Independent. This means;
A. Java can run on any OS
need an OS to run
C. Java requires more than one OS to run
portable
D. Java is not
B. Java does
Answer:
Java can run on any OS
need an OS to run
Which option is the default configuration of the Junk Email Options in Outlook 2016?
No Automatic Filtering
Low
High
Safe Lists Only
Answer:
No Automatic Filtering
Answer:
NO automatic filtering
Explanation:
i took the quiz
The number of P/E cycles that a solid-state drive can support may vary, within what range?
o
1 to 100
1,000 to 100,000
10,000 to 10 million
10 billion to 10 trillion
Answer:
C. 10,000 To 10 Million
Explanation:
Got It Right On Edge
Answer:
the answer is C. 10,000 to 10 million
Explanation:
i took the test on edge
Write
algorithm to read 100 numbers
then display the largest.
Answer:
see picture
Explanation:
There is no need to store all the values, you can just keep track of the highest. Up to you to create a numbers file with 100 values.
Write a program that uses the Purchase class in 5.13. Set the prices to the following: Oranges: 10 for $2.99 Eggs: 12 for $1.69 Apples: 3 for $1.00 Watermelons: $4.39 each Bagels: 6 for $3.50 Set the purchased quantity to the following: 2 dozen oranges, 2 dozen eggs, 20 apples, 2 watermelons, 1 dozen bagels Display the total cost of the bill
Answer:
Explanation:
The following program is written in Java. Using the program code from Purchase class in 5.13 I created each one of the fruit objects. Then I set the price for each object using the setPrice method. Then I set the number of each fruit that I intended on buying with the setNumberBought method. Finally, I called each objects getTotalCost method to get the final price of each object which was all added to the totalCost instance variable. This instance variable was printed as the total cost of the bill at the end of the program. My code HIGHLIGHTED BELOW
//Entire code is in text file attached below.
//MY CODE HERE
DecimalFormat df = new DecimalFormat("0.00");
oranges.setPrice(10, 2.99);
oranges.setNumberBought(2*12);
eggs.setPrice(12, 1.69);
eggs.setNumberBought(2*12);
apples.setPrice(3, 1);
apples.setNumberBought(20);
watermelons.setPrice(1, 4.39);
watermelons.setNumberBought(2);
bagels.setPrice(6, 3.50);
bagels.setNumberBought(12);
totalCost = oranges.getTotalCost() + eggs.getTotalCost() + apples.getTotalCost() + watermelons.getTotalCost() + bagels.getTotalCost();
System.out.println("Total Cost: $" + df.format(totalCost));
}
}
Q3: State whether each of the following is true or false. If false, explain why. 1. A generic method cannot have the same method name as a nongeneric method. 2. All generic method declarations have a type-parameter section that immediately precedesthe method name. 3. A generic method can be overloaded by another generic method with the same methodname but different method parameters. 4. A type parameter can be declared only once in the type-parameter section but can appearmore than once in the method’s parameter list. 5. Type-parameter names among different generic methods must be unique. 6. The scope of a generic class’s type parameter is the entire class except its staticmembers.
Answer:
3
Explanation:
HELP PLZZZZZZZZ!!!!!!!!!!!
Type the correct answer in the box. Spell all words correctly.
Before a new email application could be released to the public, it was released for a few days to some account holders of a website. The project team then collected feedback from this limited number of users and later made the email application available for public use. What type of testing did the project team use?
The project team used_____________testing for the email application.
Answer:
Its either business format franchise or business brokers
NO LINKS
Do you need to pay monthly to stream on Twitch?
In python please!!! Write the definition of a function named countPos that reads integer values from standard input until there are none left and returns the number that are positive. The function must not use a loop of any kind.
Answer:Here is the method countPos
static int countPos(Scanner input){ //method that takes a reference to a Scanner object
int counter=0; // to count the positive integers
int number; //to store each integer value
if(input.hasNextInt()){ //checks if next token in this scanner input is an integer value
number=input.nextInt(); //nextInt() method of a Scanner object reads in a string of digits and converts them into an int type and stores it into number variable
counter=countPos(input); //calls method by passing the Scanner object and stores it in counter variable
if(number>0) //if the value is a positive number
counter++; } //adds 1 to the counter variable each time a positive input value is enountered
else { //if value is not a positive integer
return counter; } //returns the value of counter
return counter; } //returns the total count of the positive numbers
Explanation:
Here is the complete program:
import java.util.Scanner; //to take input from user
public class Main { //class name
//comments with each line of method below are given in Answer section
static int countPos(Scanner input){
int counter=0;
int number;
if(input.hasNextInt()){
number=input.nextInt();
counter=countPos(input);
if(number>0)
counter++; }
else {
return counter; }
return counter; }
public static void main(String[] args) { //start of main function
System.out.println("Number of positive integers: " + countPos(new Scanner(System.in))); } } //prints the number of positive integers by calling countPos method and passing Scanner object to it
The program uses hasNextInt method that returns the next token (next input value) and if condition checks using this method if the input value is an integer. nextInt() keeps scanning the next token of the input as an integer. If the input number is a positive number then the counter variable is incremented to 1 otherwise not. If the use enters anything other than an integer value then the program stops and returns the total number of positive integers input by the user. This technique is used in order to avoid using any loop. The program and its output is attached
Explanation:
Characteristics of RAM
Answer:
Short Data lifetime, Less Expensive, Needs to be refreshed often, Smaller in size, etc. tell me if you need more.
Does anyone have the answers to edhesive 4.2 lesson practice I’ve been stuck on it for like 3 months
Answer:
1. 5, 10
2. 5, 7, 9, 11
3. 21
4. 10
Explanation:
Label the following website navigation methods
according to their importance, where 1 is most
important and 3 is least important.
Site map:
Navigation menu:
Site search:
Answer:
Technology is very important
Answer:
Site map: 3
Navigation menu:1
Site search:2
Explanation:
Mattias's friend asked him to critique his presentation about gorillas. Mattias noticed that there weren't any images of gorillas. What feedback can Mattias give to improve his friend's presentation?
a I like your title, but did you not think to add pictures of gorillas?
b It's ok, but it would be better if I just added pictures to your presentation.
c Really great information, but I think adding a picture of a gorilla would be great.
d You're missing a gorilla picture. Add one.
Answer:
c
Explanation:
Answer:B
Really great information, but I think adding a picture of a gorilla would be great.
Explanation:
Mattias's friend asked him to critique his presentation about gorillas. Mattias noticed that there weren't any images of gorillas. What feedback can Mattias give to improve his friend's presentation?
Group of answer choices
A)You're missing a gorilla picture. Add one.
B)Really great information, but I think adding a picture of a gorilla would be great.
C)I like your title, but did you not think to add pictures of gorillas?
D)It's ok, but it would be better if I just added pictures to your presentation.
PLZZZ HELP
Select the correct answer.
Ed is the manager of a software design team. He needs to call a design review meeting. Who should he call for this meeting?
A.
only the stakeholders and external reviewer
B.
stakeholders and technical team
C.
the technical team and external reviewer
D.
only the technical team
E.
only the external reviewer and stakeholders
Answer:
C: the technical team and external reviewer
Explanation:
Plato/Edmentum
Evaluate the following information that shows the projected change in employment from 2014-2024: How can job seekers use the chart? Add data to a résumé and cover letter Gain awareness of how growth trends can impact career plans Research which careers match current skills Talk to community members in a knowledgeable manner You must check the box below prior to submitting your exam! Check this box to indicate you are ready to submit your exam Submit Exam FDK191.10
Answer:
Answer is B.
Gain awareness of how growth trends can impact career plans
Explanation:
"Wake up to reality! Nothing ever goes as planned in this world. The longer you live, the more you realize that in this reality only pain, suffering and futility exist.
Where is this quote from
Answer:
Naruto Shippuden and from madara uchiha
Explanation:
Answer:
Madara to Obito in Naruto Shippuden after Obito regains conscious from passing out under the rock from the third graet ninja war
Explanation:
what is information richness
Information Richness is the ability of information to change understanding within a time interval.
Hope it helps. Have a great day.
Brainliest would be greatly appreciated.
___________________________________________________________
#SaveTheEarth
#SpreadTheLove
- Mitsu JK
PLZZZ HELP!!!!!!!
Select the correct answer.
Which of these examples best describes unit testing?
A.
The tester finds incorrect functionality on the home page.
B.
The login page does not accept existing user credentials.
C.
There is no database connectivity.
D.
The developer checks the loops in the procedure.
E.
Multiple users slow down the speed of the system.
Answer: A is the correct choice.
The option that is an example that describes unit testing is the developer checks the loops in the procedure.
What is unit testing?This type of test is known to be called unit component. It is regarded as a form of a single function or code of any kind of application.
Conclusively, A good example that tells more about unit testing is the when a developer monitors the loops in the procedure so as to see if there is any error or omissions.
Learn more about unit testing from
https://brainly.com/question/24964187
Consider the following argument: Any piece of software that is in the public domain may be copied without permission or fee. But that cannot be done in the case of software under copyright. So, software under copyright must not be in the public domain. The conclusion of the argument is:
Answer:
"software under copyright must not be in the public domain"
Explanation:
The conclusion of his argument is "software under copyright must not be in the public domain". This combines the two premises that were stated before it in order to form a logical outcome based on the premises. In the case of logic, this would basically be an
IF A and IF B, Then C
type of logic, in which A is "Public Domain Work can be copied", B is "Software under Copyright cannot be copied", and C is the conclusion which would be "software under copyright must not be in the public domain"
Select the correct answer.
Who takes care of the final layout of the product that meets the standards set by UX designers?
O A web developer
ОВ.
design director
OC. UX designer
OD. UI designer
Reset
Next
Hi
Answer:
UI designer
Explanation:
PLZZZ HELP!!!
Select the correct answer.
A testing team has a new software application to test. While writing the test plan, the team enters some functions that are out of scope for the current phase of testing. In which section of the test plan will you find these functions?
A.
Introduction
B.
Features not to Test
C.
Deliverables
D.
Dependencies
Answer:
D the answer is D or c one of those 2
How can you get feedback on your presentation from someone who is far away?
a Email your PowerPoint notes to the person.
b Explain your topic over the phone.
c Record your presentation and send it to them.
d Send them your PowerPoint slides.
Answer:
C. Record your presentation...
I think this because if you want feedback you would definetly talk and record your presentation so the person can give you a clear response