What should you do if you do not understand the directions on a test?

Answers

Answer 1

Answer:

ask your teacher for a little guidence.

Explanation:

even though you may not get the answer you need they might give you some assitance


Related Questions

Which software programs should students avoid using to create and submit course work? (Choose all that apply).


Word


Pages


Numbers


Keynote

Answers

Keynote, pages, numbers

Based on the details in The Riddle of the Rosetta Stone, how did the career of Jean-Baptiste Fourier differ from that of Jacques-Joseph Champollion?

Unlike Champollion, Fourier studied in Paris with Sylvestre de Sacy.
Unlike Champollion, Fourier cared more about non-Egyptian articles.
Unlike Champollion, Fourier studied and learned many languages.
Unlike Champollion, Fourier accompanied Napoleon to Egypt.

Answers

Answer:

D

Explanation:

Answer:

d

Explanation:

2. Answer true or false.
An alien may become a citizen by birth or wealth.
false
true

Answers

True - because you cant deny somebody who was legally born where you automatically become a citizen if you were born in that place.

Answer:

True

Explanation:

What is a central idea for 3 Despite this lack of precision, Galileo had constructed a wonderful invention. Yet, he considered it to be a useless toy and even called it a “little joke.” As far as anyone knows, the famous physicist, mathematician, and astronomer never tried to adapt the thermoscope into a device to measure the temperature of the human body.

Answers

Answer:

Main Idea of Despite this lack of precision, Galileo had constructed a wonderful invention. Yet, he considered it to be a useless toy and even called it a “little joke.” As far as anyone knows, the famous physicist, mathematician, and astronomer never tried to adapt the thermoscope into a device to measure the temperature of the human body.

Explanation:

It is a science fiction but the answer is not science fiction.it States ;it's inventiveness,uncertainly and futuristic ideas typically deal with science and technology. What's the answer? Kindly give me feedback

Answers

Answer:

The uncertainty of inventiveness and futuristic ideas usually deal with science and technology.

Inventibility is something uncertain which promotes a risk in any system in which it is inserted. With that, we can naturally associate it with the maintenance of science and technology, because both are in need of inventing new creations, which may or may not be effective for the defeat of uncertainties and the creation of certainties.

This is usually linked to futuristic ideas, which may not fit in today's society, but which impose improvements, or not, for societies in the future. Leading to the creation of more technologies and more sciences.

JPG is considered a lossy file format. What does this mean?
O JPG files are insecure.
O JPG files compress efficiently but have compromised quality.
O JPG files are easy to delete.
O JPG file compression can be reversed.
PLEASE HELPPPPP!!!!!

Answers

Answer:

either a or b

Explanation:

Answer:

A it files are insecure

Explanation:

Zoe has been asked to identify the external links that exist in a workbook that has primarily been managed by
another employee.
Which feature should she use?

Answers

Answer:

Data tab and external links group.

Explanation:

I'm not 100% sure but it makes the most sense

Answer:data tab and external links group

Explanation:

Write a program that uses a scanner to report some statistics about words in an input sentence ( see Section 7.8). The outputs should be the number of words in the sentence, the average word length, and the length of the sentence.

Answers

import java.util.Scanner;

public class JavaApplication77 {

   

   public static void main(String[] args) {

       Scanner scan = new Scanner(System.in);

       System.out.println("Enter a sentence:");

       String sentence = scan.nextLine();

       String [] arr = new String[sentence.length()];

       arr = sentence.split(" ");

       System.out.println("There are "+arr.length+" words in the sentence.");

       int count = 0;

       for(int i = 0; i < arr.length; i++){

           count += arr[i].length();

       }

       System.out.println("The average length of a word in your sentence is "+(count/arr.length)+" characters");

       count = 0;

       System.out.println("Your sentence is "+sentence.length()+" characters long.");

       

   }

   

}

For the length of a sentence, I included spaces as characters but I did not do this for the length of a word. I hope this helps!

Select one among the the main categories of computer software, which one is not a category
of Computer software? (1 mark) US
Application
Programs
Utilities
Systems​

Answers

Answer:

utilities

Explanation:

the other 3 are Cs programs

This algorithm creates a string from the message in which every vowel (a, e, i, o, and u) is removed unless the vowel is at the very start of a word (i.e., it is preceded by a space or is the first letter of the message). Every repeated non-vowel character is also removed from the new string (i.e., if a character appears several times in a row it should only appear once at that location). So for example the string "I will arrive in Mississippi really soon" becomes "i wl arv in mssp rly sn".
I'm garbage at coding plz help

