2 * 5 =

4 ** 3 =

7 / 2 =

17 % 3 =

Answers

Answer 1

Answer:

2*5 = 10

4*4= 12

7/2= 3 ½

17% 3 = 51/100 = 0.51

Answer 2

Answer:

2 * 5 = 10

4 ** 3 = 64

7 / 2 = 3.5

17 % 3 = 2

Explanation:

Using python you get the following outputs

2 * 5 = 10

4 ** 3 = 64

7 / 2 = 3.5

17 % 3 = 2


Related Questions

Dropdown Which shape is used for input and output?

Answers

Answer:

Parallelogram

Explanation:

Input/output Box The input/output box is represented by a parallelogram. This symbol indicates any function of an input/output device such as keyboard or printer.

JAVA: Code.org AP PROG A

Answers

The arrays that can be passed to reverse to show that the method does NOT work as intended is option:

D. {{0, 0}, {1, 1}, {0, 0}}

{{0, 0), (1, 1), (1, 1}, {0, 0}}

What is the arrays  about?

This array can be passed to the reverse method and it does not work as intended. This is because the for loop only goes through the elements up to arr.length-1 and not till the last element.

It also does not account for the case where the input array is a jagged array with different number of columns in each row.

Therefore, The for loop in the reverse method only goes through the elements up to arr.length-1 which means it does not reach the last element of the array. This means that the last element of the array will not be reversed. Also, the for loop only goes through the elements up to arr[0].length which means it does not account for the case where the input array is a jagged array with different number of columns in each row.

Learn more about arrays from

https://brainly.com/question/24275089

#SPJ1

See transcribed text below

Question: Consider the following method, reverse, which is intended to return the reverse the elements of arr. For example, if arr contains {{1, 2, 3}, {4, 5, 6}}, then reverse (arr) should return {{6, 5, 4}, {3, 2, 1}}.

public static int[][] reverse(int[][] arr) { int[][] ret = new int[arr.length][arr[0].length];

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

for (int j = 0; j < arr[0].length; j++) {

}

ret[i][j] = arr[arr.length - i - 1][arr[0].length - j - 1];

}

}

return ret;

The code does not work as intended. Which of the following arrays can be passed to reverse to show that the method does NOT work as intended?

A. {{0}}

B. {{0}, {0}}

C. {{0, 1}, {0, 1}}

D. {{0, 0}, {1, 1}, {0, 0}}

{{0, 0), (1, 1), (1, 1}, {0, 0}}

Response:

Application Letter For My Ojt

Answers

Answer:

N/A

Explanation

I don't understaand please make it clearer

Can't figure out the error in this code:

Answers

Using the knowledge of computational language in JAVA it is possible to write a code that he place in the coordinate hits the other player's ship, I will send a message saying this to the screen.

The correct code is:

public static int numRows = 10;

public static int numCols = 10;

public static int playerShips;

public static int computerShips;

public static String[][] grid = new String[numRows][numCols];

public static int[][] missedGuesses = new int[numRows][numCols];

public static void main(String[] args) {

   System.out.println("Welcome to Amiral Batti game");

   System.out.println("\nComputer: ");

   deployComputerShips();

   System.out.println("\n");

   System.out.println("\nHuman: ");

   deployPlayerShips();

   do {

       Battle();

   }

   while(players.playerShips != 0 && players.computerShips != 0);

   gameOver();

}

public static int FIELD_SIZE = 10;

public static void deployPlayerShips() {

   Random random = new Random();

   int[][] field = new int[FIELD_SIZE][FIELD_SIZE];

   for (int i = 5; i > 0; i--) {

       int x = random.nextInt(field.length);

       int y = random.nextInt(field.length);

       boolean vertical = random.nextBoolean();

       if (vertical) {

           if (y + i > FIELD_SIZE) {

               y -= i;

           }

       } else if (x + i > FIELD_SIZE) {

           x -= i;

       }

       boolean isFree = true;

       if (vertical) {

           for (int m = y; m < y + i; m++) {

               if (field[m][x] != 0) {

                   isFree = false;

                   break;

               }

           }

       } else {

           for (int n = x; n < x + i; n++) {

               if (field[y][n] != 0) {

                   isFree = false;

                   break;

               }

           }

       }

       if (!isFree) {

           i++;

           continue;

       }

       if (vertical) {

           for (int m = Math.max(0, x - 1); m < Math.min(FIELD_SIZE, x + 2); m++) {

               for (int n = Math.max(0, y - 1); n < Math.min(FIELD_SIZE, y + i + 1); n++) {

                   field[n][m] = 9;

               }

           }

       } else {

           for (int m = Math.max(0, y - 1); m < Math.min(FIELD_SIZE, y + 2); m++) {

               for (int n = Math.max(0, x - 1); n < Math.min(FIELD_SIZE, x + i + 1); n++) {

                   field[m][n] = 9;

               }

           }

       }

       for (int j = 0; j < i; j++) {

           field[y][x] = i;

           if (vertical) {

               y++;

           } else {

               x++;

           }

       }

   }

   System.out.print(" ");

   System.out.println("0 1 2 3 4 5 6 7 8 9");

   char[][] map = new char[FIELD_SIZE][FIELD_SIZE];

   for (int i = 0; i < FIELD_SIZE; i++) {

       for (int j = 0; j < FIELD_SIZE; j++) {

           map[i][j] = field[i][j] == 0 || field[i][j] == 9 ? '.' : 'o';

       }

   }

   Arrays.stream(map)

           .forEach(m -> System.out.println(Arrays.toString(m).replace(",", "")));

}

