(50 points) What animes should I watch?

Answers

Answer 1

Answer:

You should watch The silent voice it rly good ngl. it about a deaf girl gettin bullied n later on the future he says sorry it a good movie

Explanation:


Related Questions

8.7 lesson practice question 1
And don’t say the answer is matrixaarrays because it’s not right

Answers

Answer:

parallel

Explanation:

i got 100 its the same as question 3 on there

Using more than one array to store a related array would be known as a Parallel array.

Parallel array

A parallel array seems to be a construction or framework which appears to contain many arrays.

Almost all of these arrays would be similar in size or dimensions, and indeed the components of such are interconnected to one another. A parallel array's items essentially symbolize that very same thing.

Thus the above answer is correct.

Find out more information about parallel array here:

https://brainly.com/question/19560147

Please help my daughter needs to pass this

Answers

Answer:

Tab

Space = | | one space in between

Tab in a standard document = |     | five spaces in between

Hope this helps. Have a nice day.

How many triangles can you make if the side lengths are 4 cm, 5 cm, and 11 cm?

Answers

i would think you could create infinity triangles but the triangle you are describing is obtuse

The last programming statement in a Java program is the class statement.


true

false

Answers

Answer:

False

Explanation:

Hope dis helps

It’s is false :) hope you pass your test

swapping as applied in memory management with an aid of a diagram​

Answers

Answer:

what do i help on?

Explanation:

You are developing a Website that is going to be viewed extensively on smartphones and tablets. Which of the following should you implement when developing for mobile devices?
This task contains the radio buttons and checkboxes for options. The shortcut keys to perform this task are A to H and alt+1 to alt+9.
A

Increase margins and padding to make the text on the mobile device screen easier to read.
B

Avoid using heading tags to build the structure of the page and to style text.
C

Do not label form fields to avoid unnecessary verbiage.
D

Always use the alt attribute in your tags.

Answers

increase margins and padding to make the text on the mobile device screen easier to read is the answer. i will answer by typing the whole answer cause i dont want you to get mixed up

You misplaced your company ID badge. Unfortunately, you had just changed your password and taped it to the back of the badge. It would not be difficult for someone to guess your user ID. With those two pieces of information, someone could access the files you have permission to work with, change the data stored there, delete files, or alter the access to the files. Which of the following is at risk in this scenario?

a. The confidentiality of the data
b. The integrity of the data
c. The accessibility of the data
d. None of the above

Answers

Answer:

a

Explanation:

Which sentence best describes how block-based code works?
Lines of code make physical blocks move.
Each block creates printer output.
Lines of code are used to print blocks.
Each block connects to one (or more) instructions written in code.

Answers

Answer:

Explanation:

each block

Answer:

each block

Explanation:

Which of the following is not an input device?



Printers



Sensors



keyboards



Scanners

Answers

Answer:

Printers

Explanation:

Sensors detect something and send some kind of pulse in response.

Keyboards can be used to input characters into a device

Scanners can be used to input a digital version of some material document.

Only printers take a digital form from the computer and turn it into something physical

Question :
An end user has just clicked the OK button on a Web document to send information to the Web server. Which of the following contains a reference to the CGI script that allows this Webpage to send information to a Web server?
This task contains the radio buttons and checkboxes for options. The shortcut keys to perform this task are A to H and alt+1 to alt+9.
A

A database
B

A Web server application
C

A Web form
D

ASP

Answers

C because it’s really strong

Which of the following is a primary disadvantage of using a GUI HTML editor to develop your Webpages?
This task contains the radio buttons and checkboxes for options. The shortcut keys to perform this task are A to H and alt+1 to alt+9.
A

It takes longer to develop pages with a GUI HTML editor than to write code manually.
B

Development options may not include code standardized by the W3C.
C

The code will render only on browsers developed by the GUI HTML editor's manufacturer.
D

GUI HTML editors offer very few design options for Webpages.

Answers

Answer:

C (Most feasible option)

Explanation:

I am not sure but option C seems most probable, all other options do not seem to be true

Is Conflict Healthy ?

Answers

yes

Explanation:

because it has more things

No not really I mean I don’t think so but other people might have other Pennies

which type of ethernet framing is used for TCP IP and DEC net​

Answers

Ethernet II
Trust me u will get it right

Advantages and disadvantages of isolated I/O

Answers

Answer:

Input and output devices (I/O) are the parts of a computer system, such as the keyboard or the modem, that send or receive information to and from the computer's processors. In memory-mapped I/O systems, I/O devices use part of the computer's memory as the address for transmitting messages. In computers with isolated-memory systems, I/O and memory have different addresses.

I/O

Computer systems can map I/O to an address in the memory banks because the process of messaging I/O devices is similar to exchanging data with computer memory. The same bus -- the electronic pathway for transmitting information to and from the processors -- serves to access both memory and input and output devices. One disadvantage to isolated memory is that memory-map systems are simpler for the bus, as it uses the same set of addresses for I/O and memory operations.

Explanation:

hope that this helps

Why don't hurricanes form in the oceans in northern latitude of the world?

Answers

No Earth Rotation (left) vs Earth Rotation (right) and resultant Coriolis force. ... This is why there is no Coriolis force at the equator and why hurricanes rarely form near the equator. The Coriolis force is simply too weak to move the air around low pressure. Air prefers to flow from high to low pressure.

Given a Student class, create a class with following characteristics: The class name should be ClassRoom. Private variable students array to maintain the list of Student objects. Function addStudent with input parameter name (string) and rollNo(int) adds a new student in "students" list. Method getAllStudents should return all the students in ClassRoom.
Input Jack Jones Marry where, First & Second line represent a student's name and roll number. And so on Output 1 Jack 2 -Jones 3-Marry Assume that, Maximum "students" count can be 10.
Below is the code for the driver class - DriverMain.java
import java.util.*;
//Your program will be evaluated by this DriverMain class and several test case
public class DriverMain {
public static void main(String[] args) {
String name;
int rollNo;
int n = 0;
Student[] students = new Student[10];
ClassRoom classRoom = new ClassRoom();
Scanner input = new Scanner(System.in);
while(true){
name = input.nextLine();
if(name.equals(""))
break;
rollNo = Integer.parseInt(input.nextLine());
classRoom.addStudent(name, rollNo);
n++;
}
students = classRoom.getAllStudents();
for (int i = 0; i < n; i++) {
if(students[i]!=null)
System.out.print(students[i].getRollNo() + " - " + students[i].getName());
if (i < n - 1)
System.out.println();
}
}
}
//Below is the code for the Solution.java
// NOTE - THIS IS WHERE YOU WRITE THE CODE
import java.util.*;
class Student {
private String name;
private int rollNo;
public String getName() {}
public void setName(String name) {}
public int getRollNo() {}
public void setRollNo(int rollNo) {}
};
class ClassRoom {
private int i;
private Student[] students;
public void addStudent(String name, int rollNo) {
// WRITE YOUR CODE HERE
}
public Student[] getAllStudents() {
// WRITE YOUR CODE HERE
}
};

Answers

Answer:

Answered below

Explanation:

//Implementation of the addStudent method

public void addStudent(String name, int rollNo){

Student newStudent = new Student();

newStudent.name = name;

newStudent.rollNo = rollNo;

student.add(newStudent);

}

//Implementation of the getAllStudents method

public Student[] getAllStudents(){

return students;

}

edhesive, 8.6 code practice question 2

Answers

Answer:

what's the question though

Answer:

What are the questions? I cannot answer you without you adding them.

on React
1) Create counter and an increment button, default value of the counter would be 1, clicking on increment button adds 5 to the counter. The max value of the counter would be 20, after reaching this value , counter would not increment. Add a reset button which would set the counter value to 1.
[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

Answers

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')

);

}

7. Develop an algorithm using pseudocode to show whether a given number is even or odd

Answers

Answer:

Calculate the remainder after division by 2If remainder is 0, number is even, odd otherwise

2. Android 1.1 was internally referred to as _________.



3. A large C program is divided into basic building blocks called as _________.



4. __________ are the in-built function in C programming system.



5. ______________ are special variables which can hold more than one value using the same

variable, using an index​

Answers

Answer:

2. petit four

3. function

4. library functions

5. array

Your program analyzes complex data.
To share your results, you are going to write text to a file in your program.
The program is saved in a folder, which has a subfolder called "info."
In the info folder is a text file called "bikes.txt."
Which line of code will open bikes.txt?

Answers

Answer:

python:

f = open("\info\bikes.txt", "r")

print(f.read())

Explanation:

Please help me solve am wai...​

Answers

Answer:

what the hell

Explanation:

What performance specification does 2 GHz refer to?

Answers

Answer:

GHz is the speed of the processor

Explanation:

GHz is the speed of the processor.

What is GHZ?

The frequency unit known as gigahertz (GHz) counts the number of cycles per second. The term Hertz (Hz) designates the quantity of periodic 1-second cycles per second.

One million Hz is equal to one megahertz (MHz). A gigahertz (GHz) is equivalent to 1,000 MHz or 1,000,000,000 Hz.

One billion hertz is equal to one gigahertz, sometimes known as GHz. It is frequently used to gauge electromagnetic (EM) frequencies, alternating current, and computer processing speed.

The unit of measurement for central processing unit (CPU) clock speed is the gigahertz. In general, faster computers are those with greater CPU clock rates. Pipeline depth, instruction sets, internal cache, network/bus speed, disk performance, and software architecture are examples of elements that have an impact on speed.

Therefore, GHz is the speed of the processor.

To learn more about GHz, refer to the link:

https://brainly.com/question/29739133

#SPJ5

How can I get more views on my you tube channel "Braeden Eischen" without paying anything
P.S. this is for media-tech so don't report me

Answers

I’m just post video and there

what is a client server network and its features?​

Answers

Answer:

A client-server network is the medium through which clients access resources and services from a central computer, via either a local area network (LAN) or a wide-area network (WAN), such as the Internet. ... A major advantage of the client-server network is the central management of applications and data.

Recently, Suzette has been late for meetings. Sometimes she is more than thirty minutes late. Suzette's behavior shows she does not
demonstrate which workplace attitude?
•honesty
•self confidence
•dependability
•punctuality

Answers

Answer:

punctuality

Explanation:

to be punctual is to be on time

Which of the following is a method of relationship management for an e-commerce Website?
This task contains the radio buttons and checkboxes for options. The shortcut keys to perform this task are A to H and alt+1 to alt+9.
A

Providing an automatic order tracking facility to customers
B

Requiring users to submit orders by telephone
C

Using validated HTML5 code
D

Performing Website maintenance

Answers

Answer:

if u find out can u lmk pls? j have a very similar question and I've been stuck for a min

The mayor of a city is interested in learning what goals are most important for residents of the city. Members of her staff visit one of the many neighborhoods in the city and ask 20 residents to fill out a survey. The mayor is concerned that the survey may be biased and not accurately reflect the overall interests in her town. Which of the following strategies is most likely to address concerns about the data being biased or inaccurate
a. Finding the same people surveyed previously to ask more detailed questions.
b. Visiting the same neighborhood to collect more survey responses
c. Visiting multiple new neighborhoods to collect more survey responses
d. Having her staff collect the data using an app rather than paper surveys

Answers

Answer:

The best Option is C (Visiting multiple new neighborhoods to collect more survey responses)

Explanation:

Here, bias could arise in various ways. From the survey questions, people selected and so many more. The 20 residents selected to fill out a survey might not truly represent the true position of the entire population. Bias often occurs when the survey sample does not accurately represent the population. Since the aim of the survey is to "learn what goals are most important for residents of the city", the 20 people selected might not produce the right result. It wasn't even mentioned in the question if they were randomly selected, this could also lead to bias, maybe those 20 selected were friends to Members of her staff, or they were selected because they were easily accessible. You need to make sure your survey is distributed in such a way that all types of respondents get a chance to respond to it.

Having her staff collect the data using an app rather than paper surveys is not the best way too to address concerns about the data being biased or inaccurate because Some residents might not have easy access to a computer or a reliable internet connection. In-person interviews can create trust and cooperation from residents.

       

What is the usual price of smartphone apps?

Answers

0-20 dollars

that's the usual cost for apps

and for phone it's cost

RS 32,000 Nepali rupes

you can convert it by dividing it by 110

and you will get price in dollars

hope it helps you ❣❣

Mark me as brainliest

Question :
What is the term that refers to the specific techniques used to increase a Webpage's or site's rank on a search engine?
This task contains the radio buttons and checkboxes for options. The shortcut keys to perform this task are A to H and alt+1 to alt+9.
A

Pay per click (PPC)
B

On-site Web analytics
C

Off-site Web analytics
D

Search engine optimization (SEO)

Answers

Answer:

D

Explanation:

Search engine optimization (SEO)

Other Questions
Why is Byzantine art considered abstract or nonrepresentational The hexagon represents 1 whole. Explain what is fungi? describe some economical impotance of fungi. The United States imports a lot of cars, despite having its own auto industry. Each of the following statements are arguments some people could make for restricting imports of cars into the United States. For each statement, identify the threat to the U.S. industry that the argument is trying to counter, and identify the opportunities that would be given up if the argument wins.a. "Foreign manufacturers are offloading cars made with cheap foreign labor operating in unsafe and unhealthy factories. We must pass a law to prevent this exploitation." b. "We need to foster the innovation of small car companies like Tesla that can truly change the auto industry. Allowing foreign electric vehicle manufacturers to sell cars in the U.S. will squander any chance of creating those car domestically." c. "You shouldn't buy a car from Nissan or BMW! You're putting people here out of a job." I NEED HELP ASAP!!!!! You are the team leader For a group project. You are meeting with a team member who is unhappy because another team member is not doing their part. How should you best discuss the issue with the nonparticipating team member?EmailPhoneText messageFace to face Rhonda wants to buy a shirt that is on sale for 15% of the regular price. The regular price of the shirt is P dollars.Which expression represents the sales price of the shirt?A. p-0.15pB. p+0.15pC. p-15pD. 0.15p What is I need help please 5 points1. In this food pyramid, how much energy is available as the energy ispassed from one trophic level to another?Energy pytanidO 1%10%25%O 50 A common design for a spotlight uses a lens and a mirror, combined with a gas-discharge lamp, to project a powerful parallel beam of light. Where are the lens and mirror positioned? The polygon below has been divided into four shapes. Which measurements below represent the total area of the polygon?28 in 240 in 264 in 270 in 2 NEED HELP ASAP !! The bravery of the main character reminds me of my mom. She's been through a lot because she's been sick. Even though shehasn't been well and has had operations, she's been so brave.What type of text connection does this demonstrate?A) Text to SelfB) Text to TextC) Text to World i need help asp plzzzzz Will give brainliest if correct What is most characteristic of the Platt Amendment?It gave America the right to intervene in Cuban affairs.America could not protect the interests of Cuba.It is an example of Big Stick Policy. Joshua's recipe for chili requires 2 3/4 pounds of beef. Sondra's recipe for chili requires 2 2/3 pounds of beef. Which of these statements is true? I need help ASAP please!!! what is the most beautiful festival in the Philippines????? What is the value of x? Response questions always have only one correct answer.Please select the best answer from the choices providedOF PLEASE HURRY!!! I WILL GIVE BRAINIEST TO FIRST PERSON WHO ANSWERS!!