true or false.the highest size of a font (html) is 10.

Answers

Answer 1

Answer:

False.

Explanation:

It's not true.

Answer 2
I believe it is False

Related Questions

what is the name of the symbol that is used to classify and categorize information?​

Answers

Answer:

A Hashtag

Explanation:

Answer: it’s Hashtags#

list four products that normally requires copyright protectio.​

Answers

The  four products that normally requires copyright protection are:​

Books and written literary works.Music compositions and sound recordings.Artistic creations such as paintings, sculptures, and photographs.Software programs and computer applications.

What is the copyright protection.

Books and written literary works need copyright protection to keep the original ideas and writings of authors safe. This stops people from copying, sharing, or making more copies without permission.

Copyright protection is important for music compositions and sound recordings to make sure that composers, songwriters, and performers have power over how their works are used, shared, and performed for the public.

Read more about copyright protection here:

https://brainly.com/question/27976194

#SPJ1

hype or sway house and why

me hype bc they are funny to me

Answers

Hype house easy it’s way better

mention two hardware groups​

Answers

Answer:

input Devices, Processing Devices, Output Devices, Memory/Storage Devices

Explanation:

i need to know thr full number of pie

Answers

Answer:

3.14159

Explanation:

What declarations, inputs, processing, and outputs are needed to calculate the area of a rectangle?​

Answers

Answer:

Declaration: length, width, area

Inputs: length & width

Processing: length & width

Output: area

Explanation:

The area of a rectangle uses the formula: [tex]A=lw[/tex]. In your coding, you need to ask for user input for the length and width in order to calculate the area.

Your processing would simplify multiple the user's input together stored in some type of sum variable.

Now I don't know what program language you are using but I will give you an idea.

Code (Python)

#Define variables equal to user input.

length = int(input("Enter the length of the rectangle: "))

width = int(input("Enter the width of the rectangle: "))

area = length * width

Your output would be the area, but you can manipulate it if you want.

print("The area of the rectangle is", area)

So the program would run like this:

Enter the length of the rectangle: 3 <--you type a number

Enter the width of the rectangle: 5

The area of the rectangle is 15

Sidenotes: if you are using ints, the number MUST be a whole number or the program will throw an error. If you are using decimals, use a float.

Why is forwarding messages useful?
O to pass along messages and attachments to those who should see them
* to return a message to the message sender and all other original recipients
O to courtesy copy someone with a reply message
O to move old messages into a message archive

Answers

A. To pass along messages and attachments to those who should see them.

Answer:

A. to pass along messages and attachments to those who should see them

Hope this helps :D

What are some elements commonly included in forms in Word? Check all that apply.

embedded charts
dates
text
macros
drop-down lists

Answers

Answer:

dates

text

drop-down lists

Answer:

B-dates

C-text

E-drop-down lists

Explanation: ;)

in public speaking situation the sourse of the message is the person listening to the speech​

Answers

Answer:

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

Explanation:

This question is about terminologies or elements used in public speaking.

So generally, in public speaking, the source is the person who is giving the speech, the channel is the speaker's use of verbal and nonverbal communication, and the receivers are the audience members listening to the speech.

In Python
1.9 LAB: Input: Mad Lib

Mad Libs are activities that have a person provide various words, which are then used to complete a short story in unexpected (and hopefully funny) ways.

Complete the program to read the needed values from input, that the existing output statement(s) can use to output a short story.

Ex: If the input is:

Eric
Chipotle
12
cars
Then the output is:

Eric went to Chipotle to buy 12 different types of cars

Answers

name = input("Enter a name: ")

place = input("Enter a place: ")

number = input("Enter a number: ")

noun = input("Enter a noun: ")

print("{} went to {} to buy {} different types of {}".format(name, place, number, noun))

I hope this helps!

Following are the Python program for input value and prints its value with the message.

Program Explanation:  

In the python code, four variables "na, l, nu, no" are declared that inputs value by using the input method. In this, except for the "nu" variable, all is used for the input string value. After input value, the print method has used that prints value with a message.

Program:

#defining variable that uses the input method to the input value

na = input()#defining na variable to input value

l = input()#defining l variable to input value

nu = int(input())#defining nu variable to input integer value

