7. The expansion slot is located on the A. CPU B. DVD drive C. D. Hard disk Motherboard​

Answers

Answer 1

Answer:

Motherboard

Explanation:


Related Questions

How many rows are in the SFrame?

Answers

Answer: It's not possible for me to know how many rows are in a specific SFrame without more information. The number of rows in an SFrame will depend on the data that it contains and how it was created.

Explanation: SFrame is a data structure for storing large amounts of data in a tabular format, similar to a spreadsheet or a SQL table. It was developed by the company Turi, which was later acquired by Apple. SFrames are designed to be efficient and scalable, and they can store data in a variety of formats, including numerical, categorical, and text data.

Hi, I have a CodeHS Python assignment called "Exclamation Points"


the assignment is as follows and I have no idea where to start with this if someone could help me please:


"Words are way more edgy when you replace the letter i with an exclamation point!


Write the function exclamations that takes a string and then returns the same string with every lowercase i replaced with an exclamation point. Your function should:


Convert the initial string to a list

Use a for loop to go through your list element by element

Whenever you see a lowercase i, replace it with an exclamation point in the list

Return the stringified version of the list when your for loop is finished"

Answers

Using the knowledge in computational language in python it is possible write the function exclamations that takes a string and then returns the same string with every lowercase i replaced with an exclamation point.

Writting the code;

my_string = input("Enter text: ")

my_list = list(my_string)

for item in my_list:

   if item == "i":

       print "!"

       my_list.remove("i")

   print item

(" ").join(my_list)

my_string = list(input('Enter string: '))

for i, char in enumerate(my_string):

   if char == 'i':

       my_string[i] == '!'

print(''.join(my_string))

my_string = input("Enter text: ")

my_list = list(my_string)

for item in my_list:

   if item == "i":

       print "!"

       my_list.remove("i")

   else:

       print item

(" ").join(my_list)

See more about python at  brainly.com/question/18502436

#SPJ1

This image shows a web designer's grids for different pages on a website. The uppermost box on each page is the website's identity. Which important
feature of a good website has the designer violated?
A simplicity
B.
consistency
Ос
clarity
D. harmony

Answers

Answer: d

Explanation: hope this helps

Answer:

consistency

Explanation:

i got it right on plato

What is the output of the following code segment?

String[] cs = "Elon Musk founded SpaceX on May 6, 2002.".split(" ");

System.out.println(cs.length);

Answers

Answer:

8

Explanation:

Create a program that asks the user to input three integers. After saving the values, the
program should identify the maximum and minimum from the three numbers. The output
should read
The minimum number entered was….
The maximum number entered was….

Answers

Here is a Python program that asks the user to input three integers and then outputs the minimum and maximum number:

Consider the following code segment.
int[][] arr = {{3, 2, 1}, {4, 3, 5}};
for (int row = 0; row < arr.length; row++)
{
for (int col = 0; col < arr[row].length; col++)
{
if (col > 0)
{
if (arr[row][col] >= arr[row][col - 1])
{
System.out.println("Condition one");
}
}
if (arr[row][col] % 2 == 0)
{
System.out.println("Condition two");
}
}
}
As a result of executing the code segment, how many times are "Condition one" and "Condition two" printed?
A. "Condition one" is printed twice, and "Condition two" is printed twice.
B. "Condition one" is printed twice, and "Condition two" is printed once.
C. "Condition one" is printed once, and "Condition two" is printed twice.
D. "Condition one" is printed once, and "Condition two" is printed once.
E. "Condition one" is never printed, and "Condition two" is printed once.

Answers

Answer:

C. "Condition one" is printed once, and "Condition two" is printed twice.

Explanation:

Given

The above code segment

Required

The number of times [tex]each\ print\ statement[/tex] is executed

For "Condition one" to be printed, the following conditions must be true:

if (col > 0) ---- the column must be greater than 0 i.e. column 1 and 2

if (arr[row][col] >= arr[row][col - 1]) --- the current element must be greater than the element in the previous column

Through the iteration of the array, the condition is met just once. When

