Answer:
use your keyboard
Explanation:
listen your 2 years old i know you can type daughter
Answer:
Jason = <span>20yrs.old</span>
Mandy = <span>15yrs.old</span>
Explanation:
Let
J = Jason's age
M = Mandy's age
<span>J+M=35</span> ..... eq. 1
<span>J−10=2<span>(M−10)</span></span> ..... eq. 2
From eq. 1
<span>J=35−M</span>
Substitute this in eq. 2.
<span><span>(35−M)</span>−10=2<span>(M−10)</span></span>
<span>35−10−M=2M−20</span>
<span>35−10+20=2M+M</span>
<span>45=3M</span>
<span><span>453</span>=<span><span>3M</span>3</span></span>
<span>15=M</span>
<span>J=35−M</span>
<span>J=35−15</span>
<span>J=<span>20</span></span>
Answer:
The correct answer to the following question will be "Computer-assisted design".
Explanation:
- CAD seems to be computer software or development for creating 2D as well as 3D features or models.
- This technology could be used in a wide variety of companies and professions which could be used to produce architectural models, construction aims, renderings, power systems, technical diagrams, blueprints as well as visual effects through your favorite films and shows.
So that Daniel uses certain technology to support or create these 3D designs.
Answer:
nahh I'm still in disbelieve
A complete program with the method ShowCar:
import java.util.Scanner; // header file
public class ShowChar
{
public static void main(String[] args)
{
String lnOfText;
int i;
Scanner input = new Scanner(System.in);
System.out.print("Enter a line of text:");
lnOfText = input.nextLine();
System.out.print(" Enter your index: ");
i = input.nextInt();
show_Char(lnOfText,i);
}
public static void show_Char(String str_a, int i)
{
System.out.print(str_a.charAt(i));
}
}
In this program, both the inputs ie. a sentence or line of text as well as the index position is obtained. A method is written to find the string at that particular position. Finally the method prints that character at the particular index.