no = input()#defining no variable to input value

print(na, 'went to', l, 'to buy', str(nu), 'different types of', no)# printing input value and print value with message

Output:

Please find the attached file.

Learn more:

brainly.com/question/18752544

To start slide show of a presentation from the first slide.

A. From Slide Show Tab choose from Beginning button

B. From Slide Show Tab choose View Show button

C. From Slide Show Tab choose Rehearse timing button

D. From Slide Show Tab choose Custom Slide Show button​

Answers

the answer is a




step by step explanation:

Answer:

a

Explanation:

Writing a Modular Program in Python
Summary
In this lab, you add the input and output statements to a partially completed Python program. When completed, the user should be able to enter a year, a month, and a day. The program then determines if the date is valid. Valid years are those that are greater than 0, valid months include the values 1 through 12, and valid days include the values 1 through 31.
Instructions
Notice that variables have been declared for you.
Write input statements to retrieve a year, a month, and a day from the user.
Include the print statements to output the following: month/day/year is a valid date. or month/day/year is an invalid date.
Execute the program entering the following input: month = 5, day = 32 year = 2014
Execute the program entering the following input: month = 9 day = 21 year = 2002
# Program Name: BadDate.py
# Function: This program determines if a date entered by the user is valid.
# Input: Interactive
# Output: Valid date is printed or user is alerted that an invalid date was entered.
validDate = True
MIN_YEAR = 0
MIN_MONTH = 1
MAX_MONTH = 12
MIN_DAY = 1
MAX_DAY = 31
year = int(input("Enter year:"))
month = int(input("Enter month:"))
day = int(input("Enter day:"))
# Get the month, then the day, then the year
# housekeeping()
# Check to be sure date is valid
if int(year) <= MIN_YEAR: # invalid year
validDate = False
elif int(month) < MIN_MONTH or int(month) > MAX_MONTH: # invalid month
validDate = False
elif int(day) < MIN_DAY or int(day) > MAX_DAY: # invalid day
validDate = False
# Test to see if date is valid and output date and whether it is valid or not
# endOfJob()
if validDate == True:

Answers

Answer:

Add these statements to the given code:

if validDate == True:  #if the date is valid

   print(str(month)+'/'+str(day)+'/'+str(year) + " is a valid date")  #prints the statement in month/day/year format. str() converts the values of month day and year to string

else:  #if data is not valid

   print(str(month)+'/'+str(day)+'/'+str(year) + " is an invalid date") #prints this statement in month/day/year format

Explanation:

Here is the complete program:

validDate = True

MIN_YEAR = 0

MIN_MONTH = 1

MAX_MONTH = 12

MIN_DAY = 1

MAX_DAY = 31

year = int(input("Enter year:"))

month = int(input("Enter month:"))

day = int(input("Enter day:"))

if int(year) <= MIN_YEAR:  

    validDate = False

elif int(month) < MIN_MONTH or int(month) > MAX_MONTH:

    validDate = False

elif int(day) < MIN_DAY or int(day) > MAX_DAY:

    validDate = False

if validDate == True:

   print(str(month)+'/'+str(day)+'/'+str(year) + " is a valid date")  

else:

   print(str(month)+'/'+str(day)+'/'+str(year) + " is an invalid date")

I will explain the program with an example:

Suppose user enters 2002 as year, 9 as month and 21 as day so

year = 2002

month = 9

day = 21

All these are integers

validDate is set to True initially.

MIN_YEAR is set to 0 initially.

MIN_MONTH is set to 1  initially

MAX_MONTH is set to 12 initially

MIN_DAY is set to 1  initially

MAX_DAY is set to 31  initially

The first if condition if int(year) <= MIN_YEAR: checks if the year is less than MIN_YEAR. As the value of year is 2002 and that of MIN_YEAR is 0 so year is not less than or equals to MIN_YEAR. So this if condition evaluates to false. Thus the program moves to the elif part. The value of validDate remains true.

The elif condition elif int(month) < MIN_MONTH or int(month) > MAX_MONTH: checks if the month is less than MIN_MONTH  or greater than MAX_MONTH . Since the value of month is 9 so it is not less than value of MIN_MONTH which is 1 and it is not greater than the value of MAX_MONTH  which is 12. So this condition evaluates to false. Thus the program moves to the second elif part. The value of validDate remains true.

