Does anyone know what these two things are?

Does Anyone Know What These Two Things Are?
Does Anyone Know What These Two Things Are?

Answers

Answer 1
Cd and headphones :)
Answer 2

Answer:

CDs/DVDs and a headset.


Related Questions

Gina, an IT professional, noticed that the servers were running very slowly. She evaluated the system and made a recommendation to the workers at her company to improve the performance of the system. She told them that the most important thing they could do to help was to _____.


stop opening attachments

delete unneeded e-mail

log off the system for at least two hours each workday

limit the number of e-mails they replied to each week

Answers

Answer:

delete unneeded e-mail

Explanation:

this will free up space

delete unneeded e-mails

Explanation:

once you delete unneeded emails you wont have an risk for an slower functioning work day

(I WILL GIVE BRAINLIEST) Which steps will delete an appointment?

left-clicking on the appointment and hitting delete on the keyboard
double-clicking on the appointment and hitting delete on the keyboard
right-clicking the Calendar folder and hitting delete on the keyboard
clicking the Calendar folder and hitting delete on the keyboard

Answers

Answer:

right clicking should be your answer

RIGHT ANSWER GETS BRAINLEST

Complete the code.

You are writing a loop to allow the user to enter data until they enter a "Q". You want to allow them to enter an upper- or lowercase "Q".

if yourTeam.
() == "q":
break


The options they give are:
Upper
Compare
lower

Answers

Answer:

sir i beleive lower is your answer, i know it isnt upper.

Explanation:

:D

Answer:

lower

Explanation:

i just did the quiz and got it right :)

How many comparisons will be done to find 8 in this list using a linear search?

2, 4, 6, 8, 10, 12

Answers

Answer:

I think 4 comparisons

A MailTip is an instantaneous pop-up message that

warns users of bad email addresses.

forces the sender to check their grammar and spelling.

gives you real-time information about the message you are creating.

provides helpful hints on how to navigate the message controls.

Answers

Answer:

its (c)

Explanation:

can someone help me on codehs. its 7.1.5: initials. here is what your supposed to do

Write a function called initials that will take a first and last name and return their initials using the following format:

initials("Tracy", "Turtle")
# => "T.T."
initials("Peter", "Parker")
# => "P.P."

Answers

Answer:

first = input( "What is your first name? " )

last = input( "What is your last name? " )

def initials():

   print ("Your initials are: "+first[0]+"."+last[0]+".")

initials ()

Explanation:

it works when I test but it won't submit. Hope this helps

Following are the program to prints the initials of the input value.  

Program Explanation:

Defining a class Main.Inside the class, a method "initials" is declared that takes two string variables "first, last" in the parameter.Inside the method, a return keyword is defined that uses the charAt method that returns the first character value of the parameters. In the next step, the main method is defined.Inside the main method, a print method is declared that calls initials method that accepts value in the parameter and prints its value.

Program:

public class Main //defining a class Main

{

   static String initials(String first, String last)//defining a String method initials that input two variables in the parameter

   {

       return first.charAt(0)+"."+last.charAt(0)+".";//using charAt method that returns first character value

   }

 public static void main(String[] as) //defining main method

 {

   System.out.println(initials("Tracy", "Turtle"));//using print method that calls initials method that accepts value in parameter

   System.out.println(initials("Peter", "Parker"));//using print method that calls initials method that accepts value in parameter

 }

}

Output:

Please find the attached file.

Learn more:

brainly.com/question/2810164

Lilly is new to her company. Give Lilly some advice about effective communication in an e-mail. Include a subject line.

Answers

Effective communication is an important aspect throughout all aspects of life, but it is especially important when in a new job. This is because your communication, or even lack of communication could very likely change you or a co-workers life. For example, let's say a co-worker needed you to do something, and you couldn't do it, but didn't tell them, then they could get into trouble and potentially fired for not doing the work that they entrusted to you. In some cases, they'll blame you, and you can get fired.

In a particular spreadsheet, the data in each cell is password protected. When cells are selected, the formula is visible
in the formula bar. Which is true?
O The cells are locked and hidden.
The cells are locked and unhidden.
The cells are unlocked and hidden.
O The cells are unlocked and unhidden.

Answers

Answer:

Explanation:

Locked and hidden

Explain why configuration is essential in planning a project.

Answers

Answer:

Configuration management system helps in managing versioning of project management plans, documents and project components. This system may include Change Control System. Because the major cause of taking a new version for a component, document or plan in a project is a change

What does the Python print() function do?

Completes a calculation
Displays a string value
Sends a document to the printer
Shows a keyword