After applying this algorithm, your program should output the shortened message, the number of vowels removed, the number of repeated non-vowel characters removed, and how much shorter the shortened message is than the original message. The exact format in which the program should print this information is shown in the sample runs.

plz help cyto, you're my only hope

Answers

For real it’s not funny like honestly

PLZ! What is an example of a current board game that involves moving pieces around and taking risks? 10 POINTS!

Answers

Answer:

Easy, Risk

Explanation:

a current board game that involves moving prices around and taking risks would be, chess

Write a Java program called Decision that includes a while loop to prompt the user to enter 5 marks using the
JOptionPane statement and a System.out statement to output a message inside the loop highlighting a pass
mark >= 50 and <= 100. Any other mark will output a messaging stating it’s a fail.
Example of the expected output is as follows:
55 is a pass
12 is a fail

Answers

Answer:

Written in Java

import javax.swing.JOptionPane;

public class Decision{

public static void main(String[] args) {

    int i = 1;

    while(i<=5){

    String score = JOptionPane.showInputDialog("Input <score>");

    int mark = Integer.parseInt(firstNumber);

    if(mark >= 50 && mark <= 100) {

        JOptionPane.showMessageDialog(null, mark, " is a pass", JOptionPane.PLAIN_MESSAGE);

    }

    else{

        JOptionPane.showMessageDialog(null, mark, " is a fail", JOptionPane.PLAIN_MESSAGE);

    }

    i++;

    }

}

}

Explanation:

This initializes the a counter variable i to 1

    int i = 1;

The following iteration is repeated as long as i is less than or equal to 5

    while(i<=5){

This prompts user for input

    String score = JOptionPane.showInputDialog("Input <score>");

This converts user input to integer

    int mark = Integer.parseInt(firstNumber);

This checks if input is within 50 and 100 (inclusive)

    if(mark >= 50 && mark <= 100) {

This prints pass

        JOptionPane.showMessageDialog(null, mark, " is a pass", JOptionPane.PLAIN_MESSAGE);

    }

If otherwise

    else{

This prints fail

        JOptionPane.showMessageDialog(null, mark, " is a fail", JOptionPane.PLAIN_MESSAGE);

    }

This increments the counter variable by 1

    i++;

    }

For Questions 1-4, consider the following code: def mystery1(x): return x + 2 def mystery2(a, b = 7): return a + b #MAIN n = int(input("Enter a number:")) ans = mystery1(n) * 2 + mystery2 (n * 3) print(ans)
What is the output when the user enters -4?
What is the output when the user enters 3?
What is the output when the user enters -2?
What is the output when the user enters 9?

Answers

Answer:

What is the output when the user enters -4?

-9

What is the output when the user enters 3?

26

What is the output when the user enters -2?

1

What is the output when the user enters 9?

56

Explanation: Just did it and got all correct. Hope it helps!!

How can templates be made available to other users? your user profile directory a shared network location an intranet SharePoint document library none of the above​

Answers

Answer:

b. a shared network location

Explanation:

A templates can easily be made available to other users through a SHARED NETWORK LOCATION reason been that shared network location allow other computer users on a computer network to easily and quickly access templates, stored files and to share files with one another or from one computer to another computer.

Therefore with SHARED NETWORK LOCATION templates can be made available to other users.

Answer: B

Explanation:

Illustrator : how do you edit a swatch ?​

Answers

Answer:

To edit an existing pattern, double-click the pattern in the pattern swatch, or select an object containing the pattern and choose Object > Pattern > Edit Pattern

Choose the best collection for each situation.
You need to keep a record of the ages of the last 50 customers visit a restaurant. As new customers come in you delete the age that has been in the list the longest.

You need to store the GPS coordinates of the hospitals in a state in order to find the nearest hospital for ambulance helicopters.

You write a loop to save anywhere from 10 to 100 values from a user. You will pass the collection to a function to find the average.

Answers

Answer:

Deque: You need to keep a record of the ages of the last 50 customers visit a restaurant. As new customers come in you delete the age that has been in the list the longest.

Tuple: You need to store the GPS coordinates of the hospitals in a state in order to find the nearest hospital for ambulance helicopters.

List: You write a loop to save anywhere from 10 to 100 values from a user. You will pass the collection to a function to find the average.

Explanation: Just got the results back no thanks to the guy above

The best collection for the situations will be deque, tuple, and list.

A deque refers to the ordered collection of items that is similar to the queue. It has two ends and the items remain in position in the collection.

A tuple refers to the finite ordered sequence of elements. It is a data structure that is used in storing an ordered sequence of values.

Since the last 50 customers visit a restaurant, deque will be utilized. Tuple will be used when one needs to store the GPS coordinates of the hospitals in a state in order to find the nearest hospital for ambulance helicopters.

Read related link on:

https://brainly.com/question/17483083

A company decides to design and produce a new type of ice skate. Which of the following should the company do first?

Answers

What is the options

Since the company have decided to design and produce a new type of ice skate, the company need to test the design of their new skates.

The testing of the skates design is necessary to know how safe or efficient, the skates will be when produced.

In conclusion, because the company have decided to design and produce a new type of ice skate, the company need to test the design of their new skates.

Read more about product design

brainly.com/question/25886641

Jacob has a text file open, and he is typing on the keyboard. What is the best description of how the
changes are being implemented?
The original file is temporarily changed; the changes become permanent when he clicks "save."
The new version is kept in a special virtual space; the file is only changed when he clicks "save."
The information is stored on the clipboard:
O A copy is created with a new filename, which will overwrite the old one when he clicks "save."

Answers

Answer:

The new version is kept in a special virtual space; the file is only changed when he clicks "save."

The new version is kept in a special virtual space; the file is only changed when he clicks "save." this is the best description of how the changes are being implemented. Thus, option B is correct.

What is a keyboard?

Using a keyboard, users can input characters, symbols, and integers into the device. Whenever you write, you hit each key located on the keyboard separately.

As she is changing the files or editing the file she is editing the file and the changes are definitely being made in the same but that does not mean that the whole file is edited and when you open it will be changed.

This process is being done in a virtual space. It will only be secured after she has saved the document on which she is working.

Therefore, option B is the correct option.

Learn more about the keyboard, here:

https://brainly.com/question/14313428

#SPJ2

Challenge activity 7.6.1: Constructor overloading.Write a second constructor as indicated. Sample output:User1: Minutes: 0, Messages: 0User2: Minutes: 1000, Messages: 5000#include using namespace std;class PhonePlan{public:PhonePlan();PhonePlan(int numMinutes, int numMessages);void Print() const;private:int freeMinutes;int freeMessages;};

Answers

Answer:

#include

using namespace std;

class PhonePlan{

public:

PhonePlan();

PhonePlan(int numMinutes, int numMessages);

void Print() const;

private:

int freeMinutes;

int freeMessages;

};

PhonePlan::PhonePlan() { // Default constructor

freeMinutes = 0;

freeMessages = 0;

return;

}

PhonePlan::PhonePlan(int numMinutes, int numMessages) {

freeMinutes = numMinutes;

freeMessages = numMessages;

return;

}

void PhonePlan::Print() const {

cout << "Minutes: " << freeMinutes << ", Messages: " << freeMessages << endl;

return;

}

int main() {

PhonePlan user1Plan;

PhonePlan user2Plan(1000, 5000);

cout << "User1: ";

user1Plan.Print();

cout << "User2: ";

user2Plan.Print();

return 0;

}

Explanation:

The C++ source code has a defined class called "PhonePlan" with a default constructor which initializes the phone time and messages of a user to zero and another constructor method which assigns the "numMessages" and "numMinutes" to the user messages and minutes and displays it in the console.

The code that includes a second constructor is coded below.

Source code:

#include <iostream>

using namespace std;

class PhonePlan {

public:

   PhonePlan();

   PhonePlan(int numMinutes, int numMessages);

   void Print() const;

private:

   int freeMinutes;

   int freeMessages;

};

PhonePlan::PhonePlan() {

   freeMinutes = 0;

   freeMessages = 0;

}

PhonePlan::PhonePlan(int numMinutes, int numMessages) {

   freeMinutes = numMinutes;

   freeMessages = numMessages;

}

void PhonePlan::Print() const {

   cout << "Minutes: " << freeMinutes << ", Messages: " << freeMessages << endl;

}

int main() {

   PhonePlan user1;

   PhonePlan user2(1000, 5000);

   cout << "User1: ";

   user1.Print();

   cout << "User2: ";

   user2.Print();

   return 0;

}

In this code, the `PhonePlan` class has two constructors.

The first constructor `PhonePlan()` is the default constructor that sets `freeMinutes` and `freeMessages` to 0.

The second constructor `PhonePlan(int numMinutes, int numMessages)` is an overloaded constructor that takes two parameters `numMinutes` and `numMessages`. It assigns the provided values to `freeMinutes` and `freeMessages`.

The `Print()` function is used to display the values of `freeMinutes` and `freeMessages` for each `PhonePlan` object.

In the `main()` function, we create two `PhonePlan` objects: `user1` using the default constructor and `user2` using the overloaded constructor with values 1000 and 5000 for minutes and messages, respectively. We then call the `Print()` function for each object to display the minutes and messages for each user.

Sample Output:

User1: Minutes: 0, Messages: 0

User2: Minutes: 1000, Messages: 5000

In the output, `user1` has 0 minutes and 0 messages, while `user2` has 1000 minutes and 5000 messages, as initialized by the overloaded constructor.

Learn more about Constructor overloading here:

https://brainly.com/question/13267120

#SPJ4

Which term refers to testing that your software still works as intended once it is connected to other systems?
a
stress testing
b
regression testing
c
user acceptance testing
d
load testing

Answers

Answer:

c

user acceptance testing

Effective communication in our relationships with others has several practical functions, including preventing unwanted problems, and strengthening levels of trust, honesty, respect, and morale.

Answers

Answer:

True.

Explanation:

Communication can be defined as a process which typically involves the transfer of information from one person (sender) to another (recipient), through the use of semiotics, symbols and signs that are mutually understood by both parties.

An effective communication can be defined as an act that typically involves conveying or disseminating information efficiently and effectively from an individual (sender) to another (recipient) without any redundancy. Thus, effective communication ensures that messages or information are transmitted properly, guarantees a feedback, lacks the use of harsh tones, ensures both parties are well understood, gives room for clarity etc.

Hence, effective communication in our relationships with others has several practical functions, including preventing unwanted problems, and strengthening levels of trust, honesty, respect, and morale.

Matt creates a Java class as part of his college assignment. He wants this class to be accessible within the current package only. Which access specifier should Matt use?

Matt has another Java assignment with multiple classes. In this assignment, there is a general class. A few subclasses outside the package use methods from this general class. Which access specifier should Matt use for the general class?

Matt should use the (blank) access specifier for the first class.

A. Protected
B. Default
C. Private
D. Public

He should use the (blank) access specifier for the general class.

A. Protected
B. Public
C. Default
D. Private

Answers

Answer:

first use Default as

a class with the default access modifier in a package, only those classes that are in this package can access this class. No other class outside this package can access this class.

general uses protected to make itself accecible to the subclasses.

what is the coefficient in 2m³n​

Answers

Answer:

i think it's '2'

Explanation:

cause coeffecient is the numerical factor of a term.

The primary benefit of digital distribution is that more audiences are able to purchase and view a film
True or False?

Answers

Explanation:

The answer could be either-or. At the moment True because people are in quaritine and can't go to movie theaters or go buymovies from a store. It could also be false because not everyone owns a computer or has access to the internet. Also, the number of family houses that have internet are growing.

It all depends on the context I guess. You could say true becuase the number of families with wifi is growing and we're all being quarantined or you could say false because not everyone has access to the internet.

please I need help.
Select the correct answer. of the four email features listed below, which is the most important?
O A. the To address
O B. the Bcc address
OC. the attachments
O D. the domain name

Answers

Answer:

The answer is the "TO address"

Explanation:

i just took the test and got it right sooooooo

Answer: A “The To adress”

Explanation:

got it right

Which of the following types of software applications would open a txt file?
A. Image editor
B. Database
c. Media player
D. Word processor

Answers

Answer:

database or word proccessor

Explanation:

A.

Answer:

Word Processor

Explanation:

A-p-e-x

What don’t colleges consider when deciding whether to accept you as a student?

Answers

Awnser: Your skills, compatibilities, grades in highschool, and criminal record would most likely be a helping key for deciding who will be accepted into the college.

(This is a guess, and could completely have been wrong, concluding that I have never been in a college.)

which is the best video games​

Answers

Answer:

overwatch and dead by daylight

Answer:

GTA V and COD

Explanation:

A typical computer user will never come across most of the computer's files; the majority of files on a
computer are only relevant to the computer itself or a developer.
True
O False

Answers

Answer:

True

Explanation:

Answer:

The answer to this question is given below in the explanation section

Explanation:

The answer to this question is True. As you know that a typical computer user doesn't use most of the computer's files, because the majority of the computer's files on the computer are only relevant to the computer itself or a developer.

For example, a typical computer user can use internet explorer to search for something online on the internet. He/she can't come across to change the firewall, inbound and outbound net setting, etc. For example, A typical user will not use IIS and comes across its related files but a developer who is developing the web application can use and change setting in IIS.

A typical user can not change the environment variable but the developer can change the environment variable and computer registry setting.

Also a typical user does not change the windows setting and come across all files related to windows setting but developer can change.

A _____ is relatively inexpensive to install and is well-suited to workgroups and users who are not anchored to a specific desk or location.​
A) local area network (LAN)
B) wireless local area network (WLAN)
C) metropolitan area network (MAN)
D) storage area network (SAN)

Answers

Answer:

B) wireless local area network (WLAN)

Explanation:

WLAN which fully meaning is WIRELESS LOCAL AREA NETWORK is a network provider that enables two or more mobile phone user , desktop or computer user to connect and have access to the internet by simply connecting to the local area wireless network and this type of wireless network are more cheaper to install.

Example of where WIRELESS LOCAL AREA NETWORK can be found are : School building, Office building, School campus, home, among others.

Other Questions
Six more than five times a number is equal to the sum of three times the same number and 10. Identify the equation you would use to find the number, then find the number. help how do you multiply 4000x20393 pls help fast!!!!! Cost of boots: $99.99Markup: 9%What is the new cost? Which of the following most contributed to American economic growth and prosperity in the1920s?A. Adoption of the Bessemer process by steel producersB. An increase in ownership of automobilesC. The invention of the telephone for long-distance communicationsD. The extension of railroad lines across the country PLS HELPPPP TY!!!!! pls no stupid answers... express the product of (6-2i)(-4+3i) in a+bi form ANSWER QUICKLY..Provide the algebraic sentence that would represent the verbal sentence, ten less than two-thirds of a number results in 15. Kelsey graphed the equation y = 3x + 1 as shown below. WILL GIVE BRAINLIEST ANSWER !!! need asap Which is an equation in point-slope form for the line that passes through the points (-1,4) and (3,-4)?Oy+4=2(x 3)Oy - 4= 2(x+3)Oy+4= -2 (2-3)Oy-3= -2(x+4) In a random sample 70 people, it was found that 44 of them were fans of NY Yankees. What is the margin of error for the true proportion of all individuals who are fans of the NY Yankees?0.00880.0580.0630.1160.173What's the answer England's main economic reason for establishing colonies in America was to1AnswerFestablish factoriesGabolish slaveryHestablish economically independent colonies3gain wealth through the system of mercantilism BRain liest for whoever does both thanks:D! Andy has applied for a NICET certification for an engineering technologist. How many years engineering technology degree must he hold to beeligible for the certification?Andy must hold an engineering degree of (blank)years to be eligible for the certification. Which of these names is related to the founding of the Song dynasty in 960 Which of the following describes air temperature and air pressure at higher altitudes?Group of answer choices:Air temperature increase while air pressure decreasesAir temperature and air pressure both decreaseAir temperature and air pressure both increaseAir temperature decreases while air pressure increases Help, brainless to fastest answer!! P and Q are sunsets of the universal set U={n:1 Plz wright a paragraph abt it I need it Fiber is not easily digested by the body.TrueFalse Read the passage from "The Seven Voyages of Sindbad the Sailor.In the times of the Caliph Haroun-al-Raschid there lived in Bagdad a poor porter named Hindbad, who on a very hot day was sent to carry a heavy load from one end of the city to the other. Before he had accomplished half the distance he was so tired that, finding himself in a quiet street where the pavement was sprinkled with rose water, and a cool breeze was blowing, he set his burden upon the ground, and sat down to rest in the shade of a grand house. Very soon he decided that he could not have chosen a pleasanter place; a delicious perfume of aloes wood and pastilles came from the open windows and mingled with the scent of the rose water which steamed up from the hot pavement. Within the palace he heard some music, as of many instruments cunningly played, and the melodious warble of nightingales and other birds, and by this, and the appetising smell of many dainty dishes of which he presently became aware, he judged that feasting and merry making were going on. He wondered who lived in this magnificent house which he had never seen before, the street in which it stood being one which he seldom had occasion to pass.What is Sindbad most motivated by in this passage?fatigue and curiositydiscomfort and peacework and pleasurehunger and greed