The elif condition elif int(day) < MIN_DAY or int(day) > MAX_DAY:  checks if the day is less than MIN_DAY  or greater than MAX_DAY. This is also not true because of value of day is 21 and it is not less than value of MIN_DAY which is 1 and it is not greater than value of MAX_DAY which is 31. So this condition also evaluates to false. So the program moves to the next statement. However the value of validDate remains true.

The next statement: if validDate == True:  evaluates to true because none of the above if elif conditions evaluate to true. Since this condition evaluate to true then statement in this if part executes which is:

   print(str(month)+'/'+str(day)+'/'+str(year) + " is a valid date")  

This is a print statement that prints the output on screen. str() method is used to convert the values of month, day and year to string form. So the output of this entire program is:

9/21/2002 is a valid date    

The program along with its output is attached in a screenshot.

A speaker says:
Can you please bring me some milk I mean coffee?
Which of the following is the most correct way to transcribe this according to our Style
Guide? Type A, B, C, or D in the box below.
A) Can you please bring me some coffee?
B) Can you please bring me some milk, I mean coffee?
C) Can you please bring me some milk-- I mean, coffee?
D) Can you please bring me some milk -- I mean coffee?

Answers

The correct answer to the question is D

Place the steps in order to link and place text into the document outline, effectively creating a master document.
Click Insert
Click Show Document.
Click Open.
Select the document file.
Click Outline view.

Answers

Answer:

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

Explanation:

This question is asked about placing or linking text in an outline view and what would be the correct steps of placing text in an outline view.

The correct order to link and place text into the document outline, effectively creating a master document is given below:

Click Outline viewClick Show DocumentClick InsertSelect the document fileClick open

Answer:

Click Outline view

Click Show Document

Click Insert

Select the document file

Click open

Explanation:

How did punch cards improve the weaving process?

Punch cards allowed a weaver to give instructions to the loom.

Punch cards made it easier for the weaver to put the string on the loom.

Punch cards allowed a weaver to choose the colors for the fibers used in a loom.

Punch cards allowed a weaver to get feedback from the loom.

Answers

Answer:

Punch cards allowed a weaver to give instructions to the loom.

Explanation:

Create a class named Console, and move all the methods that retrieve and validate user input to that class. These methods can remain static. Create a class named Game, and move all the methods that display messages and handle user guesses to that class. Adjust these methods so they aren't static, and use instance variables of the Game class to keep track of numbers, guesses, and so on. Update the application to use these classes and their methods. Make sure the application functions the same as it did before.

Answers

Answer:

Here is the Console class:

import java.util.Scanner;  // to accept input from user

public class Console {   // class name

public Console() {}   //class constructor

public int getInt(Scanner sc, String prompt) { //gets user's number  

int i = 0;   //initialize i to 0

boolean isValid = false;   // checks for valid input

while (!isValid) {   //loop iterates as long as input remains valid

System.out.print(prompt);   //displays prompt

if (sc.hasNextInt()) {   // checks for the next token (input number)

i = sc.nextInt();   // scans and reads the next number

isValid = true;   // checks if input is valid

} else {   //if input is not valid

System.out.println("Error! Invalid integer value. Try again.");  }  //displays error message

sc.nextLine(); // discard any other data entered on the line   }

return i;  }  //returns number

public int getIntWithinRange(Scanner sc, String prompt, //checks users guess if outside parameters or not  

int min, int max) {  

int i = 0;  

boolean isValid = false;   //sets isValid to false

while (!isValid) {   //keeps iterating and stops when isValid is false

i = getInt(sc, prompt);   //calls getInt method to get users number

if (i <= min) {   //if number is less than value of min

System.out.println("Error! Number must be greater than " + min);   //displays this message

} else if (i >= max) {   //if number is greater than that of max

System.out.println("Error! Number must be less than " + max);   //displays this message

} else {   //if guess is right

isValid = true;   } } //sets isValid to true

return i;  } //returns that number

public  String getRequiredString(Scanner sc, String prompt) { //Asks for user's string input  

String s = "";  

boolean isValid = false;   //sets isValid to false

while (!isValid) {      //keeps iterating and stops when isValid is false

System.out.print(prompt);    //displays prompt

s = sc.nextLine();   //reads next line (read next string input value)

if (s.equals("")) {   //if user enters nothing

System.out.println("Error! This entry is required. Try again.");   //display this message

} else {   //if user enters a string input

isValid = true;   }  }  //sets isValid to true

return s; }  //returns string

public  String getChoiceString(Scanner sc, String prompt, //Checks for users input for Y/y ignores caps  

String s1, String s2) {

String s = "";  

boolean isValid = false;   //sets isValid to false

while (!isValid) {   //iterates until isValid is false

s = getRequiredString(sc, prompt);   //calls method to get the input string

if (!s.equalsIgnoreCase(s1) && !s.equalsIgnoreCase(s2)) {  // checks users input for Y/y ignores caps  

System.out.println("Error! Entry must be '" + s1 + "' or '" + s2 + "'. Try again.");   // displays error message that entry must be y or Y

} else {   //if user enters y or Y

isValid = true;   } }   //sets isValid to true

return s;  } } //returns y or Y

Explanation:

Here is the Game class

public class Game {  // class name

public Game() {}   //class constructor

public void displayWelcomeMessage() { //displays message  

System.out.println("Welcome to the Guess the Number Game");  

System.out.println("++++++++++++++++++++++++++++++++++++");  

System.out.println(); }

public  void displayPleaseGuessMessage() { //displays message for user to guess from 1-100  

System.out.println("I'm thinking of a number from 1 to 100.");  

System.out.println("Try to guess it.");  

System.out.println();}

public  void displayCorrectGuessMessage(int counter) { //display user's current guess count

System.out.println("You got it in " + counter + " tries.");  

if (counter <= 3) {   //if user guesses the number in 3 or less tries

System.out.println("Great work! You are a mathematical wizard.\n");  

} else if (counter > 3 && counter <= 7) {   //if user guesses the number greater than 3 but less than or equals to 7 tries

System.out.println("Not too bad! You've got some potential.\n");  

} else {   //if user guesses the number after more than 7 tries

System.out.println("What took you so long? Maybe you should take some lessons.\n"); }}

public  void displayGuessAgainMessage(int number, int guessNumber) { //Asks user to guess again  

int difference = guessNumber - number;  

if (guessNumber > number) {   //if guessNumber is greater than number

if (difference > 10) {   //if difference between guessNumber and number is greater than 10

System.out.println("Way too high! Guess again.\n");   //guessed number is higher than correct one

} else {  

System.out.println("Too high! Guess again.\n");  }

} else {  

if (difference < -10) {   //if difference between guessNumber and number is less than -10

System.out.println("Way to low! Guess again.\n");   //guessed number is lower than correct one

} else {  

System.out.println("Too low! Guess again.\n");}}}}

The main program and explanation of these above programs are given in the attached document.

The output of the program is attached.

who you on
1. What type of web page is classified as flat or stationary?
A. Web 1.0 B. Web 2.0 C. Web 3.0 D. Web 4.0​

Answers

Answer:

Web 1.0

Explanation:

Web 1.0 was its terminology used during the World Wide Web to reference to the first period of growth that was characterised by basic static websites. Flat pages: Pages did not provide dynamic functionality that modified depending on the activities of website users. Websites were primarily informative at that time.

Web pages which lacks interactivity such that only contents which have been originally posted remains there and hence do not change characterize the earliest form of web pages called Web 1.0.

The name stationary or flat web was culled from how the the earliest form of web pages appear. They do not contain visuals or interactive capability.

In static web pages, contents remain as they are posted as editing cannot be made on the go as it is possible with dynamic web pages which characterizes more newer forms of web pages.

Therefore, the earliest form of web pages, Web 1.0 are referred to as being flat or stationary.

Learn more :https://brainly.com/question/9060926

I want to use an external keyboard but my father is not allowing what should I do Can someone help me out with this I know this not related to subjects but i hope you all will answer

Answers

Answer:

payattention in class

Explanation:

What is the main advantage of a bitmap image?

a
It is HTML-specific.function
b
It is Python-specific.
c
It includes minimal detail.
d
It includes a lot of detail.

Answers

The answer is d. Hope this helps

7. Ctrl + V is used to __________

A. Change the text direction

B. Chand page rotation to vertical (LandScape).

C. Copy and paste a selected text

D. Copy the selected text

E. Paste the selected text

F. Cut and paste a selected text

G. Both C and F​

Answers

Answer:

E=Paste

Explanation:

E= Paste the selected text

Answer:

e

Explanation:

because if you do Ctrl+c it copies and then you have to paste so you use Ctrl+v Therefore the answer is E

Assign sub_lyric by slicing rhyme_lyric from start_index to end_index which are given as inputs. Sample output with inputs: 4 7

Answers

sub_lyric = rhyme_lyric[start_index:end_index]

Why the following code is giving error NAME="REHMAAN" PRINT ("hello') PRINT ("HI")

Answers

Answer:

corrected code:

NAME="REHMAAN"  

print ("hello")  

print ("HI")

Explanation:

In python, put every statement on its own line. Even indentation matters.PRINT should be in lowercase, i.e., printThe string quotes should be both " or both ', but not a mix like in "hello'

. How to insert Section Break in Microsoft word 2016 ?

A. Insert Tab – pages group – Page Break button

B. View Tab – Document View group – Break button

C. Layout Tab – Page setup group – Breaks – Next page button.​

Answers

Answer:

C. Layout Tab – Page setup group – Breaks – Next page button.

What are the benefits of online notebooks? Check all that apply..

They allow users to store files.
They allow users to share files.
They give users a way to practice for tests.
They help users organize assignments.
They allow users to clip information from web pages.
They can serve as school calendars.

Answers

Answer:

its a They allow users to store files. b They allow users to share files. d They help users organize assignments and f They can serve as school calendars.

Explanation:

:))))