public static void deployComputerShips() {

   Random random = new Random();

   int[][] field = new int[FIELD_SIZE][FIELD_SIZE];

   for (int i = 5; i > 0; i--) {

       int x = random.nextInt(field.length);

       int y = random.nextInt(field.length);

       boolean vertical = random.nextBoolean();

       if (vertical) {

           if (y + i > FIELD_SIZE) {

               y -= i;

           }

       } else if (x + i > FIELD_SIZE) {

           x -= i;

       }

       boolean isFree = true;

       if (vertical) {

           for (int m = y; m < y + i; m++) {

               if (field[m][x] != 0) {

                   isFree = false;

                   break;

               }

           }

       } else {

           for (int n = x; n < x + i; n++) {

               if (field[y][n] != 0) {

                   isFree = false;

                   break;

               }

           }

       }

       if (!isFree) {

           i++;

           continue;

       }

   Arrays.stream(map)

           .forEach(m -> System.out.println(Arrays.toString(m).replace(",", "")));

}

public static void Battle(){

   playerTurn();

   computerTurn();

   printBoard();

   System.out.println();

   System.out.println("Your ships: " + players.playerShips + " | Computer ships: " + players.computerShips);

   System.out.println();

}

public static void playerTurn(){

   Scanner scn = new Scanner(System.in);

   System.out.println("\nHuman's turn: ");

   int x = -1, y = -1;

   do {

       Scanner input = new Scanner(System.in);

       System.out.print("Enter row number: ");

       x = scn.nextInt();

       System.out.print("Enter column number: ");

       y = scn.nextInt();

       if ((x >= 0 && x < numRows) && (y >= 0 && y < numCols)){

           if (grid[x][y].equals("o")){

               System.out.println("You sunk the ship!");

               grid[x][y] = "s";

               --players.computerShips;

           }

           else if (grid[x][y].equals(".")) {

               System.out.println("You missed");

               grid[x][y] = "x";

           }

       }

       else if ((x < 0 || x >= numRows) || (y < 0 || y >= numCols))

           System.out.println("You can't place ships outside the " + numRows + " by " + numCols + " grid");

   }

   while((x < 0 || x >= numRows) || (y < 0 || y >= numCols));

}

public static void computerTurn(){

   System.out.println("\nComputer's turn: ");

   int x = -1, y = -1;

   do {

       x = (int)(Math.random()*10);

       y = (int)(Math.random()*10);

       System.out.println("Enter row number: "+x);

       System.out.println("Enter column number: "+y);

See more about JAVA at brainly.com/question/29897053

#SPJ1

Which type of data is shown here?
"true"

OA. Numeric
O B. Boolean
OC. List
OD. Image

Answers

You need to add a picture of the question to be able to answer this

Answer:

B. boolean

2.3.6

Explanation:

Ken is creating a website with different web pages, each page with its own theme, color, fonts, and so on. His teammate, John, advises him to
maintain the same elements on every page. What is the importance of maintaining consistency between pages?
Consistency helps to make navigation easy. It also helps in structuring each web page. It allows users to understand where they are in a website.
makes it easier for users to locate new navigational elements. It ensures that users only have to learn to use an interface once.

Answers

It also helps build a recognizable brand identity and creates a sense of trust between the website and its visitors. Consistency helps to make a website look professional. It helps the website stand out from competitors and gives it a unique look and feel.

What is website?

A website is a collection of related webpages and other content, such as text, images, videos, and audio files, typically identified with a common domain name, and published on at least one web server. Websites are accessed via a network, such as the Internet or a local area network, and viewed in an Internet browser. Websites are created using HTML coding. Websites can provide a variety of information and services, including online forums, shopping, news, and entertainment. They can also be used to conduct business activities, such as online banking, ordering products, and researching products and services. Websites are often maintained by individuals and organizations to provide information on topics of interest, to advertise products and services, and to offer customer service.


To learn more about website
https://brainly.com/question/28431103
#SPJ1

Create a list of songs you associate with certain family members or that you remember being played in your home growing up.

Tell us about the memory that at least 1 of the songs creates for you.

Also, share if you or any other people in your home/family have musical talents.

(u can do anything whatever you want I'm just asking for opinions)

Answers

1. "Landslide" by Fleetwood Mac - My grandmother used to listen to this song on repeat, and it always reminded me of her and the wonderful time we used to spend together.

What is Landslide?

Landslide is a natural phenomenon that occurs when a mass of rock, soil, or debris moves down the side of a mountain or other steep slope.

2. "What a Wonderful World" by Louis Armstrong - This song was always playing in our house when I was growing up, and it reminds me of the happy, carefree days of my childhood.
3. "American Pie" by Don McLean - This song was always playing when my dad was in the car, and it makes me think of the times we used to drive around and explore together.
4. "Imagine" by John Lennon - This song was always playing when my mom was cooking dinner, and it reminds me of the peaceful moments spent in the kitchen with her.
5. "We Are Family" by Sister Sledge - This song was always playing when we had family gatherings, and it always made me feel loved and connected to my family.
My family is full of musical talents! My dad is a professional guitarist, my mom is an avid singer, my brother plays the drums, and my sister plays the piano. I'm the only one with no musical abilities, but I still enjoy listening to music!

To learn more about Landslide
https://brainly.com/question/13285242
#SPJ1

which of the following protocols would secure a tunnel for credential exchange using port 636.
A. FTPES
B. SFTP
C. LDAPS
D. DNSSEC

Answers

The protocols would secure a tunnel for credential exchange using port 636 is LDAPS. The correct option is C.

What is LDAPS?

In order to secure LDAP connections across the network, the Lightweight Directory Access Protocol Secure (LDAPS) protocol is known to employ a PKI certificate and frequently uses TCP port 636.

TCP 3269 is used for LDAPS connection with a global catalog server. SSL/TLS is negotiated when connecting to ports 636 or 3269 before any LDAP traffic is transmitted.

Therefore, the correct option is C. LDAPS protocols would protect a tunnel for the exchange of credentials utilizing port 636.

To learn more about LDAPS, refer to the link:

https://brainly.com/question/17119741

#SPJ1

how can i create this matrix using only ones eye and zeros
-3 4 0
4 -3 4
0 4 -3

Answers

Answer:

ExplanYou can create a confusion matrix using only ones and zeros by representing each actual and predicted class as a binary value.

For example, if you have two classes, "positive" and "negative", you can represent the "positive" class as 1 and the "negative" class as 0.

In this case, you have 3 classes and you can use 1,0 and -1 as representation.

The confusion matrix using only ones and zeros would look like this:

Actual Class 1 Actual Class 2 Actual Class 3

Predicted Class 1 -1 0 0

Predicted Class 2 0 -1 4

Predicted Class 3 0 4 -1

The values in the matrix represent the number of instances that were predicted to be in a certain class and actually belong to another class.

For example, the value -3 in the top left corner represents the number of instances that were predicted to be in class 1 and actually belong to class 1.

Note that in general, when working with confusion matrix, negative values are not common.ation:

professional issues in information systems

Answers

The professional issues in information systems are:

Privacy and security:Intellectual propertyAccess and inclusionSocietal impactGovernance

What is the information systems  about?

Professional issues in information systems refer to the ethical, legal, and social concerns that arise in the field of information technology. Some examples of these issues include:

Privacy and security: Ensuring the confidentiality, integrity, and availability of sensitive information is a major concern in the field of information systems. This includes issues such as data breaches, cyber attacks, and unauthorized access to personal information.

Intellectual property: Protecting the rights of creators and owners of digital content is a key issue in the field of information systems. This includes issues such as copyright infringement, trademark infringement, and piracy.

In Access and inclusion: Ensuring that everyone has equal access to information and technology is a major concern in the field of information systems. This includes issues such as the digital divide, accessibility for people with disabilities, and bridging the gap between developed and developing countries.

Learn more about information systems  from

https://brainly.com/question/14688347

#SPJ1

What is a soulmate sketch

Answers

A picture of what you think you soulmate might look like

Read the quote. Explain how you think music can enhance experiences and relationships. Give specific examples.

"The function of music is to enhance in some way the quality of individual experience and human relationships." ~ John Blacking

Answers

Music has the power to enhance experiences and relationships in many ways. Music can create a certain mood or atmosphere, helping to set the tone for an experience or relationship.

What is enhance experiences?

Enhance experiences is the idea of making experiences more enjoyable, meaningful, and valuable for people. This can be done by creating unique experiences, personalizing experiences, and creating an environment that encourages people to be more engaged.

For example, playing soft, romantic music at a dinner can set the mood for an intimate evening with a loved one. It can also give a feeling of joy, excitement, or nostalgia, helping to bring people closer together. Music can also provide a sense of connection, making it easier for people to communicate and relate to one another. For example, playing a favorite song from childhood can spark a conversation and foster fond memories of shared experiences. Music can also provide a sense of comfort and support, providing a safe space to express emotions. For example, listening to a relaxing song can help someone feel more relaxed and at ease in a difficult situation. Overall, music has the power to transform experiences and relationships, making them even more meaningful and enjoyable.

To learn more about express emotions
https://brainly.com/question/29851625
#SPJ1

2. Which of the following is a good test-taking strategy for short-answer questions? (1 point)

O If you don't know the exact answer, don't write anything.

O If you don't know the exact answer, write down whatever you do know.

O Make your answer as short as possible.

OFor all short-answer questions, list information that you know instead of writing complete sentences.

Answers

Answer: if you don't know the exact answer, write down whatever you do know.

Explanation:

Drag the tiles to the boxes to form correct pairs.
Match the items to their uses.
simple design template
contrast colors and background
illustrations
used to improve the appearance of the presentation
used to make the content easily readable
note page
used to refer to content while delivering a presentation
used to complement content

Answers

Drag the tiles into the boxes to create the right pairs. Not every tile will be employed. Match up every pair. Get the information you need right away!

Two lines are perpendicular when they cross at a 90° angle.

How do I ask for free boxes?

Visit Office Depot, Staples, or any other nearby retailer of office supplies. To find out if they have any free boxes they don't use, ask to talk to the management. Find out whether they have boxes for printer or copy paper especially. You can get packing supplies from Amazon, yes. These could consist of bubble wrap, boxes, stretch wrap, poly bags, and more. If US vendors utilise shipping companies like UPS, FedEx, and USPS, they might also receive free goods from them.

Know more perpendicular Visit:

https://brainly.com/question/29268451

#SPJ1

Sandra bought a house 20 years ago for $200,000, paid local property taxes for 20 years and just sold it for $350,00. Which is true

Answers

Profit from selling buildings held one year or less is taxed as ordinary income at your regular tax rate.

What is Tax rate?To help build and maintain the infrastructure, the government commonly taxes its residents. The tax collected is used for the betterment of the nation, society, and all living in it. In the U.S. and many other countries around the world, a tax rate is applied to money received by a taxpayer.Whether earned from wages or salary, investment income like dividends and interest, capital gains from investments, or profits made from goods or services, a percentage of the taxpayer’s earnings or money is taken and remitted to the government.When it comes to income tax, the tax rate is the percentage of an individual's taxable income or a corporation's earnings that is owed to state, federal, and, in some cases, municipal governments. In certain municipalities, city or regional income taxes are also imposed.

To learn more about taxable income refer to:

https://brainly.com/question/1160723

#SPJ1

Answer:

B.  She will owe capital gains taxes on the sale earnings.

Explanation:

On the planet Mongo, each year has 15 months and each month has 26 days.

Write a function
$$\verb#compute_mongo_age(birthYear, birthMonth, birthDay, currentYear, currentMonth, currentDay)#$$that residents of Mongo can use to compute their age. It should take 6 positive integers as input: the person's birthdate (year, month from 1 to 15, and day from 1 to 26) and the current date (year, month from 1 to 15, and day from 1 to 26), and return a float of the age of the person in years.

For example, $\verb#print(compute_mongo_age(2879,8,11,2892,2,21))#$ should print $\verb#12.6256410256#$, the age (in Mongo years) on the 21st day of the 2nd month of the year 2892, of a person who was born on the 11th day of the 8th month of the year 2879.

Reminder: your assignment will be graded on the following:
The text box or code describes your planning, such as pseudocode of your algorithm or programming decisions like what datatypes to use.
The code runs without error and solves the specified problem.
The text box explains how the code was tested, such as the test cases used or your debugging process.
Clarity of the code, including inline comments and descriptive variable names.

Answers

The code is given below

from datetime import datetime

def compute_mongo_age(birthYear, birthMonth, birthDay, currentYear, currentMonth, currentDay):

   """

   This function calculates the age of a person in Mongo years.

   It takes 6 positive integers as input: the person's birthdate (year, month from 1 to 15, and day from 1 to 26)

   and the current date (year, month from 1 to 15, and day from 1 to 26),

   and returns a float of the age of the person in years.

   """

   # Convert the input integers to datetime objects

   birthdate = datetime(birthYear, birthMonth, birthDay)

   current_date = datetime(currentYear, currentMonth, currentDay)

   

   # Calculate the difference between the birthdate and current date

   age_in_days = (current_date - birthdate).days

   

   # Mongo year has 365.24 days

   age_in_mongo_years = age_in_days / 365.24

   

   return age_in_mongo_years

# Test the function

print(compute_mongo_age(2879,8,11,2892,2,21)) # Expected output: 12.6256410256

What is the code about?

The code imports the datetime module to convert the input integers to datetime objects.

The function takes 6 integers as input: the person's birthdate (year, month, and day) and the current date (year, month, and day).The function converts the birthdate and current date integers to datetime objects using the datetime() function.Then, it calculates the difference between the birthdate and current date in days using the timedelta object.Next, it calculates the age in Mongo years by dividing the age in days by 365.24 (the number of days in a Mongo year)Finally, the function returns the age in Mongo years as a float.

Test:

I have test the function with one test case, It will print the age (in Mongo years) on the 21st day of the 2nd month of the year 2892, of a person who was born on the 11th day of the 8th month of the year 2879.The output will be 12.6256410256, which is the expected output.

Learn more about  coding  from

https://brainly.com/question/22654163

#SPJ1

Write a single statement that assigns avg_sales with the average of num_sales1, num_sales2, and num_sales3. Sample outputs with: 3 4 8
Average sale: 5

Answers

Here is an example of a single statement that assigns the variable avg_sales with the average of num_sales1, num_sales2, and num_sales3 in Java:

avg_sales = (num_sales1 + num_sales2 + num_sales3) / 3.0;

This statement uses the addition operator (+) to sum the values of num_sales1, num_sales2, and num_sales3, and then divides the result by 3 using the division operator (/) to find the average. The division operator is used with a floating-point number (3.0) to ensure that the result is also a floating-point number.

For example, if num_sales1 = 3, num_sales2 = 4, num_sales3 = 8, the statement

avg_sales = (num_sales1 + num_sales2 + num_sales3) / 3.0;

will assign the value 5.0 to avg_sales.

What technologies are there that will help make 5G happen and what are some of the issues? Note: This question relates to Module 3 - Lesson 2.

Answers

Answer:

There are a number of technologies that are being developed to make 5G happen. These include:

Cellular technologies: Cell phone towers and antennas are being upgraded to transmit data over short distances using cellular networks.

Wireless technologies: 5G will use smaller antennas and low-frequency waves that travel through the air rather than through cables. This will allow for more devices to connect to the network at the same time and make it more efficient.

Data storage and transmission: 5G will use a new type of network architecture that can transmit large amounts of data more quickly.

Computer security: 5G will use more secure wireless networks that will protect data from being stolen or hack3d.

Explanation:

While running this code segment, the user enters the
following values when prompted: pizza yes bread
no. What is stored in the list called grocery after the
block of code is executed?
a. [milk, eggs, cheese, pizza, bread]
b. [milk, pizza, eggs, cheese]
c. [milk, bread, pizza, eggs, cheese]
d. [milk, pizza, bread, eggs, cheese]

Answers

Code segment: The final list stored in the variable 'grocery' is [milk, pizza, bread, eggs, cheese].

What is Code segment?

Code segment, sometimes referred to as a code block, is a portion of a computer program that contains instructions for a particular task or set of tasks.

The code segment prompts the user to enter two items, asking if the user wants to add each item to the list. If the user enters 'yes', the item is added to the list; if the user enters 'no', the item is not added to the list. In this case, the user entered 'pizza' and 'yes' for the first item, so 'pizza' is added to the list, and then 'bread' and 'no' for the second item, so 'bread' is not added to the list. Thus, the final list stored in the variable 'grocery' is [milk, pizza, bread, eggs, cheese].

To learn more about Code segment
https://brainly.com/question/29785424
#SPJ1

Good credit equals power.which statement best illustrates that power?

Answers

Good credit is the key to power sentence for instance. Which phrase most accurately represents that skill? Your credit score has an impact on your spending habits and employment prospects.

What exactly is a sentence, for instance?

A phrase is created by grouping several words to represent a single notion. A phrase, which is the basic unit of language, elucidates a whole idea. It does this by following the fundamental grammatical rules of the syntax. Describe Ali as walking, for example. A phrase, which is the basic unit of language, elucidates a whole idea. It does this by following the fundamental grammatical rules of the syntax. For instance, describe Ali as walking.

Know more employment Visit:

https://brainly.com/question/1361941

#SPJ1

Supervisor: "Our goal is to make add-on sales during 85% of sales. If you make 35
sales, how many add-on sales do you need to make to meet the goal?"
6
28
29
30
35

Answers

Additional goods or services that a consumer buys in addition to their primary transaction are known as add-on sales.

What is Add-on sales?

Add-on sales are extra items or services that a consumer buys in addition to their primary purchase.

According to Business Dictionary, the term "add on model" refers to fees or charges that are added to the base cost of a good or service in exchange for additional features or benefits, such as those that are added to the cost of a car in exchange for accessories. Adding high-margin goods or services is the true secret.

He needs to generate 29.75 sales plus an additional 30 sales in order to meet his objectives.

Because we've already done it

35 sales total were made.

He wants to generate supplemental sales in 85% of his transactions, according to the inquiry.

His additional sales would so be

15% of all sales

85% of 35

[tex]$=\frac{85}{100} \times 35$$=29.75$[/tex]

He needs to generate 29.75 sales plus an additional 30 sales in order to meet his objectives.

To learn more about Add-on sales refer to:

https://brainly.com/question/7888960

#SPJ1

What is the difference between an expression and a statement in Python? Explain
your answer

Answers

Answer:

Explanation:

Operators and Expressions in Python

Most lines of code are expressions. For example: 1 + 2 is an expression. The expression has 2 parts:

The (+) operator is a functional represented as symbols (for example, + ==) or reserved words (for example, and not).

Operands (1 and 2) are the data to be operated on.

An expression in Python consists of an operator and operands.

An expression in Python consists of an operator and operands.

After the Python interpreter evaluates the expression, we can, as in the example above, assign the result to the sum variable. Or, for example, immediately display the result on the screen:

>>> print(1 + 2)

3

Comparison Operators

Consider a simple example - 1 + 2 == 3.

To test the truth of a given condition, a boolean type is used. When we execute this expression, the result will be True (true) or False (false).

>>> 1 + 2 == 3

True

Questions and Answers for the OJT and answer the following:
Please do not copy search and your idea.

1. TELL ME ABOUT YOURSELF.

2. WHAT IS YOUR GREATEST STRENGTH?

3.) WHAT IS YOUR GREATEST WEAKNESS?

4.) HOW MANY HOURS DO YOU NORMALLY WORK PER WEEK?

5.) WHAT IS YOUR AMBITION?

6.) WHAT ARE YOUR SALARY EXPECTATIONS?

