What surprised you the most about computer science ?

Answers

Answer 1

Answer:

Computer science is the study of algorithmic processes

Explanation:

:) its interesting

Answer 2

Answer:

don't know

I am not sure what you mean

Explanation:


Related Questions

Select the correct answer.
Nancy wants to buy a cooking stove that’s electrically insulated and resistant to heat. What material should she choose for the cooktop?
A.
composite
B.
polymer
C.
metal
D.
ceramic
E.
semiconductor

Answers

Answer:

E I think is the best answer

1. While cell phones provide Freedom and mobility,they can also become a leash, compelling user's to answer them anywhere and anytime​

Answers

Cellular phones have had a major impact on our lives and the way that we perform every day tasks. Many of these changes are apparent, while others we may not even be aware of.

Cell phones have brought a whole new meaning to the term multitasking. Twenty years ago, it was not possible to talk to the office while you were at the grocery store picking up some necessary items. You could never have had a three-way business conference while you were fixing dinner or been able to deal with a business client from home while caring for a sick child.

KAPWING Video Editing Software allows you to use existing You Tube Videos in your design.

Answers

Answer:

Yea it should, it depends are you using a phone or a PC? because most of the time internally built in editing software on computers is better.

What are the three primary components of an inbox?
O the Task List, the Calendar, and the Status bar
O the Task List, the Calendar, and the Reading Pane
o the message header, the Folder Pane, and the Reading Pane
O the message header, the Status bar, and the Reading Pane

Answers

The three primary components of an inbox are the message header, the Folder Pane, and the Reading Pane. Hence option c is correct.

What is inbox?

Inbox is defined as a location in an email client or online email account where email messages are received. You may view and manage received emails in your inbox. The sender's name, the message's subject, and the date it was received are provided with each email. You can find the Inbox in the Message List. Opening in the Reading Pane are emails. You have more options for organizing emails with the ribbon.

A computer or smartphone's inbox is a folder where new emails are saved. An email program's inbox is a repository where incoming messages are stored. Email applications may provide several inboxes into which new communications are filtered after being examined for content

Thus, the three primary components of an inbox are the message header, the Folder Pane, and the Reading Pane. Hence option c is correct.

To learn more about inbox, refer to the link below:

https://brainly.com/question/208303

#SPJ2

what are the peripherals of a computer ​

Answers

Answer:

A computer peripheral is any external device that provides input and output for the computer.

