Answer:
What do I want to transmit?
Why am I going to present this topic?
What is my believe about this topic?
Who am i going to speak to?
What do I need to work on to convey successfully the topic?(structure, tools, abilities, visual tools)
Explanation:
These are the most important questions, first of all because you have to start with why you are doing the presentation, and what will you do to make the presentation part of your beliefs.
4.1 lesson practice
Write two statements that each use malloc to allocate an int location for each pointer. Sample output for given program:
Answer:
In the following code, you can see the usage of malloc.
#include <stdio.h>
#include <stdlib.h>
int main(void) {
int* numberPointer1 = NULL;
int* numberPointer2 = NULL;
numberPointer1 = (int *)malloc(sizeof(int *));
numberPointer2 = (int *)malloc(sizeof(int *));
*numberPointer1 = 44;
*numberPointer2 = 99;
printf("numberPointer1 = %d, numberPointer2 = %d\n", *numberPointer1, *numberPointer2);
free(numberPointer1);
free(numberPointer2);
return 0;
}
Explanation:
Malloc allocates memory in the heap according to the input size and returns a pointer to the location where it was allocated, with an extra, it clears all allocated space.
What is Interface in computers
Answer:
An interface could be the design of the homescreen or the way a shell of a computer is designed. I could be wrong tho......
Explanation:
In which of the following scenarios would it be best to use a for loop?
1. When you need to stop looping based on input from the user
2. When you need to check that a user's input is valid.
3. When you want to ask the user for 10 numbers
4. When you need to be able to use the block of code in many places in your program
Answer:
I would say 3 is the most likely answer ("When you want to ask the user for 10 numbers").
You use for loops to perform a task x times usually.
3.3 Code Practice: Question 1
Instructions
Test if a date is a payday based on the day of the month (15th or the 30th).
Sample Run
Enter today's day numerically: 17
Sorry, not a payday.
Enter today's day numerically: 30
It's payday!
please help in python!
Answer:
date = int(input("Enter today's day numerically: "))
if date == 15 :
print("It's payday!")
elif date == 30 :
print("It's payday!")
else:
print("Sorry, not a payday.");
Explanation:
The program illustrates the use of if-conditions
The program in Python where comments are used to explain each line is as follows:
#This gets integer input for day
day = int(input("Enter today's day numerically: "))
#This checks if day is 50 or 30
if day == 15 or day == 30:
#If yes, this prints payday
print("It's payday!")
#If otherwise
else:
#If otherwise, this prints not a payday
print("Sorry, not a payday.")
At the end of the program, the program outputs payday or not a payday; depending on the input from the user
See attachment for sample run
Read more about Python programs at:
https://brainly.com/question/22841107
WILL MARK QUICKEST CORRECT ANSWER AS BRAINLIEST 11 PTS
Gary says, “Ports are where data enter a network before it reaches a gateway. The data travel via transmission media.”
Explain why Gary is right or wrong.
A) Gary is wrong. Ports are where connectors attach to destinations, not where data enter the network.
B) Gary is wrong. Gateways block data, so data don’t enter through them.
C) Gary is right.
Answer: Gary is wrong. Data do not travel via transmission media.
Answer:
the answer is Gary is wrong. Ports are where connectors attach to destinations, not where data enter the network.
Explanation:
correct on ed
What is the name for the strip of frequently used icons on a computer? O App O Program O Toolbar O Utilities panel ILL MARK YOU BRAINEST
Answer: The name of the strip is the Toolbar.
Answer:
its quite obvious toolbar
Explanation:
What statement best describes percentage values in CSS?
A.It's the fraction of the value that came before it.
B.It's the smallest controllable element on the screen.
C.It's always the width of an indent.
D.It's a value that is relative to the width of its HTML element or to the page.
Answer:
Im sorry if its wrong but i believe its D.
Explanation:
D. It's a value that is relative to the width of its HTML element or to the page.
Answer:
The answer is
Explanation:
D. It's a value that is relative to the width of its HTML element or to the page.
What sequence is used to create a brochure document from a template?
Answer:
computer is used to create a voucher document
It is common practice not to store user’s password in clear text. However, if an attacker has seized control of the password database, he is likely already capable of modifying any user data on the site as an administrator. Why bother hashing the passwords then?
Answer:
To prevent leakage of user's passwords.
Explanation:
I don't really know the premise of your question, but I assume it is this. If the hacker has access to the user's data, they may have the email address. If they cannot crack the password hash, then they may not attempt to login to the user's accounts on other websites.
When viewing the Mail Merge Recipients dialog box, what kinds of actions can you perform? Check all that apply. find recipient filter recipients print recipients sort column headings select/deselect recipients
Answer:
a,b,d,e on edg 2020
Explanation:
Answer:
Everything is correct except option 3/letter C.
Explanation:
A, B, D, and E
What is the tag used for?
Answer:
The title tag is an HTML title element critical to both SEO and user experience that is used to briefly and accurately describes the topic and theme of an online document. The title tag is displayed in two key places: Internet Browser – Title Tags display in the top bar of internet browsers.
Instructions PhoneNumbersjava + 1 import java.util.*; 2 class PhoneNumbers 3 public static void main(String[] args) 4 //write code here A personal phone directory contains room for first names l and phone numbers for 30 people. Assign names and phone numbers for the first 10 people. Prompt the user for a name, and if the name is found in the list, display the corresponding phone number. If the name is not found in the list, prompt the user for a phone number, and add the new name and phone number to the list. Continue to prompt the user for names until the user enters quit. After the arrays are full (containing 30 names), do not allow the user to add new entries. Use the following names and phone numbers: Name Phone # Gina Marcia (847) 341-2392 Rita Jennifer (414) 234-0912 Fred Neil Judy (608) 435-0434 Arlene (608) 123-0312 LaWanda (920) 787-9813 Deepak (930) 412-0991 (847) 341-0912 (847) 354-0654 (414) 435-6567 (608) 123-0904
Answer:
What is the question?
In a user interface, a screen is best understood as
A.a console
b.a variable
c.an input
d. an element
Answer:
d. an element
Explanation:
User Interface design is simply the designs that are used to model a product like an application.
In a user interface, a screen is best understood as an element.
Part 1 Create a program that asks the user for a temperature in Fahrenheit, and then prints the temperature in Celsius. Search the Internet for the correct calculation. Look at Chapter 1 for the miles-per-gallon example to get an idea of what should be done.
Part 2 Create a new program that will ask the user for the information needed to find the area of a trapezoid, and then print the area.
Part 3 Create your own original problem and have the user plug in the variables.
IN PYTHON
Answer:
Written in Python
import math
#1. Temperature Conversion
degreeF = float(input("Degree Fahrenheit: "))
degreeC = (degreeF - 32) * 5/9
print("Degree Celsius: "+str(round(degreeC,2)))
#2. Area of Trapezoid
Base1 = float(input("Base 1: "))
Base2 = float(input("Base 2: "))
Height = float(input("Height: "))
Area = 0.5 * (Base1 + Base2) * Height
print("Area: "+str(round(Area,2)))
#3. Addition of Two Numbers
Num1 = float(input("Number 1: "))
Num2 = float(input("Number 2: "))
print("Result: "+str(Num1 + Num2))
Explanation:
This line imports the math library
import math
Program 1 starts here
#1. Temperature Conversion
This line prompts users for input in degree Fahrenheit
degreeF = float(input("Degree Fahrenheit: "))
This line converts to degrees Celsius
degreeC = (degreeF - 32) * 5/9
This line prints the converted degree
print("Degree Celsius: "+str(round(degreeC,2)))
Program 2 starts here
#2. Area of Trapezoid
The next three lines prompts user for necessary inputs
Base1 = float(input("Base 1: "))
Base2 = float(input("Base 2: "))
Height = float(input("Height: "))
This line calculates the area
Area = 0.5 * (Base1 + Base2) * Height
This line prints the area
print("Area: "+str(round(Area,2)))
The third program begins here. I've decided to write a program that sums two numbers
#3. Addition of Two Numbers
The next two lines prompt user for inputs
Num1 = float(input("Number 1: "))
Num2 = float(input("Number 2: "))
This line calculates and prints the sum
print("Result: "+str(Num1 + Num2))
There’s a scientific theory out there that says that our brain uses an algorithm to create our thoughts and it’s called the Theory of Connectivity. This theory suggests that information comes into our brains, is processed, stored, and then results in an output. Does this process sound familiar to you? In what ways do our bodies take in input and respond, sometimes without our control? Give two examples
Answer:
1. Yes, the process sounds familiar to me. It looks like the mechanism of operation of the computer.
2a. Through reflex actions, our bodies take in input and respond sometimes without our control.
b. Two examples are sneezing and the scratch reflex.
Explanation:
The principle of the theory of connectivity which involves the input, processing, storage, and output of results is similar to the workings of the human body which has to accept input from the external surroundings which it processes and provides an output for. Reflex actions are involuntary actions made in response to a stimulus. When the body receives the input, the response is made most times before we are aware of it.
Scratch reflex occurs when the sensory neurons located on the periphery of our skins are activated due to stimuli that could be in the form of touch, an insect bite, etc. Sneezing is another example of a reflex action.
Answer:
The process does sound familiar to me; it is like the mechanism of operation of the computer. Through reflex actions, our bodies take in input and respond sometimes without our control, such as shivering, blinking, and sneezing.
Explanation:
Write a program which has your own versions of the Python built-in functions min and max. In other words, write the functions called maximum(aList) and minimum(aList) that do the job of the built-in Python functions max(aList) and min(aList)respectively. They should take a list as an argument and return the minimum or maximum element . Test your functions with the list [7, 5, 2, 3, 1, 8, 9, 4]. Hint: Pick the first element as the minimum (maximum) and then loop through the elements to find a smaller (larger) element. Each time you find a smaller (larger) element, update your minimum (maximum).
Answer:
def maximum(aList):
highest = aList[0]
for number in aList:
if number > highest:
highest = number
return highest
def minimum(aList):
lowest = aList[0]
for number in aList:
if number < lowest:
lowest = number
return lowest
print(maximum([7, 5, 2, 3, 1, 8, 9, 4]))
print(minimum([7, 5, 2, 3, 1, 8, 9, 4]))
Explanation:
Create a function named maximum that takes one parameter, aList
Initialize the highest as the first number in aList
Create a for loop that iterates through the aList. Compare each number in aList with highest. If a number is greater than highest, set it as new highest.
When the loop is done, return the highest
Create another function named minimum that takes one parameter, aList
Initialize the lowest as the first number in aList
Create a for loop that iterates through the aList. Compare each number in aList with lowest. If a number is smaller than lowest, set it as new lowest.
When the loop is done, return the lowest
Call the functions with given list and print the results
which of the following best describes the relationship between oxygen and chlorine
Answer:
Oxygen - More size, Less covalent, Less electronegative. Chlorine - More size, Less covalent, Less electronegative.
These are the things they have in common.
Explain the five most important things that should be taken into consideration when designing a computer network.
Explanation:
Many computer experts (networkers) believe that you consider the following when designing a computer network:
Budget: By considering the amount available to be spent on setting up the computer network, it allows buying the best quality equipment considering the available funds.Type of network connectivity: This involves determining whether the network would only be a wireless connection or wired connection using cables, or involves both combinations.Type of security: This involves deciding the type of network security to be installed. Answering: Would it cloud systems be used? What type of firewall systems to use, etc?The type of hardware and software: This is very important in other to determine how optimal the network would be.Disaster recovery plan: For example, what type of back-up power would be required or affordable, solar power, or generator?What do you mean by this statement,
“Life is not a grand harmony, Conflict exist. We must learn how to live with it, use it constructive and minimize it’s destructive aspect”.
Answer with Explanation:
The statement above means that life is not always about happy moments; rather, it also includes unhappy times which teaches us many lessons. People should be aware of this, so that they'd also look at the good side of unhappy/sad moments in life. For example, when a beloved person dies, it is natural for one to cry. However, it is also important to stand up after that experience and become even stronger. This is a constructive way of moving on with life. A destructive aspect would be, not being able to move on and being stuck on one's death without thinking about the future anymore.
The best explanation of the given statement is:
If there is mutual understanding, then this would help in the conflict resolution to minimize the destructive impact.What is Mutual Understanding?This refers to the ability of a person or multiple persons to be able to have different points of view but also to understand that one view is NOT absolute.
With this in mind, we can note that because life is not a grand harmony, there will always be conflict, but if there is mutual understanding, then this would help in the conflict resolution to minimize the destructive impact.
Read more about conflict resolution here:
https://brainly.com/question/2267795
Given storeMonthlySales NUM STOREST[NUM MONTHST[NUM DEPTS] is a three-dimensional array of floating point values. Write a C++ function, printMonthlySales, to calculate and print the total value of sales during a specific month by each department and in each store plus totals by store and department and overall sales. The return type of the function is void and the function must have 2 input parameters Sales array and the month the user specified (edit for correct month values!). The constants NUM STORES, NUM_MONTHS, and NUM_DEPTS must be accessed globally by defining the following global variables #define NUM DEPTS 2 #define NUM STORES 2 #define NUM-MONTHS 12 or const int NUM-MONTHS-12; or const in NUM_DEPTS 2; or const int NUM_STORES 2; The array Sales is initialized by the following statement within main() float storeMonthlySales[NUM STOREST[NUM MONTHS1[NUM DEPTS]- 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 3.0, 3.1,3.2, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 4.0, 4.1, 4.2, 2.1, 2.2,2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 3.0, 3.1, 3.2 Output: Sales for month of value (where value represents "January", "March", etc.) Dept # value value col value sum Dept # Store Total Store # value row value sum tore # value row value sum Dept Total col value sum total overall sales User enters a new month as many times as they wish and run printMonthlySales against the new month alue Validate user input ("y" or "n") when asking if the user wants to enter a new set of values
Answer:
Y
Explanation:
YEZ
Select a student organization belonging to the Career and Technical Student Organizations
participate.
Answer:
You should choose a CTSO related to the field of computers. Research online and create a brief report on the mission of the organization, and state the reason why you want to participate in this organization. You may use online resources to find information about the organization. Ensure you cover the following points: List the goals and purposes of this organization. Include the benefits, duties, and responsibilities of being a member of the student organization. Provide a brief description of the requirements and the process of gaining membership of the organization. Describe the opportunities provided by this organization for developing leadership skills.
Explain the following terms as used in word processin
(a)
Drop cap
(b) A superscript
An indent
Answer:
A drop cap (dropped capital) is a large capital letter used as a decorative element at the beginning of a paragraph or section. The size of a drop cap is usually two or more lines.
a superscript is a character(s) half the height of a standard character and printed higher than the rest of the text.
In word processing, the word indent is used to describe the distance, or number of blank spaces used to separate a paragraph from the left or right margins.
When programming, the word "execute" means which of these?
to kill
to edit
to run
to revise
Answer:
to run!
Explanation:
hope this is helpful!
PLEASE HELP!!!
For this activity, you will create two designs for the same project. For example, you might choose to create a CD cover for your favorite band’s newest release, or you might want to design a menu for the local deli. No matter what you decide for your subject matter, the two designs must involve different media. One of these media will be an image-editing program, such as Inkscape. You will learn more about the basic tools available in Inkscape later in this lesson. The two designs should incorporate different techniques. For example, you might make one design abstract, while making the other more realistic. Be sure to save both of your designs. Scan or take a picture of the design that wasn’t created in an image-editing program. You will submit this item later in this lesson as your portfolio item. Select the link to access the Techniques Activity Rubric.
Answer:
I'm not exactly sure on what the question is, but from reading it, I determined that you'll be creating 2 different designs using Inkscape/Photoshop. I'm leaving 2 of my designs in here for you to use on your project. Unknown on what to do about the design that wasn't created in an image-editing program.
help help help help help help help help
Answer:
ok witch qeston
Explanation:
Answer:
2
Explanation:
What were the first computers made
Answer:
In 1943 he ENIAC computing system was built by John Mauchly and J. Presper Eckert
Explanation:
Answer:
ENIAC (Electronic Numerical Integrator and Computer)
What does B the represent
Answer:
The B represents a boolean.
What is Groovefunnels?
Explanation:
Griovefunnels is a suite of digital marketing tools desinged to help you run a sucessfull online business .
What are technology trends in science check all that apply
Answer:
3D Printing Molecules.
Adaptive Assurance of Autonomous Systems.
Neuromorphic Computing (new types of hardware) and Biomimetic AI.
Limits of Quantum Computing: Decoherence and use of Machine Learning.
Ethically Trustworthy AI & Anonymous Analytics.
Explanation: