3.2 Code Practice: Question 1 from edhesive ( answer in python pls)

Answers

Answer 1

Answer:

value = float(input("Enter a number: "))

if value > 45.6:

  print("Greater than 45.6")


Related Questions

Is this statement true or false?



A presentation is always in front of a group of people.


true

false

Answers

Answer:

NOPE

Explanation:

sometimes presentations can be for one person only. For instance if you work in a company sometimes you present for your boss only etc.

Hope this helped :)

Answer:

im sure this is false!

Explanation:

Take two String inputs of the same length and merge these by taking one character from each String (starting with the first entered) and alternating. If the Strings are not the same length, the program should print "error".

Sample Run 1:

Enter Strings:
balloon
atrophy
baatlrloopohny
Sample Run 2:

Enter Strings:
terrible
mistake
error

Answers

Answer:

Written in Python

print("Enter strings: ")

str1 = input()

str2 = input()

if len(str1) == len(str2):

     for i in range(0,len(str1)):

           print(str1[i]+str2[i], end='')

else:

     print("Error")

Explanation:

Prompts user for two strings

print("Enter strings: ")

The next two lines get the input strings

str1 = input()

str2 = input()

The following if condition checks if length of both strings are the same

if len(str1) == len(str2):

If yes, this iterates through both strings

     for i in range(0,len(str1)):

This prints the the characters of both strings, one character at a time

           print(str1[i]+str2[i], end='')

If their lengths are not equal, the else condition is executed

else:

     print("Error")

import java.util.Scanner;

public class JavaApplication89 {

   

   public static void main(String[] args) {

       Scanner scan = new Scanner(System.in);

       System.out.println("Enter Strings:");

       String word1 = scan.nextLine();

       String word2 = scan.nextLine();

       String newWord = "";

       if (word1.length() != word2.length()){

           newWord = "error";

       }

       else{

           for(int i = 0; i < word1.length(); i++){

               newWord += word1.charAt(i)+""+word2.charAt(i);

           }

       }

       System.out.println(newWord);

   }

   

}

This is the java solution. I hope this helps!

Two girls were born to the same mother, on the same day, at the same time, in the same month and the same year and yet they're not twins. How is that possible?

Answers

Answer:

They are not twins but triplets or quadruplets.  

Explanation:

what is an hard ware ? ​

Answers

Explanation:

tools, machinery, and other durable equipment.

YOOO CAN ANYONE SOLVE THIS IN JAVA??

Answers

public class JavaApplication80 {

   public static String swapLetters(String word){

       char prevC = '_';

       String newWord = "";

       int count = 0;

       if (word.length() % 2 == 1 || word.isBlank()){

           return word;

       }

       else{

           for (int i = 0; i<word.length(); i++){

               char c = word.charAt(i);

               if(count % 2 == 1){

                   newWord  += (c +""+ prevC);

               }

               prevC = c;

               count+=1;

               

           }

       }

       return newWord;

   }

   public static void main(String[] args) {

       System.out.println(swapLetters("peanut"));

   }

   

}

This works for me. Best of luck.

Answer:

I do not know

Explanation:

untern
1.
What is interne
2.
3.
What is URL? Explain the component of URL.

Answers

Answer:

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

Explanation:

The questions are what is the internet and what is URL? and explain the component of the URL.

Internet:

Internet is a network of computers to send data and communicate with each other, such as an example of the post office, that sends letters from one place to others places. Such as, the internet is the network of computers that communicate with each other while sending digital data in small packets.

URL:

URL is a uniform resource locator that locates an existing resource over the internet. For example, when you want to search for something over the internet, you will put the address of that resource in your browser address bar. Or when you directly search using a search engine, the search engine provides you in return to your quarry a list of search-related links. When you click the link and link open in your browser address bar. That link is a URL.

A URL normally has three or four components such as Scheme, Host, Path, and, a Query String.

Scheme: The scheme identifies the protocol to access the resource over the internet such as HTTPS (with SSL) and HTTP (without SSL).

Host: A host identifies the host-name that holds the resource, for example, www. abc.com, in it abc is a host.

Path: It identifies the specific resource in the host that the web client or browser wants to access. For example, /course/topics/first-topic/index.html.

Query string: A query string is a string that is appended in the URL that stores the information about the resource hold.

Write the code in python to input a number and print the square root. Use the absolute value function to make sure that if the user enters a negative number, the program does not crash.

Answers

Answer:

Code in Python :-

num = float(input("Enter any number : "))

ab = abs(num)

sqrt = float(ab ** 0.5)

print(sqrt)

In python:

print(abs(float(input("Enter a number: ")))**0.5)

How can you find the square root of 8 using the pow() function

Answers

import math

print(math.pow(8, 0.5))

You can find the square root of any number by squaring it by 0.5

Do all careers or professions need computer science? Why or why not?

Answers

Answer:

Most careers or professions need computer science

Explanation:

As humanity is improving technological wise most jobs will be replaced and other jobs would come into play and in order for individuals to become employed in jobs that will be available in the future to come they will have to have a degree in computer science or know how to operate computers.

Answer:

No not all careers and professions require computer science

Explanation:

There are so many careers, many in which you may not sit in front of a computer. If you become a farmer, janitor, teacher or more you may not need computer science skills.

A Von Neumann model for a computer system has a central processing unit (CPU) that makes
use of registers.Identify three registers that may be used​

Answers

Answer:

1. Calculation unit

2. control unit

3. storage

Explanation:

4. What is an example of a Trans receiver? *
A. Pager
B. Wi-Fi
C. Telephone

Answers

I really think it A : pager
I hope this helps !!

HTTP is made to facilitate which kind of communication?

computer to computer
IT Support to User
computer to user
user to computer

Answers

Answer:

Computer to computer.

Explanation:

HTTP facilitates the connection between websites, so the answer is computer to computer.

tractor in reverse brainliest answer

Answers

Answer:

Valtra

Explanation:

It is the only tractor that goes in reverse.

Thank you so much!

Have a good day

Hope this helped,

Kavitha Banarjee

I'm not sure how to do these. By the way, it has to be python.

Answers

Task 1:

float75 = float(75)

string75 = "75"

# you cannot add together a number and a string because a string has no inherent numerical value like a number does.

Task 2:

num = float(input("Enter a number"))

print(num**2)

Task 3:

num = int(input("Enter an integer: "))

print("When you divide "+str(num)+" by 7, the quotient is "+str(num//7)+" and the remainder is "+str(num%7)+".")

Task 4:

gigs = int(input("How many gigabytes does your flashdrive hold? "))

print("A flashdrive with "+str(gigs)+ " gigabyte(s) holds "+str(gigs*8589934592)+" bit(s).")

For task 4, you might have to change the number 8589934592 to something else. I'm not entirely sure how many bits are in a gigabyte. I hope this helps though.

What is the output of the following program?

numA = 1
for count in range(3,5):
numA = numA * count
print(numA)
Output: ____

Answers

I don't know if the print statement is indented into the for loop.

If the print statement is indented like this:

numA = 1

for count in range(3,5):

   numA = numA * count

   print(numA)

The output will be:

3

12

if the print statement is indented like this:

numA = 1

for count in range(3,5):

   numA = numA * count

print(numA)

The output will be:

12

I hope this helps!

Based on the scenario above , the  output of the following program written is 12.

What is computer output?

An output is known to be a kind of data that a computer often brings out.

The loop goes from 3 to 5. therefore, Based on the scenario above , the  output of the following program written is 12.

Learn more about output from

https://brainly.com/question/11451813

#SPJ2

if you could repeat the lab and make it better, what would you do differently and why? lab report:heredity and punnet square

Answers

Answer: Mendel's studies constitute an outstanding example of good scientific technique. ... The gardener or experimenter can cross (cross-pollinate) any two pea plants at will. The anthers from one plant are removed before they have opened to shed ... (or individuals) represent different forms that the character

In which era was theater the most popular performing art in Europe?

18th century
Renaissance
early 20th century
19th century

Answers

Renaissance era, it was mid 1500s to 1600s.

select the correct text in the passage. Which statements indicate inductive reasoning?

1. Tanya is an engineer.

2. She lives with her grandma.

3. All engineers work in the computer application field.

4. So, Tanya also works in a software company.

5. In the evening, she listens to music to relax.

Answers

Answer:

i think 4.so tanya also works in a software company.

Your answer is option number 3

you are splitting up all your apples equally between 3 people. which statement below will calculate how many apples will be left over ?

a. var leftOver = numApples / 3;


b. var leftOver = 3/ numApples;


c. var leftOver = numApples % 3



d. var leftOver = 3% numApples


Answers

Answer:

The correct answer is:

c. var leftOver = numApples % 3

Explanation:

JavaScript uses different operators to perform various mathematical functions. In mathematics, when a number is not completely divisible by other the answer contains the remainder and quotient.

Modulus operator is used in JavaScript to find the remainder.

For example,

20/3 will return the quotient which is 6 while

20%3 will return the remainder which is 2

In the given statement, we have to find the number of remaining apples after being divided into three people

So,

Number of apples mod 3 will give us the number of remaining apples.

Hence,

The correct answer is:

c. var leftOver = numApples % 3


Which of the following variables are valid? Give reasons for those which
are invalid ​

Answers

Answer:

hope am right...

Explanation:

variables must not not contain any special characters i.e N%

Variables should only begin with a letter of the alphabet or a $ sign

Which sign or symbol will you use to lock cells for absolute cell reference?
A.
ampersand
B.
asterisk
C.
dollar sign
D.
exclamation mark

Answers

Answer:

Option C. dollar sign is the correct answer

Explanation:

There are two types of referencing styles used in MS excel.

Relative and absolute.

Out of these two, absolute referencing is used where we don't want the cell addresses to change when the formula with cell reference is copied. Dollar sign is with the row and column number to write an absolute cell reference.

An absolute cell reference for cell C5 is written as:

$C$5

Hence,

Option C. dollar sign is the correct answer

Answer:

C. dollar sign

Explanation:

Drag each label to the correct location on the image.
Match the different types of mounting techniques with their definitions.
uses triangular pockets
to hold the corners of a
photograph to the mount
board
uses wet glue to stick
the print to a mount
board
uses a heat-activated
adhesive to permanently
stick the photograph to
a rigid backing board
uses different patterns
of tape to create hinges,
which attach the print to
a mount board
dry mount
photo corners

Answers

Answer: uses a heat activated.... the answer is dry mount

Use triangular pockets to hold the corners....the answer is photo corners

Use different patterns of tape.....hinge mount

Uses wet glue to stick the print....wet mount

Explanation: I got this right on a post test

The matchup of the mounting techniques are:

uses a heat activated-  dry mountUse triangular pockets to hold the corners-  photo corners Use different patterns of tape-h/in/ge mountUses wet glue to stick the print- wet mount

What is the mounting techniques

Mounting could be a handle by which a computer's working framework makes records and registries on a capacity gadget (such as difficult drive, CD-ROM, or organize share) accessible for clients to get to through the computer's record system.

There are diverse sorts of strategies in mounting craftsmanship work, exhibition hall mounting and dry mounting. Gallery mounting is authentic and reversible and dry mounting is authentic (in most cases) and non-reversible.

Read more about mounting techniques here:

https://brainly.com/question/20258766

Which of the following is true of functions?

A: Replacing repeated code with a function will reduce the number of commands the computer needs to run
B: Functions are called once but can be declared many times

C: Programs written with functions run more quickly

D: Functions can help remove repeated code from a program

Answers

Answer:

the answer is D

Explanation:

* 9) Which is a function of an operating system?
Provide user interface
Protect against malware
Edit images
Browse the internet

Answers

Answer:

Provide user interface

Explanation:

There are many reasons to convert to the decimal numbering system. Select the best answer. When checking numeric values in computer memory, decimal makes sense because you use decimal numbering every day. When checking words in computer memory, decimal makes sense because you use decimal numbering every day. When comparing values in a computer program, decimal numbering makes sense because it is always shorter than hexadecimal. When checking words in computer memory, decimal numbering makes sense because it is easier than hexadecimal.

Answers

Answer:

first statement makes most sense.

Explanation:

When checking numeric values in computer memory, decimal makes sense because you use decimal numbering every day. --> sounds OK.

When checking words in computer memory, decimal makes sense because you use decimal numbering every day.  --> doesn't make sense

When comparing values in a computer program, decimal numbering makes sense because it is always shorter than hexadecimal. --> Not true

When checking words in computer memory, decimal numbering makes sense because it is easier than hexadecimal. --> Hexadecimal would be easier when inspecting computer words, because you can easily see the byte alignment of the values.

Answer:

the first statement

Explanation:

got it right on edge

What is the main difference between a fileserver and network attached storage (NAS)?

Group of answer choices


NAS provides more services.


A fileserver is more customizable.


A fileserver is less customizable.


A fileserver is better for smaller companies.

Answers

Answer:a filserver is better for smaller companies

Explanation:

Hope this helps :)

Answer:

A fileserver is more customizable

Explanation:

Free 35 points!!!

I'm attempting to create a game on Khan Academy using the computer coding courses, but I can't find how to program a moving background or enemies, can someone please give me pointers/suggestions?

P.S. I'm trying to make a Galaga-like game (2-Dimensional) , and it has to be in JavaScript Processing code.

Answers

Answer:

free points?? why does it have question then

Explanation:

Answer:

Well I dont use Khan Academy sorry

Explanation:

What game is this?????????????????????

Answers

Sonic the hedgehog

Hope this helps you broski

Select the correct answer. Which application is a digital version of a manual typewriter? A. database B. presentation C. spreadsheet D. word processor

Answers

Answer:

Word Processor

hope i helped :D

Answer:

(D)- word processor

Explanation:

got it right

define application software​

Answers

Answer: An application software is a type of software that the user interacts with, while a system software is a type of software that the system interacts with.

Hope this helped you :)

Other Questions
A Jar contains 2 red marbles,3 blue marbles,and 1 green marble. What is the probability of slecting a red marble? what would the slope intercept equation of the line shown below What does the word element mean in the sentence: Iron is an important element. It is found in the food we eat, and it is used to make many things, like buildings and bridges Phoebe was seling orchestra and balcony tickets forher play. The graph below shows the Inear relationship betweenthe number of tickets she has left to sell?A .Day 12B.Day 10C.Day 15D.Day 20 Maggie missed 8 out of her last 20 free throws. What is the experimental probability that Maggie will miss her next free-throw attempt? I DONT KNOW! Please help to save my brain someone please help me out explain what two-dimensional (2-D) and three-dimensional (3-D) modelsare. Give an example of one you've seen recently. PLEASE ANSWER BOTH QUESTIONS AND I WILL CLICK THE CROWN !!!LOOK AT THE SCREENSHOT Pap mientras mam lea el mapa. (conducir) Which of the following technologies can work with another portable device to monitor your THRZ? Because they are nearer to people and property, surface waves do more damage than body waves. O True False In this figure, m FGH=128. What are the measures of FGI and IGH Part A If you want the story ill comment it.What is the author's viewpoint in "Are Dogs Dumb?"A: Animal intelligence tests should be designed based on each animal's unique abilities and needs.B: The more similar an animal is to humans, the smarter that animal is.C: The more rewards an animal receives during an intelligence test, the better it will perform.D: Intelligence tests explain why dogs are not as smart as other species of animals.Question 2Part BHow is the viewpoint in Part A conveyed in the text?A: by comparing the tasks that chimpanzees can accomplish compared to a dog or a chickenB: by explaining that animals must be naturally curious and unafraid to try new things in order to pass intelligence testsC: by showing that intelligence tests have different outcomes depending on how well the design fits the animal being testedD: by describing how dogs are motivated to learn new things when they receive treats for positive behaviors Which are functions of the stomata in the leaves of seed plants? Check all that apply.-reduce water loss-make glucose-absorb sunlight-take in carbon dioxide-produce oxygenNEED CORRECT ANSWER ASAP BEING TIMED 5. Which is not an example of a not-for-profit organization?A. United WayB. American Cancer SocietyC. MicrosoftD. American Red Cross What countries can a 650 GW power capacity sustain? A laptop has a listed price of $899.95 before tax. If the sales tax rate is 6.5%, find the total cost of the laptop with sales tax included.Round your answer to the nearest cent, as necessary. I need help pls Im rly struggling! The Diaspora was a time of great awakening within Christanity. True or False?