Given the following class, public class Magazine { private static double SUBSCRIPTION_DISCOUNT = .60; private String title;
private String publisher;
private double newsstandPrice;
public Magazine(String theTitle, String thePublisher, double theNewsPrice) {
title = theTitle;
publisher = thePublisher;
newsstandPrice = theNewsPrice;
}
public String getTitle() {
return title;
}
public String getPublisher() {
return publisher;
}
public double getNewsstandPrice() {
return newsstandPrice;
}
public double getSubscriptionPrice() {
// implementation not shown
public void setNewsstandPrice(double newPrice) {
newsstandPrice = newPrice;
}
}
Which of the following methods is an accessor method?
I. getTitle
II. getPublisher
III. setNewsstandPrice

I only
I and II only
II only
I and III only
III only

Answers

Answer:

The answer is "III only"

Explanation:

An accessor method is also an instance function that receives or establishes the value of an object's properties. This method is called methods through obtaining information about an entity. This method reverses it to process, which has two accessory string techniques to reach source string data reference length Accessor method.

anybody remember that football game that everyone used to play during school

Answers

Answer:

Like an actual video game or the one where you would play during recess then get in trouble when someone got hurt

Explanation:

Which explanation best describes the importance of continuing education?

1.Continuing education is important to maintain certification and keep up with new advances in the field.
2.Continuing education can be very costly and opportunities are difficult to find.
3.Only physicians and nurses are required to have continuing education.
4.Continuing education is not required, but it is a good way to learn more in your field.

Answers

Answer:

1.Continuing education is important to maintain certification and keep up with new advances in the field.

Explanation:

Continuing education is any additional formal learning that is not focused on a  college degree outcome.

Continuing education helps one to acquire more knowledge and to be relevant in one's field.

So, continuing education is important to maintain certification and keep up with new advances in the field.

Peer collaboration helps develop critical-thinking skills, which is the ability to

focus on multiple subjects at once.
criticize the thoughts of others.
examine a subject more closely.
focus on a single opinion or perspective.

Answers

Answer:

its c

Explanation:

after a few googel searches this is the answer

Answer:examine a subject more closely.

Explanation:

i just finshed the test

Learning how to use word processing and spreadsheets, and creating presentations are all considered __________ computer skills.
A.
basic
B.
advanced
C.
optional
D.
unnecessary

Answers

Answer: a i hope it help

Explanation:

Answer:

A basic

Explanation:

<33

7.5 Code practice Plz answer ASAP

Answers

def calculate_GPA(grade, weight):

   grades = {"A": 4, "B": 3, "C": 2, "D": 1, "F": 0}

   if weight == 0:

       return grades[grade]

   else:

       return grades[grade] + 1

classes = int(input("How many Classes are you taking? "))

total = 0

for x in range(classes):

   letter = input("Enter your Letter Grade: ")

   user_weight = int(input("Is it weighted? (1 = yes) "))

   grade = calculate_GPA(letter, user_weight)

   total += grade

   print("Your GPA score is: ", grade)

print("Your weighted GPA is a",(total/classes))

I wrote my code in python 3.8. I was able to replicate the output in your picture exactly. If you need me to make any changes, I'll do my best.

The function is an illustration of for loops

For loops are used to perform repetitive operations; just like the while loop

The program in Python, where comments are used to explain each line is as follows:

#This defines the studentGPA function

def studentGPA(grade, weight):

   #This initializes a dictionary for all grades

   allGrade = {"A": 4, "B": 3, "C": 2, "D": 1, "F": 0}

   #This sets the return grade to 0

   retValue = 0

   #If the grade is valid

   if grade in allGrade:

       #If the weight is 0

       if weight == 0:

           #Then score is not graded

           retValue = allGrade[grade]

       #If otherwise

       else:

           #This adds 1 to the return grade

           retValue = allGrade[grade]+1

   #This returns the grade point

   return retValue

#The main begins here    

#This gets the number of classes

klass = int(input("How many Classes are you taking? "))

#This initializes the total grade to 0

total = 0

#This following is repeated for each class

for x in range(klass):

   #This gets input for the letter grade

   letterGrade = input("Enter your Letter Grade: ")

   #This gets input for the weight

   weight = int(input("Is it weighted? (1 = yes) "))

   #This gets the corresponding grade

   grade = studentGPA(letterGrade, weight)

   #This prints the grade point

   print("Your GPA score is: ", grade)

   #This calculates the total grade

   total += grade

#This calculates the GPA

GPA = total/klass

#This prints the GPA

print("Your weighted GPA is a",GPA)

Read more about for loop at:

https://brainly.com/question/12736327

How do you describe packet switching in your own words

Answers

Answer:

this is your answer bhaiya

. Which of the following are container elements?

a. bold b. underline c. italics d. all of these

Answers

It’s c cba to explain

Answer:

I think letter b. underline, but not sure

Seneca has just applied conditional formatting and realizes that she has made a mistake. Which action should she take to fix the mistake?

Clear the rule she created by going to the Conditional Formatting Rules Manager dialog box and deleting the rule.
Clear all rules that have been applied to the worksheet or selected range by clicking the Clear Rules button.
Use the Undo button or Ctrl+Z.
Right-click the area where the conditional formatting rule has been applied, and select Clear Rule from the menu list.

Answers

If Seneca has not done anything since the conditional formatting she can undo what her last action was. This is done by either pressing control+Z or by clicking on the undo icon.

If other actions have been done, there are a few more steps that need to be taken in order to clear the formatting. They are:

1. Select the cell or cells whose formatting you want to delete.

2. Display the Home tab of the ribbon.

3. In the Editing group, click Clear | Clear Formats.

Answer:

ITS C HOLY MOLLY

Explanation:

Dr. Wayne is trying to developing techniques to cure Parkinson’s disease by inserting genetic material into patients’ cells to counteract defective genes. This type of treatment is called

.

Answers

I think it called gene therapy

Answer:

gene therapy

Explanation:

It is correct. I just did it

_____ (without parity) means spreading the data among multiple (at least two) drives. Group of answer choices Parity

Answers

Answer:

"Disk Striping" would be the right choice.

Explanation:

Disk stripping has become a methodology where certain numerous small external drives consist of a single massive disk. This same classification turns huge information into single blocks but instead disperses them over numerous different storage media. Disk stripping retail outlets instead of every data unit through a single place and doesn't provide disk failure safeguards.

Skyler is ready to transfer his Webpage files from his computer to a Web server. Which of the
following is a set of rules that enables his large Webpage files to be exchanged between his
computer and the Web server?
O FTP
O SSH
O HTTP
O SSL

Answers

Answer:

FTP

Explanation:

FTP (File Transfer Protocol) is a protocol that allows the transfer of files across different machines.

what type of waves are used on a tv remote control?

Answers

Answer:

(IR) Light

Explanation:

The signal of the remote control, control the pules of the infrared light. But human eye cant see, but can see through a digital camera.

I REALLY Need help on this.

Answers

Make a deposit talk to A representative transfer money and Check account balance

I need an open response pleaseeeeeee

The format is "Describe‌ ‌the‌ ‌smart‌ ‌home‌ ‌devices‌ ‌impact‌ ‌of‌ ‌technology‌ ‌on education"

Answers

Answer:

Explanation:

Smart Home devices have had a large impact on education. It has allowed students of all ages to better understand the concept of interconnected devices and artificial intelligence. This alone has also opened up a new door of information by allowing for instant answers to question through such smart home devices as Alexa or Home. Which are artificial intelligence virtual assistants.

Which of the following computer components typically has the FASTEST performance?

RAM
NIC
Firmware/BIOS
CPU

Answers

Answer:

CPU

Explanation:

The CPU is typically the fastest component in a computer and processes a large number of commands in a short amount of time. The CPU controls the other parts of the computer by getting information from them, then telling them what to do.

A line graph titled Unemployment Percentages and Levels of Education where the x-axis shows dates from November 2007 to November 2010 and the y-axis shows the percentage unemployed. No High School diploma starts at 7.5 percent in November 2007, rises steadily to 15 percent in November 2009, and stays at 15 percent to November 2010. High School diploma starts at 4.8 percent, rises steadily to 10.5 percent in November 2009, and falls to 9.5 percent in November 2010. Some college starts at 4 percent in November 2007, rises to 9 percent in November 2009, and falls to 8 percent in November 2010. Bachelor's degree or higher starts at 2 percent, rises to 5 percent in November 2009, and slowly falls to 4.9 percent in November 2010.

Based on the above graph, what was the percentage of difference between someone without a high school diploma and someone who has completed some college in November 2009?

A.

4%

B.

5%

C.

7%

D.

10%

can yall please answer my question pls

Answers

Answer:

D

Explanation:

the answer is D because

Answer:

It's B

Explanation:

IM SORRY IF ITS WRONG

Which statement best describes what a project manager controls

Answers

Project controls are processes for gathering and analyzing project data to keep costs and schedules on track. The functions of project controls include initiating, planning, monitoring and controlling, communicating, and closing out project costs and schedule.

The delegation of responsibilities in a project is a project manager controls. Hence, option D is correct.

What is delegation of responsibilities?

Transferring accountability for particular tasks from one person to another is referred to as delegation. From a managerial standpoint, delegation happens when a manager gives their staff members particular tasks to do.

The manager can distribute authority, but responsibility and accountability cannot, according to the idea of absolute responsibility. Both the tasks that the manager has delegated to his subordinates and the actions of his subordinates fall under his purview of accountability to his own superior.

Effective delegation helps you and your team become better leaders and professionals, frees up time, gets you ready to manage bigger teams, and motivates team members to work harder. A crucial managerial skill to develop throughout your career is delegation.

Thus, option D is correct.

For more information about delegation of responsibilities, click here:

https://brainly.com/question/14875204

#SPJ5

The options were missing-

the overall choice of which work becomes a project

the overall deadline when a project is due

the overall resources allocated for a project

the delegation of responsibilities in a project

A ________ network has no central computer.

Answers

Answer:

Ring Networks

Explanation:

They do not have a central computer system controlling the operation of the entire network. Instead, the various computers in the network are arranged around a ring, and each computer may communicate with any other computer in the ring.

They lack a centralized computer system in charge of managing the entire network. Instead, the network's many computers are placed in a ring, and any one of them is free to speak with any other computer in the ring.

What role of ring network in central computer?

When a straightforward network is required, ring network topologies are used. They are appropriate for places that do not require particularly fast data transmission rates and where it is unlikely that the network's size or structure will change.

The data move in the shape of a ring from one node to the next. If computer A wants to transfer information to computer D, the information is first put in the packet.

Therefore, A tiny office with only a few nodes, for instance, might employ a ring network design.

Learn more about ring network here:

https://brainly.com/question/15837844

#SPJ2

A career in culinary arts can best be described as working in the __________ industry.
A.
food
B.
clothing
C.
computer
D.
entertainment

Answers

Answer:

A-Food

Explanation:

The answer would be A:Food

which of the following statements most accurately describes the difference between aptitudes and skills​

Answers

Explanation

Aptitudes are ability, and skills are the potential. Aptitudes can be learned or trained, unlike skills. Aptitude is the level of skill that a person has gained.

Answer:

D

Explanation:

var words = ["apple", "bug","car", "dream", "ear", "food"]
var filteredWords = [];
for(var i = 0; i < words.length; i++){
var word = words[i];
if (word. Length < 4){
appendItem(filteredWords, word)
}
}
console.log(filteredWords);
If the program above is run, what will be displayed in the console?
O A. [apple, dream]
B. [bug, car, ear]
O C. [bug, car, ear, food]
O D. [apple, dream, food]

Answers

Answer:

B

Explanation:

I haven't taken cs principles, but i have taken cs a

is that python?

bug, car, ear are the only words less than 4 characters in legnth

If the program above is run, [bug, car, ear] will display in the console. The correct option is B.

What is a program?

A computer program is a set of instructions written in a programming language that a computer can execute. The software contains computer programs as well as documentation and other intangible components.

When you use a computer program, you are utilizing a program. When you program a computer, you are instructing it to perform a specific task.

To run a program, and to see if a program is running, you may open the Task Manager by pressing the Ctrl + Alt + Del keyboard shortcut keys, then selecting Task Manager. You may also pick Task Manager by right-clicking on the Windows Taskbar.

Therefore, the correct option is B. [bug, car, ear].

To learn more about the program, refer to the link:

https://brainly.com/question/3397678

#SPJ5


Binary digits can represent the state of an electrical charge. How
many different states of an electrical charge can binary digits
represent?

Answers

On and off can be represented.

The success criteria are used to judge whether a project is successful. False True
need it now

Answers

Answer:

True True True True

Answer:

true

Explanation:

whats ur favorite video game​

Answers

Answer:

Minecraft has always been my favorite

Answer:

Far Cry 5. It has a great story line and it's lots of fun

Explanation:

Other Questions
Plz help for brainliest Which of the following is not true about Operation X-Ray? how did the republicans change the role of the government A $1,500 savings bond earns simple interest at the rate of 5% each year. The interest is paid at the end of every month. How much interest will the bond have earned after 4 months?For Math test due in 14 minutes!! pic is below pls help Find the value of x that makes m|| n. Help me hurry please Giving points How much is a medium pizza and garlic bread? 11Select all the correct answers.We know that the Nile River was extremely important to the ancient Egyptian civilization. Which two findings would best strengthen this claim?older paintings showing use of the Nile River for domestic needsancient maps showing various ports on the Nile Riverthe depiction of the Nile River as a goddess in older carvingsrecords of the Nile River in the texts of other civilizationsthe mention of the Nile River in various religious rituals Who is affected by our government's fiscal policies?O A. only individualsOB.only individuals and industriesOC.the entire economyOD. only businessesO E.industries and businesses Mli-mlo Unscramble each of these sentences. 1. tlphones / ne / souvent / pas / tu / trs / me 2. va / expliquer / il / le / nous / problme 3. tu / parles / lui/ne / pourquoi / pas 4. Rodrigue/ n'/ prter / de / aime / l'/ pas / argent / leur 5. ne / laiss / pourboire / Mireille / a / pas /de / lui 6. quelque chose / je / montrer / te / vais Gina has 473 pieces of Legos. She wants to divide the legos into 6 groups and then give the leftover pieces to her friend. How many pieces of legos will Gina's friend get? (Do it in Long division pls) combine these like terms 4 girls + 2 girls - 3 boys Andy has three planks of wood. Two planks are each 1.5 m long. One plank is 2.5m long. What is the total length of all the three planks? How does tobacco affect the body?increases the flavor of foodincreases breathing abilityweakens the immune systemkeeps skin youthful longer can sme one help me please Which of the following equations do not represent a proportional relationship?Group of answer choicesy = 4/3xy = 2x - 1y = xy = 1.4x please help ill give brainliest There is a park near my house with a brand-new baseball field.What is the function of the word near in the sentence?prepositionconjunctionadverbinterjection A curtain company has 1,787 yards of fabric to make identical curtains. If each curtain requires 6.5 yards of fabric, how many curtains can be made? a. 273 b. 274 c. 275 d. 276