Answers

Answer:

B. Displays a string value

Answer:

the guy above is right

Explanation:

Question #1
Dropdown
You entered the following line of code in IDLE.
>>> guess = input("Enter a guess: ")
This is the result.
Enter a guess: 2
What data type is the variable guess?
string
int
float

Answers

Answer:

int

Explanation:

Here is the input:

"Enter a guess: 2"

The input is the number. The type of variable for whole number (number without a decimal point) is integer, or int in short form.

If the input would be:

"Enter a guess: Hello"

Then the type of variable would be string, because it's a text input.

And if the input would be:

"Enter a guess: 1.5"

Then the type of variable would be float, because it's a number with a decimal place.

In the variable guess the type of data type is int. The correct option is B.

What is a data type?

A variable's data type and the kinds of mathematical, relational, and logical operations that can be performed on it without producing an error are classified as data types in programming.

Integral, Floating Point, Character, Character String, and Composite types are the five basic kinds of data types that are recognised by the majority of current computer languages.

Each broad category also includes a number of particular subtypes.

The most common integer data type in SQL Server is the int data type. When integer values may be larger than what the int data type can handle, the bigint data type is meant to be used.

Thus, the correct option is B.

For more details regarding data type, visit:

https://brainly.com/question/14581918

#SPJ5

You should see the following code in your programming
import simplegui
def draw_handler(canvas);
# your code goes here
frame = simplegui.create_frame('Testing', 600, 600)
frame.set_canvas_background("black")
frame.set_draw_handler(draw handler)
rame.start()

Answers

Answer:

import simplegui

import random

def draw_handler(canvas):

for x in range(1000):

colorList = ["Yellow", "Red", "Purple", "White", "Green", "Blue", "Pink", "Orange"]

c = random.choice(colorList)

x = random.randint(1,600)

y = random.randint(1,600)

canvas.draw_point([x, y], c)

frame = simplegui.create_frame('Testing', 600, 600)

frame.set_canvas_background("Black")

frame.set_draw_handler(draw_handler)

frame.start()

Explanation:

I used a for loop, setting my range to 1000 which is how you create exactly 1000 points. Next, I defined my color array, my x randint value, and my y randint value. I set both the x and y randint values to 1 - 600 since the frame is 600x600. The rest is pretty self explanatory.

An else statement will be executed in what situation?
the if statement is true
the if statement is false
there is a syntax error
the elif statement is executed

Answers

Answer:

The second one.

Explanation:

An `else` statement is like the alternative route for the code. I like to put it in my own words like, "If the user puts a number insted of a letter tell them they did a good job! Else(Otherwise) Tell them they need to try again.

I hope I helped!

Answer:

b) the if statement is false

Explanation:

The else statement is performed if the if statement's condition is not fulfilled. An else statement executes if an if statement is false. The else statement gives the code a backup if the if statement fails. If the if statement fails, this might propose a different course of action.

An if statement may test whether an integer is even or odd by dividing it by two. This tells the computer whether the number is even or odd. If the input number is divisible by 2, the software will print "the number is even" if it is the computer that determines whether the number is even or odd. If the input number is divisible by 2, the software will print "the number is even" if it is. The else statement may show that the "number is odd" if the integer cannot be divided by two.

Calling all engineers and tech geniuses. Brianliest for correct answer.

My cousin has this toy walkie talkie but it doesn’t work without a battery. I want to put a battery in but I don’t know what to put in because there is no label saying so.

Please help!

Which battery should I put in and where do I get it from???

Answers

Answer:

so id assume you need a battery like in the photo. to attach it you should be able to look at the top of the battery and just click the battery component onto the battery. sorry if im using the incorrect terms.

Steven wrote an algorithm for his coding class that explains how he puts on his shoes. Which is the correct sequence of steps that Steven used?

Place foot in shoe, untie laces, tie laces
Tie laces, place foot in shoe, untie laces
Untie laces, place foot in shoe, tie laces
Untie laces, tie laces, place foot in shoe

Answers

untie laces ,place foot in shoe, tie laces maybe?

True or False? Jerry's company is beginning a new project, and he has been assigned to find a telecommunications tool that will improve operational efficiency. He lists the tasks that he wants the tool to be able to do. Then he does some research to find out what is available. The only thing remaining for Jerry to consider is where he can get the best deal on the technology.

Answers

Answer:

True

Explanation:

Answer:

It's false it took the assessment

4.2.10: Multiplication Table: Create a program using a for loop which will print out the 4’s times table through 10.

Answers

I included my code in the picture below. Best of luck.

hellllllllllp i need hlel dad

Answers

miss girl whatttttttttt

Where do you place the logical test argument in an IF function formula?
.before the IE function
.the first argument listed after IF
.the second argument listed after IF
.the third argument listed after IF

Answers

Answer:

The first argument listed after IF

Explanation:

When the two variables are listed next to each other, Excel will find and calculate the correlation between them.

Answer:

B. the first argument listed after IF

Explanation:

Other Questions
what is the distance between the points F(-3,8) and G(4,5)? What is the perimeter of this figure? Which letter has line symmetry?Q PLJM? PLEASE HELP I will mark brainliest if you explain what you got and how you got it In a 6-8 sentence paragraph explain how the stamp act led up to the American Revolution. what is the theme in the poem the vulture by David diop Classify each triangle by it angle and by its sides plz help me out Please help it is not a multiple answer question just one answer!!The question has been asked many times if I believed then that the Maine was blown up from the outside. My answer to this has been that my first order on reaching the deck was to post sentries about the ship. I knew that the Maine had been blown up, and believed that she had been blown up from the outside. Therefore I ordered a measure which was intended to guard against attack. . . . There was the sound of many voices from the shore, suggestive of cheers.Charles D. Sigsbee,Captain of USS Maine,1899What evidence does the captain give that might indicate that the explosion was a deliberate attack?The ship blew up in the harbor.The captain heard voices from shore.The captain thought he heard cheering.The explosion came from inside the ship. Find the volume of the triangular prism below: resistance in zimbabwe PLEASE HELP!!! What is the domain and range based on the pic below? Need helpppppo plzzzzzzzz A student tried to solve the following equation but made a mistake.Step 1: 4 8x = -28Step 2: -8x = -24Step 3: x = 3What mistake did the student make? please help me on this will give you brainliest THE BEST ANSWER GET BRAINLIEST All over the world, animal habitats bump up against human development. Where these two worlds collide, animals almost never farewell. Highways, where humans speed by large tracts of natural habitat like missiles of doom, are especially dangerous for wild creatures. They can also be deadly, not just for individual animals but for entire species. The Florida panther, for example, has such a low population that each time one is killed on a highway, it is a catastrophic loss.There is hope, however, in a new way of helping animals cross through highway areas unharmed. Wildlife overpasses give animals a way to cross highways without risking their lives. These look and work like bridges but are usually covered with grass and trees that make animals like deer feel welcome. The cars drive through a tunnel under the bridges. Fences along the top edges keep the animals safe.These overpasses also connect habitats, so along with deer, the coyotes who hunt them can cross. This allows both species to have a larger range, which also helps their long-term survival. To the animals in these habitats, the overpasses may be like an extra safety net that helps them survive a drought. The bridges are especially important for animals that migrate. For centuries, animals like elk and buffalo migrated on trails that still, now, lead right up to the edges of major highways. With the help of these bridges, migrating animals can still follow their long-used paths unharmed.In some cases, these overpasses benefit humans directly as well. In these cases, the overpasses are part of green space or parks that people use for cycling, backpacking, or jogging. The overpasses give humans access to areas they may not have been able to see but also provide safety for animals.The next time you are traveling on a highway, keep a lookout for a wildlife passage. With attention to how our lives affect the natural world, we can find clever solutions, like wildlife passages, that help animals and improve our lives, too.Extra! Extra!Not all wildlife accommodations for highways are overpasses. In some cases, certain species are so important that underpasses or underground tunnels are built. In Florida, two such underpasses help turtles, snakes, and alligators that often migrate from one body of water to another. Since these creatures do not have much speed, crossing a highway for them is even more deadly than it is for swift animals like deer. Working as a large funnel, these underpasses usually require a barricade or fence alongside the highway that forces animals toward a tunnel. Aquatic turtles especially benefit from these tunnels as they lay eggs in holes dug in dry ground, away from the lake they live in.what benefit do overpasses and underpasses offer wildlife?A. A view of passing humans and cars B. Access to habitat that helps them survive C. Attention to the need for additional habitatD. Increased exposure to humans and their cities determine the steady state temperature distribution between two concentric spheres with radii 1 and 4 How much force is needed to get the merry-go-round to spin slowly? A. highB. medium C. lowD. no force needed. PLEASEE HELP ASAP!!! PLEASE HELPPPPP A right triangle has side lengths of 3cm, 4cm, and 5cm. What is the sine of the angle opposite the side of length 4cm Is 6.787887888... a rational number why was India England's most valuable colony?