[tex]row = 1[/tex]  and   [tex]col = 2[/tex]

[tex]arr[1][2] > arr[1][2-1][/tex]

[tex]arr[1][2] > arr[1][1][/tex]

[tex]4 > 3[/tex]

For "Condition two" to be printed, the following condition must be true:

if (arr[row][col] % 2 == 0) ----array element must be even

Through the iteration of the array, the condition is met twice. When

[tex]row = 0[/tex]  and   [tex]col = 1[/tex]

[tex]row = 1[/tex]  and   [tex]col = 0[/tex]

[tex]arr[0][1] = 2[/tex]

[tex]arr[1][0] = 4[/tex]

how to Design a registration page​ for a school called At school complex with html

Answers

Answer:

<!DOCTYPE html>

<html>

<head>

 <title>At School Complex Registration</title>

 <meta charset="utf-8">

</head>

<body>

 <h1>At School Complex Registration</h1>

 <form>

   <label for="name">Name:</label><br>

   <input type="text" id="name" name="name"><br>

   <label for="email">Email:</label><br>

   <input type="email" id="email" name="email"><br>

   <label for="phone">Phone:</label><br>

   <input type="phone" id="phone" name="phone"><br>

   <label for="grade">Grade Level:</label><br>

   <select id="grade" name="grade">

     <option value="kindergarten">Kindergarten</option>

     <option value="elementary">Elementary</option>

     <option value="middle">Middle</option>

     <option value="high">High</option>

   </select>

   <br>

   <input type="checkbox" id="activities" name="activities">

   <label for="activities">I am interested in after-school activities</label><br>

   <input type="submit" value="Submit">

 </form>

</body>

</html>

write the program to accept the radius of circle and find its diameter coding

Answers

Um is there a picture for I can help because u forgot to put a picture:(

Five year ago, Amit was three times as old as Arman. Ten years later Amit would be twice as old as Arman. How old is Arman now? *

1 point​

Answers

Answer: 50
Explanation: let amit's current age = a and armaan's current age be b.
(a-5) = 3* (b-5)
i.e. a= 3b-10 -(i)
10 years later,
(a+10) = 2(b+10)
i.e. a=2b+10 -(ii)
From eqn (i) and (ii),
b=20,
and a=50

Answer:

50

Explanation:

Select the correct answer.
Which symbol should you use for entering a formula in a cell?
A.
+
В.
=
c.
$
D. Divide
E. #

Answers

Answer:

equals operator...............

Code to be written in python:
Correct answer will get brainliest! :)

For any positive integer S, if we sum up the squares of the digits of S, we get another integer S1. If we repeat the process, we get another integer S2. We can repeat this process as many times as we want, but it has been proven that the integers generated in this way always eventually reach one of the 10 numbers 0, 1, 4, 16, 20, 37, 42, 58, 89, or 145. Particularly, a positive integer S is said to be happy if one of the integers generated this way is 1. For example, starting with 7 gives the sequence {7, 49, 97, 130, 10, 1}, so 7 is a happy number.


Your task is to write a function compute_happy_numbers(range1, range2) , where range1 and range2 are each tuples of the form (lower_bound, upper_bound), and returns a tuple containing: (1) the number of happy numbers in range1, (2) the number of happy numbers in range2, (3) the number of the range (1 or 2) containing more happy numbers, or None if both ranges have the same number of happy numbers.

def compute_happy_numbers(range1, range2):
"""Your code here"""

Test Cases:
compute_happy_numbers((1,1), (1,1)) (1, 1, None)
compute_happy_numbers((1, 10), (11, 100)) (3, 17, 2)

Answers

Here is an implementation of the compute_happy_numbers function in Python: (see image)
This function first defines a helper function is_happy that takes in a number n and returns True if n is a happy number and False otherwise. It does this by repeatedly summing the squares of the digits of n until it reaches 1 or a number that has been seen before (in which case n is not a happy number).

The compute_happy_numbers function then defines another helper function count_happy_numbers that takes in a range r and returns the number of happy numbers in that range. It does this by using the is_happy function to check each number in the range.

Finally, the compute_happy_numbers function calls count_happy_numbers on both range1 and range2 and compares the number of happy numbers in each range. It returns a tuple containing the number of happy numbers in each range, as well as the range number (1 or 2) that contains more happy numbers, or None if both ranges have the same number of happy numbers.

I hope this helps! Let me know if you have any questions.

Design and implement a program that reads a series of 10 integers from the user and prints their average. Read each input value as a string, and then attempt to convert it to an integer using the Integer.parseInt method. If this process throws a NumberFormatException (meaning that the input is not a valid number), print an appropriate error message and prompt for the number again. Continue reading values until 10 invalid integers have been entered.

Answers

Answer:

Explanation:

The following program was written in Java. It creates a loop that asks the user for numbers. If it can convert it to an integer it accepts it and adds it to the sum variable otherwise it ouputs that it is not a valid number. Once all 10 integers are added it prints the Average of the values entered.

import java.util.ArrayList;

import java.util.Scanner;

class Brainly {

   public static void main(String[] args) {

       Scanner in = new Scanner(System.in);

       int count = 0;

       int sum = 0;

       while (count != 10) {

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

           String answer = in.nextLine();

           try {

               int intAnswer = Integer.parseInt(answer);

               sum += intAnswer;

               count += 1;

           } catch (NumberFormatException e) {

               System.out.println("Not a valid number.");

           }

       }

       int average = sum / count;

       System.out.println("Average: " + average);

   }

}

5. Which of the following is a hypothetical concept?
a. Limited Memory
b. Self-aware Al
Fill in the blanks.
1. Al processes large amount of data using algorithms.
2. The term Al was coined in the year
3. The domain of Al that makes systems improve their decision-making abilities is called
c. Reactive Machines
- Intelligent systems refer to an approach that employ computers in
J
uses neural networks to process data to gain insights and give solutions
for Falco

Answers

Involving or based on a hypothesis: conjectural; involving or based on a postulated concept or theory. speculative arguments a fictitious circumstance.

How should a hypothetical example be written?

The words or abbreviations "for instance," "for example," "i.e." or "e.g." are frequently used after a hypothetical example, albeit the latter two, as you are probably aware, will only come after a comma and won't initiate a new sentence like "for instance" or "for example." Use hypothetical examples with caution.

What is a fictitious person?

The human whose existence is implied by other data rather than directly attested. theoretical individual hypothetical (adj.) is a 1580s term that means "based on or defined by a hypothesis, conjectural," from the Latinized form of the Greek word hypothesis, which means "pertaining to a hypothesis."

to know more about the hypothetical concept here:

brainly.com/question/28260252

#SPJ1

What is SDLC? Why a commerce student must learn about SDLC and its phases? How SDLC could help a commerce graduate in career growth and success

Answers

Explanation:

A, B & C form the vertices of a triangle.

∠ CAB = 90°, ∠ ABC = 73° and AB = 9.4.

Calculate the length of BC rounded to 3 SF

To insert a new column to left of a specific column right click the header containing the columns letter and select

Answers

To insert a new column to the left of a specific column, right-click the header containing the column's letter and select simply right-click on any cell in a column, right-click and then click on Insert.

What is inserting columns?

By doing so, the Insert dialog box will open, allowing you to choose "Entire Column." By doing this, a column would be added to the left of the column where the cell was selected.

Go to Home > Insert > Insert Sheet Columns or Delete Sheet Columns after selecting any cell in the column. You might also right-click the column's top and choose Insert or Delete.

Therefore, to insert a column, right-click the header containing the column's letter.

To learn more about inserting columns, refer to the link:

https://brainly.com/question/5054742

#SPJ1

Write the following program: Use struct data type to store information about courses. Every course is characterized by the following information: 1) Title (up to 20 characters); 2) Number of credits (integer); 3) Instructor (up to 15 characters); and 4) the suggested order of the course in the course sequence of the major (integer; Two courses can have the same suggested order).
- The information about individual courses is read from an input file.
- Store the information about all courses in an array and then display the content of the array.
- Order the courses in the alphabetical order of their titles and then display all the courses.
- Order the courses in the suggested order of the courses, such that one course with a lower suggested order is always before a course with a higher suggested order. Assuming that a student cannot take more than X credits per year (the value X is read from the keyboard), display what courses a student should take every year, so that courses are following the suggested order and the number of credits per year does not exceed the limit X.
Note: Extra credit is given if dynamic data structures are used.
example:
Inputfile: ESE999 5 Marshmello 2
MAT123 3 David 1
CSE123 4 Armin 3
JPN123 1 Martin 3
AMS123 2 Dimitri 1
Output:(display the content of the array):
ESE999 5 Marshmello 2
MAT123 3 David 1
CSE123 4 Armin 3
JPN123 1 Martin 3
AMS123 2 Dimitri 1
Output:(Order the courses in the alphabetical order of their titles and then display all the courses.)
AMS123 2 Dimitri 1
CSE123 4 Armin 3
ESE999 5 Marshmello 2
JPN123 1 Martin 3
MAT123 3 David 1
(Order the courses in the suggested order of the courses):
Input: 6
Output:
Year 1:
AMS123 2 Dimitri 1
MAT123 3 David 1
Year 2:
ESE999 5 Marshmello 2
JPN123 1 Martin 3
Year 3:
CSE123 4 Armin 3

Answers

I need this answer to 12

How to write a java program that asks the user for grades of students. Once the user enters 0 (zero), the program should print the largest of the marks of the students.

Answers

Answer:

import java.util.Scanner;

public class GradeProgram {

   public static void main(String[] args) {

       Scanner sc = new Scanner(System.in);

       System.out.println("Please enter the student grades: ");

       int grade = sc.nextInt();

       int largestGrade = 0;

       while (grade != 0) {

           if (grade > largestGrade) {

               largestGrade = grade;

           }

           grade = sc.nextInt();

       }

       System.out.println("The largest grade is: " + largestGrade);

   }

}

Explanation:

what is the fullform of BIT​

Answers

▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬

The full Form of BIT is "Binary digit" which is the basic unit of information in computing . A Binary digit can be 0 or 1 . 0 represents off state & 1 represents on state .

▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬

which type of computer is used to process large amount of data​

Answers

Answer:

Mainframe Computer

Explanation:

Supercomputers

if you are looking for a different answer, please let me know and i will take a look! i'd love to help you out with any other questions you may have

What is wrong with the following code?
int name = "Steve":
if (name = "Steve") {
System.out.prſntln("Hi Steve!);
}

Answers

what language code are you using?

Anika added a picture to a cell in an Excel spreadsheet. She wants to permanently make the picture smaller. What
is the most efficient way to adjust the size of the picture?
compressing the picture in the Picture Tools tab
O changing the size of the cell where the picture was inserted
double-clicking the picture to click and drag a corner to the appropriate size
o editing the size of the photo in a different program and reinserting the picture

Answers

Answer:

A. Compressing the picture in the Picture Tools tab

Explanation:

To compress the size of a picture in Excel spreadsheet is by choosing the compress pictures option in the Picture Tools tab.

Once you select the picture(s) you want to reduce the size, a new option of 'Picture Format' will appear on the toolbar. In that option, many options will appear. One of these option is 'compress pictures'. With the help of this option, you can either compress picture or multiple pictures.

Therefore, the correct way to compress pictures in Excel spreadsheet us option A.

Demonstrate the Max() functio with example in ms excel

Answers

Make sure there is at least one blank cell underneath the list of integers you've chosen = MAX since this will insert a ready-to-use formula in a cell below the chosen range (C2:E7).

What does the term Max mean?

The highest-valued item, or the item with the highest value within an iterable, is returned by the max() method. If the values are strings, then the comparison is done alphabetically.

Give an example of the Max () function's purpose.

Any type of numeric data can have its maximum value returned by the MAX function. The slowest time in a race, the most recent date, the highest percentage, the highest temperature, or the biggest sales amount are just a few examples of the results that MAX can return. Multiple arguments are taken by the MAX function.

To know more about ms excel visit:-

https://brainly.com/question/20395091

#SPJ1

To qualify for a particular scholarship, a student must have an overall grade point average of 3.0 or above and must have a science grade point average of over 3.2. Let overallGPA represent a student’s overall grade point average and let scienceGPA represent the student’s science grade point average. Which of the following expressions evaluates to true if the student is eligible for the scholarship and evaluates to false otherwise?

a: (overallGPA > 3.0) AND (scienceGPA ≥ 3.2)
b: (overallGPA > 3.0) AND (scienceGPA > 3.2)
c: (overallGPA ≥ 3.0) AND (scienceGPA ≥ 3.2)
d: (overallGPA ≥ 3.0) AND (scienceGPA > 3.2)

Answers

Answer:

([tex]overallGPA \ge 3.0[/tex]) AND ([tex]scienceGPA > 3.2[/tex])

Explanation:

Given

[tex]overallGPA \to[/tex] Overall Grade Point Average

[tex]scienceGPA \to[/tex] Science Grade Point Average

Required

The expression that represents the given scenario

From the question, we understand that:

[tex]overallGPA \ge 3.0[/tex] --- average [tex]greater\ than\ or[/tex] equal to [tex]3.0[/tex]

[tex]scienceGPA > 3.2[/tex] --- average [tex]over[/tex] 3.2

Since both conditions must be true, the statements will be joined with the AND operator;

So, we have:

([tex]overallGPA \ge 3.0[/tex]) AND ([tex]scienceGPA > 3.2[/tex])

In this problem, you will derive the efficiency of a CSMA/CD-like multiple access protocol. In this protocol, time is slotted and all adapters are synchronized to the slots. Unlike slotted ALOHA, however, the length of a slot (in seconds) is much less than a frame time (the time to transmit a frame). Let S be the length of a slot. Suppose all frames are of constant length L = kRS, where R is the transmission rate of the channel and k is a large integer. Suppose there are N nodes, each with an infinite number of frames to send. We also assume that dprop < s,="" so="" that="" all="" nodes="" can="" detect="" a="" collision="" before="" the="" end="" of="" a="" slot="" time.="" the="" protocol="" is="" as="">

⢠If, for a given slot, no node has possession of the channel, all nodes contend for the channel; in particular, each node transmits in the slot with probability p. If exactly one node transmits in the slot, that node takes possession of the channel for the subsequent k â 1 slots and transmits its entire frame.

If some node has possession of the channel, all other nodes refrain from transmitting until the node that possesses the channel has finished transmitting its frame. Once this node has transmitted its frame, all nodes contend for the channel.

Note that the channel alternates between two states: the productive state, which lasts exactly k slots, and the nonproductive state, which lasts for a random number of slots. Clearly, the channel efficiency is the ratio of k/(k + x), where x is the expected number of consecutive unproductive slots

a. For fixed N and p, determine the efficiency of this protocol.
b. For fixed N, determine the p that maximizes the efficiency.
c. Using the p (which is a function of N) found in (b), determine the efficiency as N approaches infinity
d. Show that this efficiency approaches 1 as the frame length becomes large

Answers

Answer:

He is correct

Explanation:

What benefit do internal networked e-mail systems provide over Internet-based systems?

A) They enable the transmission of videos.
B) They allow e-mail to be sent to coworkers.
C) They allow files to be shared by sending attachments.
D) They provide increased security.

Answers

Answer:

The correct answer is D) They provide increased security.

plz i need help what is wrong on line 14

Answers

Indentation is very important in python. You need to indent code inside while loops, for loops, if statements, etc. You don't seem to be indenting.

In this example:

while (secretNum != userGuess):

   userGuess = int(input("Guess a number between 1 and 20: "))

Although, you might need to indent more than only this line. I hope this helps.

why does computer need memory​

Answers

so that they can store your things you download.

Answer:

To Help you keep your cherisable and memorable moments.

Which company gave Apple its big break in the business market?

Commodore Business Machines
Software Arts
Tandy Corporation
Microsoft

Answers

Answer:

Microsoft

Explanation: I’m not a computer fanatic, but everybody should know this. And if anything else is the answer, then that’s because it would’ve been in the text that I DON’T have.

Answer: software arts

Explanation:

i just did it

The largest form of a computer network is called
कम्प्युटर नेटवर्कको सबैभन्दा ठूलो रूप
aekar.xe.​

Answers

Answer:

Internet.

Explanation:

In computing, WWW simply means World Wide Web. The world wide web was invented by Sir Tim Berners-Lee in 1990 while working with the European Council for Nuclear Research (CERN); Web 2.0 evolved in 1999. Basically, WWW refers to a collection of web pages that are located on a huge network of interconnected computers (the Internet). Also, users from all over the world can access the world wide web by using an internet connection and a web browser such as Chrome, Firefox, Safari, Opera, etc.

In a nutshell, the World Wide Web is an information system that is generally made up of users and resources (documents) that are connected via hypertext links.

The largest form of a computer network is called internet because it comprises of several groups of computer that are interconnected.

Generally, the standard Internet communications protocols which allow digital computers to transfer (prepare and forward) data over long distances is the TCP/IP suite.

give the full form of GUI​

Answers

Explanation:

graphical user interface

Answer:-

GUI ➺ Graphical User Interface.

Other Questions
I NEED HELP PLEASEEE All cells of an organism are engaged in many different chemical reactions. This fact is bestsupported by the presence in each cell of thousands of different kinds of1. enzymes2. nuclei3. chloroplasts4. organelles 4.This question has two parts. First, answer Part A. Then, answer Part B.Part AWhat inference can be made about the speaker in Passage 1?A He finds it hard to be happy in the rain.He feels trapped inside during the winter.He regrets that he was too afraid to take chances.He enjoys the solitude promised by spring weather.Part BWhich line from the passage best supports the answer in Part A?A "Give the buried flower a dream;" (line 3)B "Bathe my window, make it flow," (line 7)"Burst into my narrow stall;" (line 11)"Turn the poet out of door." (line 15) A scientist observed that in the presence of light, plants use carbon dioxide and water to make glucose and oxygen. This chemical process is called photosynthesis. Which type of energy is transformed into chemical energy, based on the scientist's observations? Answer options with 4 options A. light energy from the sun B. kinetic energy from water C. chemical energy from oxygen D. heat energy from the environment Find the area of the polygon.19 ft14 ft3 ft4 ft4 ft HELP LIMITED TIME!!!!!!!!!!!!!!!What is one way that greenhouse gases are released into theatmosphere?Select one:1, Introducing non-native species into an environment2, Oil spills3, Littering4, Burning fossil fuels How does cyanide cause cell injury? Hulu allows people to watch television shows and movies on the Internet. Hulu's business opportunity was made possible by ________ that enhanced the ability of television shows and movies to be uploaded to the Internet and played by anyone with a suitable computer and an Internet connection. Group of answer choices economic forces legal changes technological advances regulatory changes social forces Show your honest answer about the new highschool dxd art style vs old When you identify the data elements in a new database, you typically subdivide data elements into __________.1 makes maintenance easier2 clustered3 The column is frequently updated.4 the smallest practical components Explain ONE social reason for resistance to globalization after 1990. alejandro has 70 marbles. darius has M marbles. if alejandro has 10 times as many marbles does darius have? When 4 is added to five times a number the sum is 34. Find the number. * Read these lines spoken by Lysander from A Midsummer Night's Dream and answer the question. To-morrow night when Phoebe doth behold Her silver visage in the watery glass, Decking with liquid pearl the bladed grass, This description is an extended metaphor for _____. What is n?No links!! I repeat NO links Roaline tate thay he will be able to buy the 700 dollar PlayStation Before marko can. If roaline ha 200 dollar in the bank and depoit 100 dollar each week, will he be able to buy the PlayStation before Marko What is the rhythm of the poem Funeral Blues? Help asap PLSSS!! Id really appreciate it. Thank you!! Which of the following is NOT TRUE of Cold War? 2. Josephine found a reminder about her dentist appointment on the refrigerator. A. simple B. complex C. neither