7.) WHEN WAS THE LAST TIME YOU WERE ANGRY? WHAT HAPPENED?

8.) WHY DO YOU WANT THIS JOB?

9.) TELL ME ABOUT A TIME YOU MADE A MISTAKE?

10.) ARE YOU WILLING TO RELOCATE OR TRANSFER TO OTHER PLACE FOR WORK?

11.) WHY WE SHOULD HIRE YOU?

Answers

Communication Skills is the key to a successful interview. The interviewer wants to know you are well-rounded person. Show confidence in yourself and your abilities. Key words to use are: profit, challenge, responsibility.

What is the best answer for Tell me about yourself?

The "tell me about yourself" inquiry should be answered with information about your present circumstances, your prior employment history, your qualifications for the position, and how you fit in with the company's ideals. Inform the interviewer about your present job and a noteworthy recent achievement or favourable feedback.

How to answer, "What is Your Greatest Strength"?

List your skills that match those the employer is seeking. Narrow down your list to three to five particularly strong skills. Next to each skill, note an example of how you have applied that strength in the past.

What is a weakness to tell in an interview?

Classic examples include “I'm a perfectionist,” “I'm competitive,” and “I just work too hard.” Although interviewers are aware of these canned responses, they can still be persuasive if you add information pertinent to the position to demonstrate your thoughtful consideration.

WHAT ARE YOUR SALARY EXPECTATIONS?

Provide the company with a range in which you'd want your salary to fall rather than a specific number that represents the income you expect. Instead of having a very wide range, try to keep it tight.

WHAT IS YOUR AMBITION?

Demonstrate that your aspirations align with the company's vision and long-term goals.

Learn more about Interview refer to ;

https://brainly.com/question/8846894

#SPJ1

Draw the resulting image

Answers

Explanation:

I cannot draw here, but I can tell you, which cells are getting marked black :

1. all cells, where row number = column number.

e.g. (0, 0), (1, 1), (2, 2) ... (8, 8)

2. all cells, where (row number + column number) = 8

e.g. (0, 8), (8, 0), (1, 7), (7, 1) ... (4, 4)

in other words, it makes a giant X through the grid, from (0, 0) to (8, 8), and from (0, 8) to (8, 0) with the central intersection point at (4, 4).

Write a method that takes a single integer parameter that represents the hour of the day (in 24 hour time) and prints the time of day as a string. The hours and corresponding times of the day are as follows:

0 = “midnight”
12 = “noon”
18 = “dusk”
0-12 (exclusive) = “morning”
12-18 (exclusive) = “afternoon”
18-24 (exclusive) = “evening”

You may assume that the actual parameter value passed to the method is always between 0 and 24, including 0 but excluding 24.
This method must be called timeOfDay()and it must have an integer parameter.

