Answer: Inheritance
Explanation: Inheritance is the feature that is displayed by the class where it happens to acquire the properties of the other classes and exhibit it. the inheriting nature of the class is seen in two different categories -superclass and subclass. It is a concept that is usually followed in the object -oriented programming. The reason for the inheritance is to reuse the element and their properties of other class.
Answer:
PoLymORpHiSm Kid. Other kid is wrong mark me branliest. TRUST ME
Explanation:
;3
Answer:
Microsoft word 365 allows two columns
Answer:
When you move or size a control in the Form Designer, Visual Studio automatically adjusts the properties that specify the location and size of the control.
Answer:
A. To ensure that management and the team has a clear picture of the state of the project
Explanation:
hope this helps!
Answer:
A
Explanation:
[8:53 PM]
2) Create a button with label “true” , clicking on the button toggle the value from “true” => “false” and “false” => “true”.(edited)
techsith (patel) — 03/03/2021
3) Create a counter and a button. clicking on the button increments the counter by one. double clicking on the button resets the counter to 0
Answer:too many words ahhh
Explanation:
(assuming jsx)
function Buttons (props) {
return(
{props.counterValue}
counter
increment
reset
);
}
var counterValue = 1;
function addup(a){
if(counterValue + a <= 20){
counterValue += a;
} else if (counterValue + a > 20){
//do nothing
}
ReactDOM.render(
,
document.getElementById('root')
);
}
function reset() {
counterValue = 1;
ReactDOM.render(
,
document.getElementById('root')
);
}
Answer:
// here is program in Java.
// import package
import java.util.*;
// class definition
class Main
{
// main method of the class
public static void main (String[] args) throws java.lang.Exception
{
try{
// variable
int gall;
double cost=0;
// object to read value from user
Scanner scr=new Scanner(System.in);
// ask user to enter type
System.out.print("Enter customer type (R for residential or B for business ):");
// read type of customer
char t=scr.next().charAt(0);
if(t=='r'||t=='R')
{
System.out.print("enter the number of gallons:");
//read number of gallons
gall=scr.nextInt();
// if number of gallons are less or equal to 6000
if(gall<=6000)
{
// calculate cost
cost=gall*0.007;
// print cost
System.out.println("total cost is: "+cost);
}
else
{
// calculate cost
cost=(6000*0.005)+((gall-6000)*0.007);
// print cost
System.out.println("total cost is: "+cost);
}
}
else if(t=='b'||t=='B')
{
System.out.print("enter the number of gallons:");
//read number of gallons
gall=scr.nextInt();
// if number of gallons are less or equal to 8000
if(gall<=8000)
{
// calculate cost
cost=gall*0.006;
// print cost
System.out.println("total cost is: "+cost);
}
else
{// calculate cost
cost=(8000*0.006)+((gall-8000)*0.008);
// print cost
System.out.println("total cost is: "+cost);
}
}
}catch(Exception ex){
return;}
}
}
Explanation:
Ask user to enter the type of customer and assign it to variable "t" with scanner object.If the customer type is business then read the number of gallons from user and assign it to variable "gall". Then calculate cost of gallons, if gallons are less or equal to 8000 then multiply it with 0.006.And if gallons are greater than 8000, cost for first 8000 will be multiply by 0.006 and for rest gallons multiply with 0.008.Similarly if customer type is residential then for first 6000 gallons cost will be multiply by 0.005 and for rest it will multiply by 0.007. Then print the cost.
Output:
Enter customer type (R for residential or B for business ):r
enter the number of gallons:8000
total cost is: 44.0
Answer:
When working in multicultural groups, students may find challenges in the areas of language barriers, social behavior expectations, and communication style differences.
Explanation:
Answer:
Different Communication Styles
Different Attitudes Toward Conflict
Different Approaches to Completing Tasks
Different Decision-Making Styles
Different Attitudes Toward Disclosure
Different Approaches to Knowing
Explanation: