Answer:
I want to answer the 1st question. It asks, “Will we treat people unfairly for crimes they haven’t committed?” Well, of course, that’s a 100% chance. But, some people forget that people treat people unfairly for crimes they haven’t committed. Some people stay in jail for up to 35 years and are then released because they are innocent. Yes, computers will make mistakes, but the probability is much, much smaller than a human.
Explanation:
Answer:
The answer to this question is given below in the explanation section
Explanation:
The correct answer is :
A reader needs to hear a word pronounced
A student needs to take notes about a text
Because, text to speech tools mostly used to hear the text written in some files such as reading text from pdf file etc, or word pronunciation. However other options are not right because, reading a difficult material does not make sense with reading it links to understanding.
However, speech to text can be used by the student to take notes while listening the text, but would be easy instead of taking notes and listening, it is easy to copy the text.
The Software App That I Would Use Would Be NumericalDataHelp.com ... I Use that all the time ... If you cant find it just search in Google or Firefox Numerical Data Help and then you should be able to find some help there ... I hope that this helped !!! If it did mark me brainiest
Answer:
In the given program, a parameterized constructor declaration is wrong, which can be described as follows:
Explanation:
Code:
class TempClass //defining class TempClass
{
int i; //defining integer varaible i
TempClass(int j)//defining parameterized constructor
{
i = j; //variable holds a value
System.out.print(i); //print value
}
}
public class Main //defining class Main
{
public static void main(String[] aw) //defining main method
{
TempClass temp =new TempClass(2); //creating class Object and call parameterized constructor.
}
}
Description:
- In the given java code, two classes "TempClass and Main" is defined, inside the TempClass class an integer variable "i" and a parameterized constructor is declared, inside the constructor integer variable "i" hold constructor parameter value, the use print method to prints its value.
- Then the main class is defined, inside this main method is declared, in this method, the TempClass object "temp" is defined, that call the parameter constructor.