Calling timeOfDay(8) should print “morning” to the screen, and calling timeOfDay(12) should print “noon” to the screen.

You can call your method in the program's main method so you can test whether it works, but you must remove or comment out the main method before checking your code for a score.

Answers

Answer:

def timeOfDay(hour):

  if hour == 0:

      print("midnight")

  elif hour == 12:

      print("noon")

  elif hour == 18:

      print("dusk")

  elif hour > 0 and hour < 12:

      print("morning")

  elif hour > 12 and hour < 18:

      print("afternoon")

  elif hour > 18 and hour < 24:

      print("evening")

You can test the function as follows:

timeOfDay(8) # prints "morning"

timeOfDay(12) # prints "noon"

timeOfDay(18) # prints "dusk"

timeOfDay(5) # prints "morning"

timeOfDay(15) # prints "afternoon"

timeOfDay(22) # prints "evening"

Note that the elif conditions can be shortened by using the logical operator and to check the range of the hours.

Explanation:

#Function definition

def timeOfDay(time):

   #Mod 24.

   simplified_time = time % 24

   #Check first if it's 0,12 or 18.

   return "Midnight" if (simplified_time==0) else "Noon" if (simplified_time%24==12) else "Dusk" if (simplified_time==18) else "Morning" if (simplified_time>0 and simplified_time<12) else "Afternoon" if (simplified_time>12 and simplified_time<18) else "Evening" if (simplified_time>18 and simplified_time<24) else "Wrong input."

