Answer:
B
Explanation:
The correct answer is B because you have to add 790 and 80 together. This gets you 870. Your answer is positive because it's above sea level. Anything above sea level will be positive and anything below sea level is negative.
zybooks cis 110 challenge activity 9.8.1 Write a program that takes in a positive integer as input, and outputs a string of 1's and 0's representing the integer in binary. For an integer x, the algorithm is: As long as x is greater than 0 Output x % 2 (remainder is either 0 or 1) x = x / 2 Note: The above algorithm outputs the 0's and 1's in reverse order. Ex: If the input is 6, the output is 011. Your program should define and call a function: Function Integer To Binary(integer num) returns nothing The function should output 1's and 0's representing the integer in binary (in reverse).
Answer:
public class IntegerToBinary
{
public static void main(String[] args) {
integerToBinary(6);
}
public static void integerToBinary(int num){
while(num > 0){
System.out.print(num%2);
num = Math.floorDiv(num, 2);
}
}
}
Explanation:
*The code is in Java.
Create a function called integerToBinary that takes one parameter, num
Inside the function, create a while loop that iterates while the num is greater than 0. Inside the loop, print the num%2. Then, get the floor division of the num by to and assign it to the num.
Inside the main, call the function with parameter 6.
Does anyone know how to fix this? Everytime i make a new page it only types in the middle of the page. I want to type at the top
Answer:maybe start a new page or try hitting delete
Explanation:
What is the output? answer = "Hi mom print(answer.lower()) I
Answer: hi mom
Explanation: got it right on edgen
What output will this code produce?def whichlist():
11=[3,2,1,0]
12=11
11[0]=42
return 12
print(whichlist())
Answer: are you using chIDE
Explanation: yui
When should students practice netiquette in an online course? Check all that apply.
- when sending texts to friends
- when sending emails to classmates
- when collaborating in library study groups
- when participating in online discussion boards
- when collaborating as part of a digital team
Answer:
The answer to this question is given below in the explanation section. However, the correct answer is: student should practice netiquette in an online course when they are participating in online discussion board.
Explanation:
It is important for you as a student to recognize that the online classroom is in fact a classroom, and certain behaviors are expected when you communicate with both your peers and your instructors. These guidelines for online behavior and interaction are known as “netiquette”.
So, the correct option of this question is: students should practice netiquette in an online course when they are participating in an online discussion board. Because the discussion board is opened by the instructor/tutor, he constantly looking for student behavior throughout the discussion. so, students should use netiquette practice during the discussion in the online class.
However, other options are not correct because, in these options, there is not the presence of teacher/instructor. And, also noted that netiquette is practiced in online class by the student.
Answer:
B, D, E
Explanation:
ed2020
Technician A says that pinchweld clamps many be used to anchor a vehicle for straightening. Technician B says that a fixture system may be used to anchor a vehicle for straightening.
Who is right?
Answer: both
Explanation:
both of them are right
irving is running cable underground beside his driveway to power a light at his entrance .what type of cable is he most likely using?
A.MC
B.NNC
C.UFD
D.UF
Based on the given information, Irving is running cable underground beside his driveway to power a light at his entrance. The most likely type of cable he would use in this scenario is "D. UF" cable.
Why is the cable Irving is using a UF cable and its importanceUF stands for "Underground Feeder" cable, which is specifically designed for underground installations.
It is commonly used for outdoor applications, such as running power to lights, pumps, or other outdoor fixtures. UF cable is moisture-resistant and has insulation suitable for direct burial without the need for additional conduit or piping.
Read more about cables here:
https://brainly.com/question/13151594
#SPJ1
QUESTION 10
If there is an Apple logo somewhere on your computer, more than likely your computer runs what type of operating system?
O Linux
Windows
macos
Unix
What is the purpose of a host operating system?
It allows one guest to access software at a time.
It controls who can access software.
It stands between the guest OS and the hardware.
It is used to monitor network traffic.
Answer:
It controls who can access software.
Explanation:
compare and contrast the various write strategy used in cache technologies
Answer:
The abiotic factors are non-living factors in an ecosystem that affect the organisms and their lifestyle. In this case, low temperature and low humidity lead to the conditions that are unfavorable for birds. So, the birds must adapt to these factors by hiding the food in the caches.
Explanation:
When comparing Waterfall methodology to the Scrum framework, how is the overall Scrum process often described?
In the overall scrum process, when comparing to the waterfall methodology, it is often described as option c: as a series of sprints.
How do Scrum and the waterfall model compare?The primary distinction between Scrum and that of Waterfall as software development approaches is that Scrum is value-based and uses shorter iterations, whereas Waterfall is schedule-based and uses a plan and costs that are clearly estimated.
Note that the scrum method is sometimes described as a rinse and repeat method and as such, one can be able to say that In the total scrum process, when comparing to the waterfall methodology, it is often described as option c: as a series of sprints.
Learn more about scrum process from
https://brainly.com/question/4763588
#SPJ1
See full question below
How is the overall scrum process, when comparing to the waterfall methodology often described?
a, as a relay race
b, as a marathone race
c, as a series of sprints
d, as a cross country race
which key used to run the presentation ?
who will give first ans i will shout out him/her
Answer:
shift + F5 or the up and down keys
what is the purpose of primary manufacturing processes?
Answer:
Primary manufacturing processes are used to turn a raw material into an industrial material. Here's one type of primary manufacturing process 1)Chemical processes- using chemicals to change a raw material into an industrial material.
Answer:
used to turn a raw material into an industrial material.
Explanation:
Let's play Silly Sentences!
Enter a name: Grace
Enter an adjective: stinky
Enter an adjective: blue
Enter an adverb: quietly
Enter a food: soup
Enter another food: bananas
Enter a noun: button
Enter a place: Paris
Enter a verb: jump
Grace was planning a dream vacation to Paris.
Grace was especially looking forward to trying the local
cuisine, including stinky soup and bananas.
Grace will have to practice the language quietly to
make it easier to jump with people.
Grace has a long list of sights to see, including the
button museum and the blue park.
Answer:
Grace sat quietly in a stinky stadium with her blue jacket
Grace jumped on a plane to Paris.
Grace ate bananas, apples, and guavas quietly while she listened to the news.
Grace is the name of a major character in my favorite novel
Grace was looking so beautiful as she walked to the podium majestically.
Grace looked on angrily at the blue-faced policeman who blocked her way.
Which type of photographer documents plants and weather in their natural habitat?
a
Portrait
b
Nature
c
Product
d
Scientific
Solve recurrence relation x (n) = x(n/3) +1 for n >1,x(1) =1. (Solve for n = 3k)
To solve this recurrence relation, we can use the iterative method known as substitution method. First, we make a guess for the solution and then prove it by mathematical induction.
Let's guess that x(n) = log base 3 of n. We can verify this guess by induction:
Base Case: x(1) = log base 3 of 1 = 0 + 1 = 1. So, the guess holds for n = 1.
Induction Hypothesis: Assume that x(k) = log base 3 of k holds for all k < n.
Induction Step: We need to show that x(n) = log base 3 of n holds as well. We have:
x(n) = x(n/3) + 1
= log base 3 of (n/3) + 1 (by induction hypothesis)
= log base 3 of n - log base 3 of 3 + 1
= log base 3 of n
So, x(n) = log base 3 of n holds for all n that are powers of 3.
Therefore, the solution to the recurrence relation x(n) = x(n/3) + 1 for n > 1, x(1) = 1, is x(n) = log base 3 of n for n = 3^k.
What kind of image does this photograph represent?
A.
group portrait photograph
B.
architecture photograph
C.
portrait photograph
D.
still-life photograph
E.
action photograph
Answer:
D
Explanation:
Use a method from the JOptionPane class to request values from the user to initialize the instance variables of Election objects and assign these objects to the array. The array must be filled.
To use the JOptionPane class in Java to request values from the user and initialize instance variables of Election objects and assign them to an array, you can follow the steps given in the image:
What is the JOptionPane class
The code uses JOptionPane. showInputDialog to show a message box and get information from the user. IntegerparseInt changes text into a number.
After completing a process, the elections list will have Election items, and each item will have the information given by the user.
Learn more about JOptionPane class from
brainly.com/question/30974617
#SPJ1
i want code to put in code vision avr for conurrent controling LED lamp and cath-7 segment(without button)
the simulation in proteus should be like that we have one atmega and a led and 7 seg ground and res with one port of 7 seg in connected to micro and one port of led should be connect to micro.
-------------------------------------------------------------------------------------------------------------
To control a LED lamp and Cath-7 segment concurrently without using any button, we can use Code Vision AVR software. Here is the code for the same:
```
#include <mega16.h>
#include <delay.h>
void main()
{
DDRB = 0xFF; // Set all pins of PORTB as output
DDRC = 0xFF; // Set all pins of PORTC as output
while(1)
{
// Turn on LED lamp
PORTB.0 = 1;
delay_ms(500);
PORTB.0 = 0;
delay_ms(500);
// Display digits on Cath-7 segment
PORTC = 0x3F; // Display 0
delay_ms(1000);
PORTC = 0x06; // Display 1
delay_ms(1000);
PORTC = 0x5B; // Display 2
delay_ms(1000);
PORTC = 0x4F; // Display 3
delay_ms(1000);
PORTC = 0x66; // Display 4
delay_ms(1000);
PORTC = 0x6D; // Display 5
delay_ms(1000);
PORTC = 0x7D; // Display 6
delay_ms(1000);
PORTC = 0x07; // Display 7
delay_ms(1000);
PORTC = 0x7F; // Display 8
delay_ms(1000);
PORTC = 0x6F; // Display 9
delay_ms(1000);
}
}
```
Once you have written the code, you can simulate it in Proteus. Here are the steps to simulate the circuit:
1. Open Proteus and create a new project.
2. Search for "ATmega16" in the components library and add it to the project.
3. Add a LED and Cath-7 segment to the project by searching for them in the components library.
4. Connect the LED to any PIN of PORTB and Cath-7 segment to any PIN of PORTC.
5. Now, double-click on the ATmega16 chip and upload the code to it.
6. Finally, run the simulation and you should see the LED lamp and Cath-7 segment displaying digits concurrently.
Hope this helps!
How have advancements in technology and social media impacted communication and relationships in our society?
Answer:The advancement of technology has changed how people communicate, giving us brand-new options such as text messaging, email, and chat rooms,
Explanation:
Answer: the answer will be they allow faster and more efficient communication and can help build relationships.
Explanation:
Which example best demonstrates an impact computing has had on the arts?
OA. A student bullies another student on social media by posting
embarrassing pictures.
OB. A group of friends who have never met each other in person play
an online game together.
OC. A music producer searches for samples of Caribbean percussion
instruments to add to a song.
OD. A teacher uses a computer-scored test to grade assignments
more quickly.
Answer:
the answer is C because music is art
What is the output?
class car:
model = "
age = 20
myCar = car()
myCar.age= myCar.age + 10
print(myCar.age)
Output:
Answer:
The answer to this question is 30
The explanation is given below
You can also see the attachment section to see the image of result
Explanation:
This question want use to print the value of myCar.age
print(myCar.age)
If we look at line 3, age=20
So the previous value is 20 and we have to add 10 to add as shown
myCar.age= myCar.age + 10
The value will become 30
Answer:
30
Explanation:
trust
write down the character of Morden computer
The characteristics of a modern computer are :
Speed Accuracy storage Automation Communication Versatility Memory ReliabilityLet T(n) denote the running time for the Sort-and-Count algorithm (below). Sort-and-Count(L) { if list L has one element return 0 and the list L Divide the list into two halves A and B (r1, A) = Sort-and-Count(A) (r2, B) = Sort-and-Count(B) (r3, L) = Merge-and-Count(A, B) r = r1+r2+r3 return r and the sorted list L } Assuming that Merge-And-Count(A,B) runs in time Al+IB| what is the recurrence for T(n)? T(n) = 2T(n/2)+1 T(n)=(n/2) + n T(n) = 2T(n-1) + 1 T(n) = Tỉn/2)+1 - T(n) = 2T(n/2) + n T(n) = 2T(n/2)+log n
Answer:
The answer is "\(\bold{T(n) = 2T(\frac{n}{2}) + n}\)"
Explanation:
Given:
The Merge-And-Count of (A,B) runs in time |Al+IB|
T(n) recurrence=?
Calculating the value of the recurrence:
\(\to T(n) = T(\frac{n}{2}) + T(\frac{n}{2}) + f(|A| + |B|)\\\\ \therefore f(|A| + |B|) = n\\\\ \to T(n) = 2T(\frac{n}{2}) + n\)
1. What is virtual memory?
The use of non-volatile storage, such as disk to store processes or data from physical memory
A part of physical memory that's used for virtualisation
Some part of physical memory that a process though it had been allocated in the past
O Future physical memory that a process could be allocated
Answer:
The use of non-volatile storage, such as disk to store processes or data from physical memory.
Explanation:
Virtual memory is used by operating systems in order to allow the execution of processes that are larger than the available physical memory by using disk space as an extension of the physical memory. Note that virtual memory is far slower than physical memory.
Scott is seeking a position in an Information Technology (IT) Department. During an interview, his prospective employer asks if he is familiar with programs the company could use, modify, and redistribute without restrictions. What types of programs is the interviewer referring to?A. freewareB. open sourceC. Software as a Service (SaaS)
Answer:
B. Open Source!!!!
Explanation:
Just took the test and this is the correct answer I promise!
The interviewer is referring to open-source programs.
The correct option is B.
Open-source software is a type of software that provides users with the freedom to use, modify, and distribute the program without restrictions. It typically includes the source code, allowing users to inspect, modify, and enhance the software according to their needs.
Open-source programs are developed collaboratively by a community of developers and are often available for free or at a lower cost compared to proprietary software. Users have the freedom to customize the software, fix bugs, add features, and distribute their modifications to others.
Freeware, on the other hand, refers to software that is available for free but does not necessarily provide the freedom to modify and distribute the program without restrictions. Freeware may have limitations on usage, redistribution, or access to the source code.
Software as a Service (SaaS) is a different concept where software applications are provided as a service over the internet, typically on a subscription basis. SaaS applications are not necessarily open source or freeware, as their distribution and usage terms vary depending on the specific service provider.
Learn more about Open source Program here:
https://brainly.com/question/14605142
#SPJ6
Write a program that allows two players to play the Tic-Tac-Toe game. One of the players can be the computer or human, the other must be human. Your program must contain the class ticTacToe to implement a ticTacToe object. Include a 3 by 3 two-dimensional array, as a private member variable, to create the board. If needed, include additional member variables
Answer:
Explanation:
The following is a tictactoe game written in Java with all the necessary variables and methods needed for the game to function correctly. The game plays against the computer which randomly chooses a position to play every round. Due to technical difficulties the code was added as a txt file below and the output was added as a picture.
Create a program that will calculate the sum of the numbers in a given range. The program will ask for 2 inputs. The first input will be the first number in a range. The second input will be the second number in a range. The program will then add all the numbers together and print the total. For example: Inputs: 4, 8 Output: 22 Another example: Inputs: 5, 10 Output: 35 Hint: remember that to print off all the numbers in a range, use for x in range(): print(x) A reminder that you can update the value of a variable. Don’t forget to indent the code inside the for loop! Do not use the sum function.
A program that will calculate the sum of the numbers in a given range are given below:
What is program?A program is a set of instructions for a computer to follow in order to perform a specific task. It is written in a programming language, which is a human-readable language, such as C++, Java, Python, and JavaScript. Programs can be used to create applications, games, and websites, as well as to control machines, robots, and other devices. Programs can also be used to perform calculations, analyze data, and automate processes. Programs are written by software developers, who design and write code to make programs work the way they are intended.
start = int(input("Please enter the first number in the range: "))
end = int(input("Please enter the second number in the range: "))
total = 0
for x in range(start, end + 1):
total += x
print("The total is:", total)
To learn more about program
https://brainly.com/question/30657432
#SPJ1
One note captures your ideas and schoolwork on any device so you can — and -
Which phrase in the job description indicates technical knowledge needed to be a web developer?
Web developers create and maintain websites for clients, as well as troubleshoot problems on the sites to fix them. They need to know basic programming and scripting languages to develop the websites. To create the sites, these professionals may use content creation and management tools. After creating the sites, developers test them before release and often afterword.
The phrase that indicates technical knowledge needed to be a web developer is "They need to know basic programming and scripting languages to develop the websites."
What does this suggest?This suggests that web developers should have a strong understanding of programming languages such as HTML, CSS, and JavaScript, which are essential to building websites.
The job description also mentions the use of content creation and management tools, indicating that familiarity with web development frameworks and software is also important for this role. Finally, the reference to testing and troubleshooting highlights the need for problem-solving skills and technical expertise in resolving issues that arise during the development process.
Read more about tech here:
https://brainly.com/question/7788080
#SPJ1