Answer:
True
Explanation:
javascript Write a program to calculate the credit card balance after one year if a person only pays the minimum monthly payment required by the credit card company each month.
Answer:
Explanation:
The following code is written in Javascript as requested and creates a function that takes in the total credit card debt amount and the minimum monthly payment. Then it calculates the new balance at the end of the year after paying 12 monthly minimum payments. Finally, printing out the new balance to the console which can be seen in the attached picture below.
let brainly = (debt, minimum) => {
debt = debt - (minimum * 12);
console.log("Credit Card Balance after one year: $" + debt);
}
brainly(50000, 3400);
How should excel Identify social security numbers: as a text, numbers, or date and time? Why?
Answer:
as text
Explanation:
they are not quantitative so not numbers
they are not dates and times
What is the practical application of science to enhance mankind’s problem solving ability
Answer:
Science is concerned about aggregating and understanding perceptions of the physical world.
Explanation:
Science is concerned about aggregating and understanding perceptions of the physical world. That seeing alone takes care of no issues. Distinctive individuals need to follow up on that comprehension for it to help take care of issues. For example, science has discovered that ordinary exercise can bring down your danger of coronary illness.
One note captures your ideas and schoolwork on any device so you can — and -
Write a program, named NumDaysLastNameFirstName.java, which prompts the user to enter a number for the month and a number for the year. Using the information entered by the user and selection statements, display how many days are in the month. Note: In the name of the file, LastName should be replaced with your last name and FirstName should be replaced with your first name. When you run your program, it should look similar to this:
Answer:
Explanation:
The following code is written in Java and uses Switch statements to connect the month to the correct number of days. It uses the year value to calculate the number of days only for February since it is the only month that actually changes. Finally, the number of days is printed to the screen.
import java.util.Scanner;
public class NumDaysPerezGabriel {
public static void main(String args[]) {
int totalDays = 0;
Scanner in = new Scanner(System.in);
System.out.println("Enter number for month (Ex: 01 for January or 02 for February): ");
int month = in.nextInt();
System.out.println("Enter 4 digit number for year: ");
int year = in.nextInt();
switch (month) {
case 1:
totalDays = 31;
break;
case 2:
if ((year % 400 == 0) || ((year % 4 == 0) && (year % 100 != 0))) {
totalDays = 29;
} else {
totalDays = 28;
}
break;
case 3:
totalDays = 31;
break;
case 4:
totalDays = 30;
break;
case 5:
totalDays = 31;
break;
case 6:
totalDays = 30;
break;
case 7:
totalDays = 31;
break;
case 8:
totalDays = 31;
break;
case 9:
totalDays = 30;
break;
case 10:
totalDays = 31;
break;
case 11:
totalDays = 30;
break;
case 12:
totalDays = 31;
}
System.out.println("There are a total of " + totalDays + " in that month for the year " + year);
}
}
it is the process of combining the main document with the data source so that letters to different recipients can be sent
The mail merge is the process of combining the main document with the data source so that letters to different recipients can be sent.
Why is mail merge important?Mail merge allows you to produce a batch of customised documents for each recipient.
A standard letter, for example, might be customized to address each recipient by name.
The document is linked to a data source, such as a list, spreadsheet, or database.
Note that Mail merge was invented in the 1980s, specifically in 1984, by Jerome Perkel and Mark Perkins at Raytheon Corporation.
Learn more about mail merge at:
https://brainly.com/question/20904639
#SPJ1
Which search strategy is most similar to greedy search?
A.
depth-first search
B.
breadth-first search
C.
bidirectional search
D.
uniform-cost search
Answer:
I think the answer would be A.
Explanation:
If I'm wrong plz let me know (I think I may be wrong)
I need help!! I decided to go back to college this year and am taking Intro to Logic and Programming. I have an assignment due that I cannot figure out!
If you own real estate in a particular county, the property tax that you owe each year is calculated as 64 cents per $100 of the property's value. For example, if the property's value is $10,000 then the property tax is calculated as follows:
Tax = $10,000/ 100 * 0.64
Create an application that allows the user to enter the property's value and displays the sales tax on that property.
Thank you in advance for any help!
Answer:
Monday Video: 5.4.20 Section 18.5
Work due: 18.5 Worksheet
CW
Tuesday Video: 5.5.20 Section 18.6
Work due: 18.6 Worksheet
HW
Wednesday Video: 5.6.20 Section 18.7
Work due: 18.7 Classwork
CW
Thursday Video: 5.7.20 Section 18.7
Work due: 18.7 Homework
HW
Friday Video: 5.8.20 Section 18.5-18.7
Work due: Textbook page 615 #5-19 (not #13)
HWaccuracy
Explanation:
How many root servers are there?
Note that there are 1 main DNS Root Servers. They are lettered A - M.
What are DNS Root Servers?There are 13 root servers that serve as the backbone of the internet's Domain Name System (DNS).
These root servers are distributed around the world and operated by different organizations, including government agencies and private companies. Each root server has a unique IP address, and they collectively manage the top-level domains (TLDs) such as .com, .org, .net, and so on.
While 13 may seem like a small number of servers to support the entire internet, they are designed to be highly resilient and reliable, using anycast technology and extensive redundancy to ensure that they can handle massive amounts of traffic and remain operational even in the face of cyber attacks or natural disasters.
Learn more about DNS Root Servers:
https://brainly.com/question/30035397
#SPJ1
4.9 Code Practice: Question 4 Edhisive
Write a program that asks the user to enter ten temperatures and then finds the sum. The input temperatures should allow for decimal values.
Sample Run
Enter Temperature: 27.6
Enter Temperature: 29.5
Enter Temperature: 35
Enter Temperature: 45.5
Enter Temperature: 54
Enter Temperature: 64.4
Enter Temperature: 69
Enter Temperature: 68
Enter Temperature: 61.3
Enter Temperature: 50
Sum = 504.3
i = 0
total = 0
while i < 10:
temp = float(input("Enter Temperature: "))
total += temp
i += 1
print("Sum: {}".format(total))
I wrote my code in python 3.8. I hope this helps!
The program accepts 10 temperature inputs from the user, and takes the sum of the inputs gives before displaying the total sum of the temperature. The program is written in python 3 ;
temp_count = 0
#initialize the number of temperature inputs given by the user and assign to temp_count variable
sum = 0
#initialize the sum of the temperature inputs given
while(temp_count < 10):
#loop allows 10 inputs from the user
values = eval(input('Enter temperature : '))
#prompts user to input temperature values
sum+= values
#adds the inputted values to sum
temp_count+=1
#increases count of input by 1
print('sum of temperature : ', sum)
#displays the total sum
Learn more :https://brainly.com/question/18253379
1. A network administrator was to implement a solution that will allow authorized traffic, deny unauthorized traffic and ensure that appropriate ports are being used for a number of TCP and UDP protocols.
Which of the following network controls would meet these requirements?
a) Stateful Firewall
b) Web Security Gateway
c) URL Filter
d) Proxy Server
e) Web Application Firewall
Answer:
Why:
2. The security administrator has noticed cars parking just outside of the building fence line.
Which of the following security measures can the administrator use to help protect the company's WiFi network against war driving? (Select TWO)
a) Create a honeynet
b) Reduce beacon rate
c) Add false SSIDs
d) Change antenna placement
e) Adjust power level controls
f) Implement a warning banner
Answer:
Why:
3. A wireless network consists of an _____ or router that receives, forwards and transmits data, and one or more devices, called_____, such as computers or printers, that communicate with the access point.
a) Stations, Access Point
b) Access Point, Stations
c) Stations, SSID
d) Access Point, SSID
Answer:
Why:
4. A technician suspects that a system has been compromised. The technician reviews the following log entry:
WARNING- hash mismatch: C:\Window\SysWOW64\user32.dll
WARNING- hash mismatch: C:\Window\SysWOW64\kernel32.dll
Based solely ono the above information, which of the following types of malware is MOST likely installed on the system?
a) Rootkit
b) Ransomware
c) Trojan
d) Backdoor
Answer:
Why:
5. An instructor is teaching a hands-on wireless security class and needs to configure a test access point to show students an attack on a weak protocol.
Which of the following configurations should the instructor implement?
a) WPA2
b) WPA
c) EAP
d) WEP
Answer:
Why:
Network controls that would meet the requirements is option a) Stateful Firewall
Security measures to protect against war driving: b) Reduce beacon rate and e) Adjust power level controlsComponents of a wireless network option b) Access Point, StationsType of malware most likely installed based on log entry option a) RootkitConfiguration to demonstrate an attack on a weak protocol optio d) WEPWhat is the statement about?A stateful firewall authorizes established connections and blocks suspicious traffic, while enforcing appropriate TCP and UDP ports.
A log entry with hash mismatch for system files suggest a rootkit is installed. To show a weak protocol attack, use WEP on the access point as it is an outdated and weak wireless network security protocol.
Learn more about network administrator from
https://brainly.com/question/28729189
#SPJ1
Which of the following statements is correct?
Select one:
a. A failure in Network layer crashes the application
b. A failure in Network layer affects transport layer
c. A failure in Network layer affects Data Link layer
d. A failure in Network layer affects entire communication
e. A failure in Network layer stops the device from working entirely
The statement which is correct from the given answer choices is:
C. A failure in Network layer affects Data Link layerAccording to the given question, we are asked to show which of the statement about the network layer is most represented accurately.
As a result of this, we can see that a network layer is a part of the OSI model which is in charge of receiving and forwarding service requests from the sender to the receiving host in a network.
With this in mind, if the network layer fails, then there would also be a failure in the data link layer.
Therefore, the correct answer is option C
Read more here:
https://brainly.com/question/21298343
How useful is knowing the total hours your teammates have available to support?
Knowing the total hours your teammates have available to support can be very useful. It can help you plan out your team's workload, prioritize tasks, and manage expectations. It can also help you identify when someone may be overworked or not able to meet deadlines due to lack of available hours.
What are Deadlines?Deadlines are the predetermined dates and times by which a particular task must be completed. They provide a sense of urgency and structure to manage and complete tasks in an efficient manner. Deadlines are important because they help us to prioritize our tasks, create realistic timelines and stay organized. They also can help us avoid procrastination and remain motivated to complete tasks on time.
To know more about Deadlines
https://brainly.com/question/1270722
#SPJ1
Write true or false for the following statements.
a. OLE is a data type of Ms-Access.
b. We cannot enter duplicate value in the primary key field.
c. Cell is interconnection of rows and columns.
d. We can use “auto number' data type for salary field.
e. The appropriate field type to store “Date of Birth” is date and time.
f. Form is designed for data input.
g. True/ False is a logical data type.
h. Hyperlink data type occupies up to 2042 characters.
Answer: its a
Explanation:
i think do bc it is
which of the following is the most appropriate way to write css style for the font family property in html
Answer:
The answer is c your welcome
"
in this activity, you will write your response and share it in this discussion forum. Al students will share and have the opportunity to learn from each other. Everyone is expected to be positive and respectful, with comments that help all leamers write effectively. You are required to provide
a positive and respectful comment on one of your classmate's posts
For your discussion assignment, follow this format
Tople Sentence: With growing online social media presence cyberbullying is at an all-time high because.....
Concrete detail Cyberbullying has steadily been on the rise because
Commentary: Looking at some of my (or include the name of the famous person that you chose) most recent social media posts I can see how one could misinterpret my posting because
Concluding Sentence: To help lower the growth rate of cyberbullying, we can
Respond to Classmate: Read other students posts and respond to at least one other student Your response needs to include a specific comment
You did a great job of pointing out how social media's lack of responsibility and anonymity contribute to cyberbullying. It's critical to keep in mind the effect our comments may have on other people.
What do you call a lesson where small groups of students have a quick conversation to develop ideas, respond to questions, etc.?Brainstorming. Students are tasked with coming up with ideas or concepts during a brainstorming session, which is a great tool for coming up with original solutions to problems.
How do you give your students engaging subject matter?Look for images and infographics that engagingly explain your subject. Create a story using all of your topics and the photographs, and you'll never forget it. Create a list of the crucial questions.
To know more about social media's visit:-
https://brainly.com/question/14610174
#SPJ1
Can someone help me calculate this Multimedia math:
A monochrome sequence (black and white) uses a frame size of 176 x 144 pixels and has 8 bits/pixels. Registered with Frame Rate 10 frames/sec. Video is transmitted through a 64 Kbit/sec bandwidth line.
(a) Calculate Compression Ratio (Crude Bit Speed / Compressed Bit Speed) which will be needed.
(b) What will happen if the Ratio compression is higher than it in (a)?
(c) What will happen if the Ratio compression is lower than it in (a)?
Answer:
I will try to help you answer this. it seems really confusing but I'll do my best to solve it and get it back to you. Hope I'm able to help!
100 points!!!!
You must write 5-7 sentences to receive full credit
What are some of the ways that what are some of the ways mobile technology has changed the web? Describe at least two ways that your life would be different if you only used the web without using mobile devices such as smartphones or tablets.
Answer:
Mobile technology has changed the web in many ways. It has made the web more accessible and user-friendly, with features such as mobile-optimized websites, responsive design, and mobile apps. It has also enabled people to access the web from anywhere, anytime, allowing them to stay connected and informed. If I only used the web without using mobile devices, I would not be able to access the web while on the go, which would limit my ability to stay connected with family and friends. I would also not be able to access the web when I'm away from home, which would make it more difficult to stay up to date with news and information.
Explanation:
Answer:
Mobile technology has revolutionized the web by making it more accessible and user-friendly. Mobile devices have changed the way people consume and interact with online content, leading to the creation of responsive design and mobile-first web development. If I only used the web without mobile devices, I would miss out on the convenience of being able to access the web on-the-go, as well as the ability to easily complete tasks such as online shopping and banking from anywhere. Additionally, I would miss out on the many apps and tools available exclusively on mobile devices that make my life easier and more efficient.
In C#
Please as soon as possible
Answer:
I'm not hundred percent sure but I believe it is going up by 100 the scale each number for the total quantity
Explanation:
Freeze column A and rows 1 through 3 in the worksheet
The question tells us that we are dealing with an Excel Worksheet task.
The most popular workbooks are:
"MS Excel" and "G-Sheets"The purposes of this question we will consider both.
Columns in either of the two types of worksheets mentioned above refer to the Vertical Grids which run through the sheets.
Rows on the other hand refer to the Horizontal Grids which run through the sheets. Both Columns and Rows comprise Cells.
Freezing in this sense refers to the act of ensuring that regardless of which direction the worksheet is scrolled, the frozen parts remain visible on the screen.
How to Freeze Column A and Rows 1 to 3
In "MS Excel":
Open Microsoft Excel Click on Blank WorkbookClick on Cell B4 to highlight itOn the ribbon above, click on view to display its sub-functionsselect Freeze PanesThis action will freeze the entire column A as well as Row 1 to 3. To increase the number of rows from 1-3 to 1 to 5 for instance, you'd need to return to the View Function, Unfreeze the Panes, select Cell B6 then select Freeze Panes.
In "G-Sheets"
Ensure that your computer is online, that is, connected to the internetOpen "G-Sheets"Place your mouse cursor on cell B3 and click to highlight itWith your click on View in the ribbon above. This will display the Freeze function in "G-Sheets" along with its subfunctionsSelect the "Freeze + Up to row 3". This action will freeze Rows 1 to 3.Next, click anywhere in Column ACarry out step 4 above and select "Freeze + Up to column A"For more about Freezing Work Sheets click the link below:
https://brainly.com/question/17194167
_________1.exchange rate
_________2.medium of exchange
_________3.thailand
_________4.switzerland
_________5.saudi arabia
a. Forex
b. FranC
c.Rial
d. Baht
e. Currency
Information censorship is used to____. (4 options)
1. Promote Authorization Government
2. Polarize the Public
3. Create Confusion
4. Promote Independent Media
Information censorship is used to control the flow of information and restrict access to certain content.
While the specific motives and methods behind information censorship can vary, it generally serves to exert authority and influence over the dissemination of information within a society.
Option 1: Promote Authorization Government - This option suggests that information censorship is used to support authoritarian or autocratic regimes by controlling the narrative and limiting dissenting viewpoints. Censorship can be employed as a means of consolidating power and suppressing opposition.
Option 2: Polarize the Public - Censorship can be used to manipulate public opinion by selectively suppressing or amplifying certain information, thereby influencing people's perspectives and potentially creating divisions within society.
Option 3: Create Confusion - Censorship can contribute to confusion by limiting access to accurate and reliable information. This can lead to a lack of transparency, misinformation, and the distortion of facts, making it challenging for individuals to form informed opinions.
Option 4: Promote Independent Media - This option is not typically associated with information censorship. Rather, independent media thrives in an environment that upholds freedom of speech and opposes censorship.
Overall, options 1, 2, and 3 align more closely with the potential outcomes of information censorship, while option 4 contradicts the nature and purpose of censorship.
For more questions on Information censorship
https://brainly.com/question/29828735
#SPJ8
Data analytics benefits both financial services consumers and providers by helping create a more accurate picture of credit risk.
True
False
Answer:
True
Explanation:
Which symbol is present on the home row of the keyboard?
A.
apostrophe
B.
question mark
C.
comma
D. period
Answer:
the answer is A. an apostrophe
Answer:
A I took the test
Explanation:
Note that common activities are listed toward the top, and less common activities are listed toward the bottom.
According to O*NET, what are common work activities performed by Veterinarians? Check all that apply.
According to O*NET, common work activities performed by Veterinarians include:
A) documenting/recording information
C) making decisions and solving problems
E) working directly with the public
F) updating and using relevant knowledge
What is the Veterinarians work about?According to O*NET, common work activities performed by Veterinarians include:
documenting/recording information, such as medical histories and examination resultsmaking decisions and solving problems, such as diagnosing and treating illnesses and injuriesworking directly with the public, such as answering questions and providing information about animal healthupdating and using relevant knowledge, such as staying current with new research and developments in veterinary medicine.Hence the options selected above are correct.
Learn more about Veterinarians from
https://brainly.com/question/7982337
#SPJ1
See full question below
Note that common activities are listed toward the top, and less common activities are listed toward the bottom.
According to O*NET, what are common work activities performed by Veterinarians? Check all that apply.
A) documenting/recording information
B) repairing electronic equipment
C) making decisions and solving problems
D) operating large vehicles
E) working directly with the public
F) updating and using relevant knowledge
T/F: Simulation problems provide a likely solution based on a range of outcomes and associated probabilities.
Simulation problems provide a likely solution based on a range of outcomes and associated probabilities: True.
What is a simulation?A simulation can be defined as a model which is designed and developed to imitate the operation of an existing (proposed) real-life system or natural phenomenon, so as to enhance the ability to study, analyze, and make informed decisions about outcomes.
Generally, there are different types of simulation model and these include the following:
Computer-generated model.Mathematical model.Conceptual model.Physical model.In conclusion, a simulation model is designed to replace the use of a value for parameters with a range of possible outcomes and associated probabilities, in order to solve a problem.
Read more on simulation here: https://brainly.com/question/23844272
#SPJ1
In Python what are the values passed into functions as input called?
HELP ME OUT PLEASE!!!!
Newspapers are forms of digital media.
True False
Write a C++ program that creates a word-search puzzle game where the user should find the hidden
words in a square array of letters. Your program should first read from the user their choice for the
game: a) easy, b) medium, c) hard, d) exit the game. If the user selects easy, then the 6x6 puzzle,
shown in Figure 1, will be generated and displayed to the user. If the user selects medium, then the
14 x 14 puzzle shown in Figure 2 should be generated and displayed and lastly, if the user selects
the hard choice, the program should generate a random puzzle, filling the square array of 20 x 20
using random characters/words.
Then your program should repeatedly read from the user, a word to be searched for in the puzzle,
the row and column number where the word starts from and which orientation to search for. The
words can be searched vertically (top to bottom), horizontally (left to right), diagonally (upper left
to lower right) and diagonally (upper right to lower left). The program should check if the column
and row number given by the user are inside the puzzle (array) boundaries, otherwise should display
an error message and ask the user to enter another position. For each word the user inputs, the
2
program should display whether the word was found or not. The program should stop reading
words when the user will press “X” and then the total number of found words will be displayed to
the user.
The program should repeatedly display the game menu until the user will select to exit the game
C++ program to create a word-search puzzle game. #include <iostream> #include <cstring> using namespace std; int main() { char input; cout << "Choose.
What is program technology?Any technology (including, without limitation, any new and practical process, method of manufacture, or composition of matter) or proprietary material developed or first put into use (actively or constructively) by either Party in the course of the Research Program is referred to as "Program Technology."
A 33 board with 8 tiles (each tile has a number from 1 to 8) and a single empty space is provided. The goal is to use the vacant space to arrange the numbers on the tiles so that they match the final arrangement. Four neighboring (left, right, above, and below) tiles can be slid into the available area.
Therefore, C++ programs create a word-search puzzle game. #include <iostream> #include <cstring>
Learn more about the program here:
https://brainly.com/question/11023419
#SPJ1
Prompt the user to enter two words and a number, storing each into separate variables. Then, output those three values on a single line separated by a space
The coding for completing the program is by using two words and a number, storing each into separate variables.
What are variables?In coding or any computer language like python, the variables are the things that are taken in the subject.
def userdetails():
words = input("Enter a word: ")
word2 = input("Enter a word: ")
numm = input("Enter a number: ")
pw1 = words+"_"+word2
pw2 = numm+words+numm
print("You entered: {} {} {}" .format(words,word2,numm))
print("First password:",pw1)
print("Second password:",pw2)
print("Number of characters in",pw1,":",len(pw1))
print("Number of characters in",pw2,":",len(pw2))
Thus, the code for given words and numbers is given above.
To learn more about variables, refer to the below link:
https://brainly.com/question/14679709
#SPJ1