#Main Function.

if __name__ == "__main__":

   #Test code.

   print(timeOfDay(7)) #Morning

   print(timeOfDay(98)) #Morning

Which type of data is used to form images in MakeCode Arcade?

O A. Variable data
OB. Boolean data
C. String data
OD. Array data

Answers

Answer:

string data i think

Explanation:

An engineer designs computer hard disks. One day, the research department gives him a new design for the read/write head in the hard drive assembly. The new head can write a bit of data in a space that is half the size of what the existing head design can do. In a meeting, the company operations manager asked the engineer if the new head design could improve the company’s products.

What should the engineer tell the operations manager?

No, the new drive design should not significantly improve the performance of the hard drive.
Yes, the new drive design should increase the storage capacity of the hard drive.
Yes, the new drive design should increase throughput.
Yes, the new design should increase capacity and throughput.

Answers

Yes, the new drive design should increase the storage capacity of the hard drive. The correct option is B.

What is hard drive?

Your computer's operating system, software, and data files, including documents, images, and music, are all stored on a hard drive, often known as a hard disc or HDD.

The remaining parts of your computer cooperate to display the programmes and files on your hard disc.

Personal computer hard discs have a storage capacity of terabytes (trillions of bytes).

As opposed to the old head design, the new head can write a small amount of data in an area that is just half as large. The hard drive's storage capacity should rise with the new drive design.