Answer:

abdf

Explanation:

Find the solution of the equation
4x+10/3=25?3-x ​

Answers

I’m going to assume the ? is dividing and if that’s the case X = 1

#Write a function called grade_scantron. grade_scantron should
#take as input two lists: answers and key. Each list contain
#strings. Each string will be only one letter, a character
#from A to E. grade_scantron should return how many questions
#the student got "right", where a student gets a question
#right if their answer for a problem matches the answer key.
#
#In other words, if value of the first item in answers matches
#the value of the first item in key, the student gets a point.
#If it does not, the student does not get a point.
#
#If the lists do not have the same number of items, return
#-1 to indicate that the answer key did not belong to the
#same test as the student's answers.\
#
#Hint: in the past, lots of people have tried to do this using
#the index() method. That won't work! You'll need to track the
#index yourself.


#Write your function here!
def grade_scantron(answers,key):
count=0
result=-1
try:
if len(key) != len(answers):
result=-1
except:
result=count
for index, item in enumerate(answers):
if(key[index] == answers[index]):
count+=1

return(result)

#Below are some lines of code that will test your function.
#You can change the value of the variable(s) to test your
#function with different inputs.
#
#If your function works correctly, this will originally
#print: 7
answers = ["A", "B", "B", "A", "D", "E", "B", "A","D"]
key = ["A", "B", "B", "A", "D", "E", "B", "A", "D"]
print(grade_scantron(answers, key))

