Answer:
Microsoft PowerPoint is a presentation graphics program that you can easily use to create professional-level presentations. Users can easily add animation, photos, videos, and sound effects to make their presentation more engaging. PowerPoint is a part of the iconic Microsoft Office software suite.
Can you please answer this question
The first person to answer this question will receive 100 points and I will mark your answer as the brainliest
Answer:
B Careful site planning
Explanation:
Answer:
B careful site setting
Explanation:
Renee works for a television series. Her responsibility is to transfer data from the camera to a hard drive. What is her job designation?
Answer:
Data wrangler
Explanation:
Her responsibility is to transfer data from the camera to a hard drive. What is her job designation? Data Wrangler.
mark as brainliestsPython String Functions: Create a new Python Program called StringPractice. Prompt the user to input their name, then complete the following:
Length
• Print: “The length of your name is: [insert length here]”
Equals
• Test to see if the user typed in your name. If so, print an appropriate message
Really appreciate the help.
#Swap this value by your name. Mine is Hamza :)
my_name = "Hamza"
#Get input from user.
inp = input("What's your name?: ")
#Print the length of his/her name.
print("The length of your name is",len(inp),"characters.")
#Check if the input matches with my name?
#Using lower() method due to the case insensitive. Much important!!
if(inp.lower()==my_name.lower()):
print("My name is",my_name,"too! Nice to meet you then.")
Which fraction represents the shaded part of this circle? 1 2 O 4 Check Answer /3rd grade/
Answer:
1/6 because there is one shaded and the total are 6
Select the correct answer.
Which type of security control encompasses laws such as the Economic Espionage Act?
A.
preventive control
B.
procedural control
C.
legal control
D.
corrective control
Answer:
C. legal control
Explanation:
The Economic Espionage Act is a law that falls under legal control. Legal controls refer to security measures and regulations established by-laws, policies, and legal frameworks to protect sensitive information, assets, and individuals.
Please help with this code!
import random
months = ["jan", "feb", "mar", "apr", "may", "june", "july", "aug", "sept", "oct", "nov", "dec"]
pick1 = random.choice(months)
pick2 = random.choice(months)
if months.index(pick1) < months.index(pick2):
print(pick1)
print(pick2)
else:
print(pick2)
print(pick1)
Since the months are already in chronological order in the list, we can compare their index and print the string with the smaller index first. I wrote my code in python 3.8. I hope this helps.
Write a python program to input money in Bahrain dinar and find out number of denominations can be used to make that money.
For example: -
Enter total money in BD: 76
Then the output Should be :
No.of 20 BD : 3
No.of 10 BD : 1
No.of 5 BD : 1
No.of 1 BD : 1
Pls answer fast
n = int(input("Enter total money in BD: "))
n20 = n//20
n10 = (n-(n20*20))//10
n5 = (n - ((n20*20)+(n10*10)))//5
n1 = (n - ((n20*20)+(n10*10) + (n5*5)))//1
print("No. of 20 BD: "+str(n20))
print("No. of 10 BD: "+str(n10))
print("No. of 5 BD: "+str(n5))
print("No. of 1 BD: "+str(n1))
Answer: There are various ways to earn money online in Bangladesh. Here are some options you can explore:
Freelancing: Freelancing is one of the most popular ways to earn money online in Bangladesh. You can offer your skills and services on various freelance platforms such as Upwork, Fiverr, and Freelancer. You can offer services such as content writing, graphic designing, web development, data entry, and more.
Affiliate marketing: You can earn money by promoting products and services through affiliate marketing. You can join affiliate programs of various companies such as Amazon, Clickbank, and ShareASale and earn commission on the sales made through your unique affiliate link.
he payroll department keeps a list of employee information for each pay period in a text file. the format of each line of the file is write a program that inputs a filename from the user and prints a report to the terminal of the wages paid to the employees for th
Following are the required code to make a report in tabular format by using the appropriate headers:
Python code:
file_name = input('Enter input filename: ')#defining a variable file_name that inputs file value
try:#defining try block that uses thr open method to open file
file = open(file_name, 'r')#defining file variable that opens file
except:#defining exception block when file not found
print('Error opening file ' , file_name)#print message
exit()#calling exit method to close program
print('{:<12s} {:>10s} {:>10s}'.format('Name', 'Hours', 'Total Pay'))#using print method to print headers
for l in file.readlines():#defining loop that holds file value and calculate the value
name, hour, wages = l.split()#defining variable that holds the value of file
hour = int(hour)#holiding hour value
wages = float(wages)#holiding wages value
total = hour * wages#defining variable total variable that calculates the total value
print('{:<12s} {:>10d} {:>10.2f}'.format(name, hour, total))#print calculated value with message
file.close()#close file
Required file (data.txt) with the value:
Database 34 99
base 30 90
case 34 99
What is code explanation?Defining the variable "file_name" that uses the input method to input the file name with an extension. Using the exception handling to check the file, with using the try block and except block. In the try block check file, and in except block print message with the exit method when file not found. In the next line, a print method has used that prints the header and uses a loop to read the file value. Inside the loop, a header variable is used that splits and holds the file value, calculates the value, prints its value with the message, and closes the file.
To know more about python code,
https://brainly.com/question/21888908
#SPJ4
you administer a network with windows server 2016, unix servers, and windows 10 professional, windows 8, and macintosh clients. a windows 8 computer user calls you one day and says that he is unable to access resources on the network. you type ipconfig on the user's computer and receive the following output:
Answer:
Unavailable DHCP Server
Explanation:
If a Windows 8 client computer is configured to use DHCP and can't locate one to receive IP addressing information, it assigns itself an IP address from the APIPA (Automatic Private IP Addressing) range of IP addresses. APIPA addresses include IP addresses from 169.254.0.0 to 169.254.255.254 and are reserved for this purpose. A lit link light on your NIC indicates a connection to the network.
What are some disadvantages of self-driving cars?
Which medium best reflects the thoughts and feelings of the younger generation? a - Books b - Music recordings c - Magazines d - Television programs.
Music recordings best reflect the thoughts and feelings of the younger generation.
Among the given options, music recordings have a unique ability to reflect the thoughts and feelings of the younger generation. Music has always been a powerful medium for self-expression and capturing the essence of different generations, including the youth.
Music has the ability to convey emotions, experiences, and societal perspectives in a way that resonates deeply with the younger generation. Through lyrics, melodies, and rhythms, music provides a platform for artists to express their thoughts, beliefs, and struggles. It serves as a form of catharsis and connection for young people, offering a space to relate to and find solace in the experiences of others.
Additionally, music has a strong cultural influence on the younger generation. It shapes their identity, influences their values, and contributes to social and political movements. Music acts as a reflection of the times, addressing relevant issues and serving as a voice for youth-driven movements and causes.
While books, magazines, and television programs also play a role in shaping cultural narratives, music recordings have a particular impact on the thoughts, feelings, and identity formation of the younger generation, making it the medium that best reflects their perspectives and emotions.
Learn more about emotions here:
https://brainly.com/question/29912301
#SPJ11
____ is a software system that stores, retrieves, and updates
design data through the lifecycle of a product.
The software system that stores, retrieves, and updates design data through the lifecycle of a product is called a Product Data Management (PDM) system. A PDM system is specifically designed to manage and organize product-related information, such as design files, specifications, documentation, and change history.
Collaboration and access control: A PDM system enables collaboration among different teams and individuals involved in the product development process. It allows users to share and collaborate on design data, while also providing access control mechanisms to ensure that only authorized personnel can make changes to the data.
Workflow management: PDM systems often include workflow management capabilities, which help streamline the product development process. Workflows define the sequence of activities that need to be performed, such as design reviews or approvals, and ensure that these activities are carried out in a systematic and controlled manner.
To know more about PDM system visit :-
https://brainly.com/question/33479677
#SPJ11
Declare a class named patientdata that contains two attributes named height_inches and weight_pounds. Sample output for the given program with inputs: 63 115 patient data (before): 0 in, 0 lbs patient data (after): 63 in, 115 lbs.
A person, place, or thing's trait or characteristic is referred to as an attribute.
What traits are prevalent?A system record is associated with a common attribute, which is a data element. The following traits characterize a typical attribute: Name. Type. Standard value (for example, a common attribute field on the user interface can show a default value that a user can change).
class PatientData:
def _init_(self, height_inches = 0, weight_pounds = 0):
self.height_inches = 0
self.weight_pounds = 0
lunaLovegood = PatientData()
print ('Patient data (before):', end=' ')
print (lunaLovegood.height_inches, 'in,', end=' ')
print (lunaLovegood.weight_pounds, 'lbs')
lunaLovegood.height_inches = 63
lunaLovegood.weight_pounds = 115
print ('Patient data (after):', end=' ')
print (lunaLovegood.height_inches, 'in,', end=' ')
print (lunaLovegood.weight_pounds, 'lbs')
Explanation:
Output is as below
Patient data (before): 0 in, 0 lbs
Patient data (after): 63 in, 115 lbs
Give three examples of what characteristics are.
Characters in literature and real life have different traits. Someone may be described as gorgeous, endearing, amusing, or intelligent, for instance.
To know more about attribute visit :-
brainly.com/question/28163865
#SPJ4
From the prespective of networking infrastrcutre, sound waves, such as the human voice, vary continuously over time and are considered what type of data?
Sound waves are considered analog data.
What is data?Data is information that can be used to answer questions, draw conclusions, and support decision-making. It is collected from various sources and stored in databases, where it can be stored, organized, analyzed, and shared. Data includes everything from numbers and text to images and audio files. It can be used to identify trends, develop strategies, and gain insights about customers, products, and services.
Analog data is data that is represented by a continuous range of values, such as in sound waves, where the pressure of the sound wave is constantly changing and fluctuating. Analog data is in contrast to digital data, which is represented by discrete values that can be represented numerically or in binary form.
To know more about data click-
https://brainly.com/question/24621985
#SPJ4
what is the section of a sql query that will calculate the percentage of contributions from prospects?
To calculate the percentage of contributions from prospects in a SQL query, you would need to use the SELECT statement along with some aggregate functions and mathematical operators.
How to calculate SQL?Assuming that you have a table called "contributions" with columns for the amount of each contribution and a column indicating whether the contributor is a prospect, you could use the following SQL query to calculate the percentage of contributions from prospects:sql
Copy code
SELECT
(COUNT(CASE WHEN is_prospect = 'true' THEN 1 END) / COUNT(*)) * 100 AS prospect_contribution_percentage
FROM
contributions;
In this query, we use the COUNT function with a CASE statement to count the number of contributions from prospects (where "is_prospect" is a column in the "contributions" table indicating whether the contributor is a prospect). We then divide this count by the total number of contributions (which we get by using COUNT without any conditions) and multiply by 100 to get a percentage.The resulting column in the query output will be called "prospect_contribution_percentage" and will show the percentage of contributions that came from prospects.To know more about SQL , check out :
https://brainly.com/question/25694408
#SPJ1
Which external reference is formatted correctly?
=[My_Sales.xlsx]!Quarter1:C12
O ='(My_Sales.xlsx)!Quarter1':C12
O ="[My_Sales.xlsx]Quarter1'!$C$12
O =(My_Sales.xlsx)!Quarter1:$C$12
C on edge.
Answer:
= '[My_Sales.xlsx]quarter1'!C12
Explanation:
The formula gets the value of the cell C12 in the quarter worksheet of the My_Sales.xlsx workbook.
Answer:
C
Explanation:
got it right on edge
Describe the Order of Operations in Java programming.
Answer:
You’ll give the multiplication and division operators a rank of 2 and the addition and subtraction operators a rank of 1.
Explanation:
When you code it up, you’ll compare two operators
This is the piece of code that you add to a program to indicate that the program should run the code inside a function at a certain time.
The piece of code that you add to a program to indicate that the program should run the code inside a function at a certain time is a cell.
What is a program?A program is a set of instructions that a computer follows to complete a specific task. As a computer program grows in size, the likelihood of an error occurring increases.
A program, or software program, is a set of instructions that directs the hardware of a computer to perform a task.
Cell is a very high-level embeddable language that was created to implement some fairly general classes of software systems that are difficult to implement using traditional languages.
A cell is a piece of code that you add to a program to tell it that the code inside a function should be run at a specific time.
For more details regarding a programming, visit:
https://brainly.com/question/11023419
#SPJ1
What is CPU known as in the computer?
Answer:
It is also known as the processor of the computer
Explanation:
The CPU is what retrieves and executes instructions, causing it to oftenly be referred to as processor.
Answer:
It is known as the brain of the computer
Explanation:
CPU stands for central process unit. It is responsible for processing the information to the computer just like how human brains process the information in their brains first then act. Thus, why CPU is known as the brain of the computer.
Hope this helps!
Digital literacy involves having a current knowledge and understanding of computers, mobile devices, the internet, and related technologies. group of answer choices
a. true
b. false
Digital literacy involves having a current knowledge and understanding of computers, mobile devices, the internet, and related technologies is option b: false statement.
What is meant by digital literacy?
Digital literacy is known to be a term that connote when a person is said to be having the skills that they need to live, learn, as well as work in a society where communication as well as access to information is known to be increasingly via the use of digital technologies such as internet platforms, social media, and others.
Therefore, Digital literacy involves having a current knowledge and understanding of computers, mobile devices, the internet, and related technologies is option b: false statement.
Learn more about Digital literacy from
https://brainly.com/question/11983600
#SPJ1
how to get seconds from datetime.datetime.now in python
Answer:
Python provides an operation on datetime to compute the difference between two dates. It finds the difference between the initial datetime object and the datetime object created from the time string. The value returned is a timedelta object from which we can use the function total_seconds() to get the value in seconds.
Explanation:
Is a microprocessor is the brains of a computer?
The Central Processing Unit (CPU), commonly referred to as the microprocessor, is the mind behind every computer and several home and office appliances.
What is meant by microprocessor?The microprocessor is the core component of a computer system that does arithmetic and logic operations, such as adding, subtracting, moving numbers from one place to another, and comparing two numbers. The term "processor" or "CPU" or "logic chip" are frequently used to refer to it. In a microprocessor, the data processing logic and control are housed on a single integrated circuit or a limited number of integrated circuits. The circuitry needed to fulfill the duties of a computer's central processing unit is present in the microprocessor in the form of arithmetic, logic, and control circuits. The Central Processing Unit (CPU), commonly referred to as the microprocessor, is the mind behind every computer and several home and office appliances.
To learn more about microprocessor refer to:
https://brainly.com/question/13164100
#SPJ4
which applications or services allow hosts to act as client and server at the same time?client/server applicationsemail applicationsP2P applicationauthentication server
The applications or services that allow hosts to act as client and server at the same time are client/server applications, email applications, P2P applications, and authentication servers.
Applications or services that allow hosts to act as both client and server at the same time are called P2P (peer-to-peer) applications. P2P applications enable direct communication between hosts without the need for a centralized server, making them distinct from client/server applications and email applications. Authentication servers, on the other hand, are specifically used to verify user identities and manage access control.A network host is a computer or other device connected to a computer network. A host may work as a server offering information resources, services, and applications to users or other hosts on the network. Hosts are assigned at least one network address.
A computer participating in networks that use the Internet protocol suite may also be called an IP host. Specifically, computers participating in the Internet are called Internet hosts. Internet hosts and other IP hosts have one or more IP addresses assigned to their network interfaces. The addresses are configured either manually by an administrator, automatically at startup by means of the Dynamic Host Configuration Protocol (DHCP), or by stateless address autoconfiguration methods.
learn more about client/server here:
https://brainly.com/question/30466978
#SPJ11
You connect your computer to a wireless network available at the local library. You find that you can access all of the websites you want on the internet except for two. What might be causing the problem?
Answer:
There must be a proxy server that is not allowing access to websites
Explanation:
A wireless network facility provided in colleges, institutions, or libraries is secured with a proxy server to filter websites so that users can use the network facility for a definite purpose. Thus, that proxy server is not allowing access to all of the websites to the user on the internet except for two.
What is output by the following code? Select all that apply.
c = 0
while (c < 11):
c = c + 6
print (c)
Answer:
i think The output will be
6
12
A laptop user has traveled to visit a client and forgot his power adapter. Before going to lunch with the client, he wants to conserve battery power, but he wants to enable the fastest possible startup when he gets back, with his applications already open. Which power mode will conserve battery life but enable the fastest startup?
Answer:
Sleep mode
Explanation:
Sleep mode pauses all actions on the computer, all open processes are put in memory and the computer goes to a low-power state. This means when he comes back from lunch, that user's laptop will immediately resume all the applications and processes, all the while using very little power.
Hope this helps <3
The error is below; Error = "must declare a named package because this compilation unit is associated to the named module 'FinalProject'" I need some help addressing this issue. How do I fix it to run my program?
Using this keyboard shortcut, you can get to the Run command window quickly: Windows + R: On your keyboard, simply press R while holding down the Windows key.
How do I get my program to run again?To run a built-in Windows program, type "start" followed by the program's name (for example, "start notepad"). Use "cd" to open the program's file-containing folder before running it from any other folder. The "Show Run as different user command on Start" policy must be enabled in the Local Group Policy Editor User Configuration -> Administrative Templates ->Start Menu and Taskbar section (gpedit) before the "Run as different user" option can be added. msc).
An application may fail to launch at times due to a previous .The process from that application has not properly exited and is still running in the background. Click the right mouse button on the Taskbar at the bottom of your screen to see if the process is still running. A menu will appear as a result.
Learn more about Programming :
brainly.com/question/23275071
#SPJ4
When you install drives what type of connection can be used to connect SSD’s, HDD’s and Optical drive?
Answer:
Two drives: one being an SSD and one being an HDD
Explanation:
SSHD is a hybrid of the SSD and HDD. It has the capacity of a HHD and the speed close to that of a SSD. Frequently used software are stored in the SSD part for quick access and everything else is stored in the HDD.
Explanation:
Helppppp mee eeeee eee
Answer:
a
Explanation: bc it is
Answer:
A
Explanation:
trust me OK, I know how to drive
Which team members would be needed to make the visual and audio part of a game
Answer:
artist and sound engineer is the best out of these options
Explanation:
The team members would be needed to make the visual and audio part of a game is Artist and sound engineer.
Thus, option (b) is correct.
The team members needed to make the visual and audio parts of a game would be:
1. Artist and software engineer: The artist would be responsible for creating the visual assets such as characters, backgrounds, and animations, while the software engineer would implement the visual elements into the game code.
2. Artist and sound engineer: The artist would create the visual assets, and the sound engineer would work on the audio aspects of the game, including background music, sound effects, and voiceovers.
Thus, option (b) is correct.
Learn more about Visual and audio here:
https://brainly.com/question/32610294
#SPJ3