Thus, the correct option is B.

For more details regarding hard drive, visit:

https://brainly.com/question/10677358

#SPJ1

write the pros and the cons of AI​

Answers

AI can increase efficiency and accuracy in decision making.

What is AI?

AI (Artificial Intelligence) is the simulation of human intelligence processes by machines, especially computer systems. These processes include learning (the acquisition of information and rules for using the information), reasoning (using the rules to reach approximate or definite conclusions) and self-correction.

Pros:1.AI can increase efficiency and accuracy in decision making.
2.It can reduce human error and increase safety.
3.AI can help automate mundane and repetitive tasks.
4.AI can help with predictive analytics, helping businesses to anticipate customer needs and demands.
5.AI can be used to better understand customer behavior, allowing businesses to provide better service.

Cons: 1.AI can result in job loss due to automation.
2.AI systems are susceptible to bias and manipulation.
3.AI can cause privacy concerns due to its ability to collect and store large amounts of data.
4.AI can be expensive to implement and maintain.
5.AI can be difficult to test and validate.

To learn more about AI
https://brainly.com/question/25523571
#SPJ1

Match the network media to their characteristic. shielded twisted-pair cable coaxial cable optic-fiber cable used by cable service providers to transmit TV programs arrowRight is heavy and difficult to deploy arrowRight offers the fastest transmission speeds: about 100 Gigabits per second (Gbps)

Answers

Optic-fiber cable - offers the fastest transmission speeds: about 100 Gigabits per second (Gbps).

What is Gigabits?

Gigabits (Gb) is a unit of measurement for digital information throughput. It is the equivalent of one billion bits, or 1,000 megabits (Mb). Gigabits are commonly used to measure the speed of an Internet connection, and are often referred to as “Gigabit internet speeds”. The amount of data that can be transferred over a Gigabit connection is significantly higher than over a slower connection.

shielded twisted-pair cable - is heavy and difficult to deploy
coaxial cable - used by cable service providers to transmit TV programs
optic-fiber cable - offers the fastest transmission speeds: about 100 Gigabits per second (Gbps).

To learn more about Gigabits
https://brainly.com/question/289615
#SPJ1

Answer:

Offers the fastest transmission speeds

about 100 Gigabits per second (Gbps): optic-fiber cable

is heavy and difficult to

deploy: shielded twisted-pair cable

used by cable service providers to

transmit TV programs: coaxial cable

Explanation:

I hope this helps!

BTW PLATO

3.An _________can refer to the values of variables.

Answers

An integer can usually be inferred to the values of many variables.

What is a variable?

A variable in programming is a value that can change based on external factors or data that has been supplied to the programme.

A programme typically consists of data that it uses while running and instructions that tell the machine what to execute.

The variable's value, which is the value the variable name denotes, can be grouped into the following categories: A constant is an integer that has the following form: An amount (12) the decimal (12.5)

Many other variables' values can typically be inferred from an integer.

For more details regarding variables, visit:

https://brainly.com/question/17344045

#SPJ1

Other Questions
7 Sound intensity model: L = 10 log L = loudness, in decibels (dB); I = sound intensity, in watts/m2; 10 = 10-12 watts/m2 The loudness of a jack hammer is 96 dB. Its sound intensity is about. The loudness of a compactor is 94 dB. Its sound intensity is about. with solution please thank you guys pls helpQuestion 7 (Multiple Choice Worth 2 points)(01.01 MC)Researchers conduct an experiment and obtain different results from the original investigation. They publish their findings as a new discovery. Which statement best describes how the researchers can make their findings more reliable?O Scientific knowledge cannot change, so nothing will make it more reliable.O Complete more trials and have other scientists repeat the experiment.O Pay other researchers to show the same evidence.O Write another article persuading why they are correct. why have northern european welfare states placed such high value on social services to all their citizens? how many right triangles with distinct sizes have all three vertices taken from the array of dots below? two triangles are to be considered distinct if their side lengths are not the same 3 lengths. a point has a positive x coordinate and a positive y coordinate. What quadrant is it in Problem No. 6 Tamsin is saving up for a smartwatch and puts all of her 50 cent and 20 cent coins in a jar each night. She thinks that she has saved enough and empties the 620 coins to count the money. 286 of the coins are 50 cent. If the cost of the smart watch is 230, how much more must she save to allow her buy the watch? Jeremy wrote an essay criticizing the college admissions process, arguing that heavy competition and limited educational resources make admission difficult for the average student. Which perspective would Jeremy's argument fall under?1) Behaviorism2) Conflict Theory3) Symbolic Interactionism4) Structural Functionalism A person who enforced laws and managed tax collection in Sparta.Pilihan jawabanephorhelottyrantoligarchydemocracy Write 2 paragraphs about Martin Luther King Jr.Where was he born?Who was he?What did he study?Why is he remembered? What is deletion with example? Bird Bath Your neighbor is moving a new bird bath to his triangular back yard.He wants the bird bath to be the same distance from each edge of the yard. Where should your neighbor place the bird bath? Explain. y + z = 4y - z = 8 Which type of card typically charges higher rates of interest and late fees? uv-vis spectroscopy is used to measure the concentration of molecules in a dilute solution. it relies on the ability of certain molecules to absorb light. the part of a molecule that can absorb uv-vis light is called a "scotts turf builder halts crabgrass preventer with lawn food" does this statement seem useful ? 3.3 Present tense of er and ir verbs to y ellos Which equations represent circles that have a diameter of 12 units and a center that lies on the y-axis? Select two options. x2 + (y 3)2 = 36 x2 + (y 5)2 = 6 (x 4) + y = 36 (x + 6) + y = 144 x2 + (y + 8)2 = 36 Artifacts show that early people in this location were builders and traders *O Clovis PointSpiro MoundTriadBeringia Which option best describes strikebreakers?A. Replacement workers that business owners would bring in if theworkers tried to organize a strikeB. Local and state government agencies that arrested andimprisoned union leaders to prevent strikesC. Armed militias that business owners hired to attack workers whowent on strikeD. Negotiators who worked with union leaders and business ownersto end strikesSUBMIT Aisha wants to buy apples and raspberries to make a fruit tart. Apples cost $3 per pound and raspberries cost $2.75 per pound. How many pounds of fruit does she buy if she buys 3 pounds of apples and 2.5 pounds of raspberries? How many pounds of fruit does she buy if she buys x pounds of apples and y pounds of raspberries?