I keep getting -1 and I don't know why. No matter what I do, I can't get the code to print either -1 (if the lengths don't match) or the amount of correct answers ( if the lengths do match up).

Answers

En este ejemplo vemos que, por la información dada, no es posible que esta oración tenga coherencia o sentido. En este caso el nexo o conector que une ambas oraciones no debería haberse utilizado, puesto que ambas oraciones no tienen relación. Por ende corresponden a estructuras diferentes y no es posible que mantengan una coherencia. Varias oraciones sin coherencia, generan textos incoherentes.

Java Eclipse homework. I need help coding this

Project 5A - Mixed Results

package: proj5A
class: MixedResults

Create a new project called MixedResults with a class called Tester. Within the main method of Tester you will eventually printout the result of the following problems. However, you should first calculate by hand what you expect the answers to be. For example, in the parenthesis of the first problem, you should realize that strictly integer arithmetic is taking place that results in a value of 0 for the parenthesis.

double d1 = 37.9; //Initialize these variables at the top of your program
double d2 = 1004.128;
int i1 = 12;
int i2 = 18;

Problem 1: 57.2 * (i1 / i2) +1
Problem 2: 57.2 * ( (double)i1 / i2 ) + 1
Problem 3: 15 – i1 * ( d1 * 3) + 4
Problem 4: 15 – i1 * (int)( d1 * 3) + 4
Problem 5: 15 – i1 * ( (int)d1 * 3) + 4

Your printout should look like the following:

Problem 1: 1.0
Problem 2: 39.13333333333333
Problem 3: -1345.39999999999
Problem 4: -1337
Problem 5: -1313

Answers

public class MixedResults {

   public static void main(String[] args) {

       Tester test = new Tester();

       test.tester_method();

   }

   

}

class Tester{

   double d1 = 37.9, d2 = 1004.128;

       int i1 = 12, i2 = 18;

   Tester(){  

       

   }

   void tester_method(){

       System.out.println(57.2*(i1/i2)+1);

       System.out.println(57.2*((double)i1/i2)+1);

       System.out.println(15 - i1 * ( d1 * 3) + 4);

       System.out.println(15 - i1 * (int)( d1 * 3) + 4);

       System.out.println(15 - i1 * ( (int)d1 * 3) + 4);

   }

}

I think this is what you're looking for. Best of luck.

Question # 5 Dropdown What is the output for the following code? >>> phrase = "help23" >>> phrase.isalnum() h​

Answers

The output is True because the string phrase contains only letters and numbers.

Answer:

true

Explanation:

Netbooks, also called mini notebooks or subnotebooks, are a subgroup of desktops.
True
False

Answers

Answer:

false desktop is on your computer or your actual desk top

Explanation:

what is wrong with my code???

using System;

namespace FavoriteNumber
{
class Program
{
static void Main(string[] args)
{

Console.Write("Enter your favorite number!: ");
int faveNumber = Console.ReadLine()
int number = Convert.ToInt32("string value")

Answers

Answer:

using System;

namespace FavoriteNumber  

{

class Program

{

static void Main(string[] args)  

{

Console.Write("Enter your favorite number!: ");  

int number = Convert.ToInt32(Console.ReadLine());  

}

}

}

Other Questions
James started an accounting firm on 1 June 2022. During the first month of operations, the business completed the following transactions: June 1 James contributed $40 000 cash and his personal vehicle worth $15 000 to the business. June 4 Purchased office supplies, $1 200 and furniture, $1900, on credit. June 7 Performed advisory services for a client and received $2 300 cash. June 10 Borrowed $16 000 from the bank for business use. June 15 Paid $1 800 for a 12-month insurance policy starting on 1 July. June 17 Paid for the office supplies purchased on June 4 on - credit June 20 Received $2 800 cash for advisory services to be performed in July. June 22 Paid monthly rent expenses, $1 700. June 30 James - withdrew cash $3 500. Required: Prepare journal entries for the month of June transactions. Explanations are not required (10 marks). By which rule are these triangles congruent?A)AASASASASDSSS If the firm is producing 500 units, what is the amount of its profit or loss? O A. profit of $280 B. profit equivalent to the area A OC. loss equivalent to the area A O D. There is insufficient inform Q2. Discuss the advantages and disadvantages of the active quantitative investment approach compared to the active qualitative investment approach. WILL GET BRAINLIEST!!!! I NEED IT BY TODAY!!! A person walked 30.0 m east and then 100.0 m north. Add these two vectors to get the magnitude of the vector sum of the two movements. describe the formation of a rift valley Which of the following taxpayers would most likely be considered a trader?A. Andre trades during the summer when he is home from college. He consults with other traders and sells shares of stock before going back to college at the end of the summer.B. Ivan trades nearly every day. He usually sells shares of stock after a few days, hoping to profit from short-term price changes.C. Nigel trades every day when he gets home from work. He spends time researching companies and holds securities for a year or more before selling.D. Tristan trades two or three days a week. He likes to invest in companies that pay regular dividends, although he sometimes sells after holding the stock for a few days. Discuss in details on diversification with reference to theefficient frontierand comparing the expected return and standard deviation of theoptimalrisky portfolio to the minimum-variance portfolio10 11 17 13 14 15 16 17 18 P24 19 20 21 23 23 24 25 26 27 28 1 GR1) 2 SD1 30 31 32 34 36 37 58 39 40 43 44 45 46 47 50 51 52 53 54 55 56 57 58 59 2 Home 60 0 61 62 Paste A Compon w1 A 8 0.097364 0.248 Assume that Clover Limited proposes to its shareholders that they are willing to peruse a hostiletakeover of Bakers Limited. You are required to discuss SIX (6) possible takeover defenses thatBakers Limited can utilize as a tactic to resist the takeover attempts of Clover Limited. Ben is a 25-year-old paralegal at a post-Superbowl party. In attendance at the party is his college friend, Tom. Both guys are enjoying themselves. There were a lot of people smoking marijuana, including Tom, drinking beer, eating pretzels, and just having a good time. Ben was the designated driver for his friends, so he did not smoke or drink. At the end of the party, Tom said to Ben, "You are a paralegal. I haven't been drinking at all but I was smoked a lot of marijuana and I'm pretty high. Please tell me if I can drive home." In response, Ben tells him:Oh, I know the Ohio law on this. You can definitely drive home. You did not drink anything and only cocaine is considered a drug for driving purposes. I am sure the police won't stop you but even if they do, the law is on your side.Unfortunately, it turns out that Ben was incorrect. Tom veered off the road and ended up driving into a tree, damaging his car. When the police came, they took a blood sample from Tom and found that he was driving under the influence of marijuana, which is illegal in Ohio. The officers immediately arrested him and jailed him for 3 days. Later on, points were added to his license. Tom comes to your office and meets with your supervising attorney, John, to discuss the possibility of suing Ben based on his statement to Tom and Tom's reliance on it. Because Ben sincerely believed that what he was saying was true, John immediately rules out the possibility of suing him for fraud or misrepresentation. (Note: This means you should NOT deal with the possibility of suing him for fraud or misrepresentation or the like!)Instead, Tom says to John, "Well, Ben isn't a lawyer. Isn't it wrong for him to tell me what the Ohio law is when he's not even a lawyer?" John replies, "Well, I know that it's unethical and even criminal to practice law without a license, but I don't know if you can sue someone for unauthorized practice of law. I'll have my star paralegal look into that."After Tom leaves, John asks you to research this question, i.e., whether Tom can sue Ben based on his unauthorized practice of law, and to get back to him with an answer. Please prepare a properly researched essay to answer Tom's question. miguel was tested for diabetes. his oral glucose tolerance test showed a level of 120 mg/dl. this indicates that For every debit entry there must be a credit entry. A. Principle of entity B. Principle of double entry C. Principle of historical cost D. Principle of materiality A fast food restaurant keeps record of the number of customer complaints per week Recently, the location has had 4 complaints per week.Assume that the number of complaints follows a Poisson distribution. What is the probability the restaurant will receive two or more complaints in the next week? helllllllllllllllllllllllllllllllllp An analyst has gathered the following market forecasts and information to assist in her examination of the value of TCU Inc.: TCU's cost of capital: 10 percent Last year's earnings: $2.25 / share Current earnings: $0.10 / share Current stock price: $35.86 / share Current Debt to Equity ratio: 2 Current dividend payout ratio: 90 percent Current profit margin: 8.4 percent Next year's forecasted earnings: $1.00 / share Forecasted earnings in year 2:$1.50 / share Forecasted earnings in year 3: $2.00 / share Market consensus of the stock price target in 4 years: $47.70 / share As her new intern, she has asked you to investigate and provide the growth rates over time that the market is expecting for the firm. Scientific Notation is made up of two number parts. The second part is a power of base 10.A. TrueB. False Question: Which expression is equivalent to 5(x + 7)possible answers: A: 5x + 7 B: 35x C: 5x + 35 D: 5x + 12 if a vehicle is travelling at 55 mph, how fast will the unbelted occupants be going at the moment of impact? Elements that are in the Front Panel.. (select all that apply) a. Are for performing mathematical operations b. Are for interacting with the user c. Are found in the Functions palette d. Have a corresponding item in the block diagram e. Are found in the Controls palette Can be used to visualize and display data