Answer:
Margin is the correct answer to the given question .
Explanation:
The main objective of the margin is to setting the white space that are showing up at the top , bottom, left and the right corners of the file or the document .
Following are steps to setting the white space that are showing up at the top , bottom, left and the right corners of the file or the document
Firstly click on the page layout options .After that click on the margin tab .In this tab you will given the the top, bottom, left, and right margin according to your need Finally click on ok to finish them .01:24:3
There are many different types of audio file formats, but the formats can be grouped into three different categories. These
categories are
Answer:
1. Uncompressed audio formats
2. Formats with lossless compression
3. Formats with lossy compression
Explanation:
1. Uncompressed audio formats, such as WAV, AIFF, AU or raw header-less PCM;
2. Formats with lossless compression, such as FLAC, Monkey's Audio (filename extension .ape), WavPack (filename extension .wv), TTA, ATRAC Advanced Lossless, ALAC (filename extension .m4a), MPEG-4 SLS, MPEG-4 ALS, MPEG-4 DST, Windows Media Audio Lossless (WMA Lossless), and Shorten (SHN).
3. Formats with lossy compression, such as Opus, MP3, Vorbis, Musepack, AAC, ATRAC and Windows Media Audio Lossy (WMA lossy).
A company that want to send data over the internet has asked you to write a program that will encrypt it so that it may be transmitted more securely.All the data transmitted as four digit intergers.Your application should read a four digit integer enterd by the user and encrypt it as follows:replace each digit with the result of adding 7 to the digit and getting the remainder after diving the new value by 10.Tjen swap the first digit with the third,and swap the second digit with the fourth.Then print the encrpted interger.Write a separate application that inputs an encrypted four digit interger and decrypts it (by reversing the encryption scheme) to form the original number
Answer:
A java code was used to write a program that will encrypt and secure a company data that is transmitted over the Internet.
The Java code is shown below
Explanation:
Solution:
CODE IN JAVA:
Encryption.java file:
import java.util.Scanner;
public class Encryption {
public static String encrypt(String number) {
int arr[] = new int[4];
for(int i=0;i<4;i++) {
char ch = number.charAt(i);
arr[i] = Character.getNumericValue(ch);
}
for(int i=0;i<4;i++) {
int temp = arr[i] ;
temp += 7 ;
temp = temp % 10 ;
arr[i] = temp ;
}
int temp = arr[0];
arr[0] = arr[2];
arr[2]= temp ;
temp = arr[1];
arr[1] =arr[3];
arr[3] = temp ;
int newNumber = 0 ;
for(int i=0;i<4;i++)
newNumber = newNumber * 10 + arr[i];
String output = Integer.toString(newNumber);
if(arr[0]==0)
output = "0"+output;
return output;
}
public static String decrypt(String number) {
int arr[] = new int[4];
for(int i=0;i<4;i++) {
char ch = number.charAt(i);
arr[i] = Character.getNumericValue(ch);
}
int temp = arr[0];
arr[0]=arr[2];
arr[2]=temp;
temp = arr[1];
arr[1]=arr[3];
arr[3]=temp;
for(int i=0;i<4;i++) {
int digit = arr[i];
switch(digit) {
case 0:
arr[i] = 3;
break;
case 1:
arr[i] = 4;
break;
case 2:
arr[i] = 5;
break;
case 3:
arr[i] = 6;
break;
case 4:
arr[i] = 7;
break;
case 5:
arr[i] = 8;
break;
case 6:
arr[i] = 9;
break;
case 7:
arr[i] = 0;
break;
case 8:
arr[i] = 1;
break;
case 9:
arr[i] = 2;
break;
}
}
int newNumber = 0 ;
for(int i=0;i<4;i++)
newNumber = newNumber * 10 + arr[i];
String output = Integer.toString(newNumber);
if(arr[0]==0)
output = "0"+output;
return output;
}
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.print("Enter a 4 digit integer:");
String number = sc.nextLine();
String encryptedNumber = encrypt(number);
System.out.println("The decrypted number is:"+encryptedNumber);
System.out.println("The original number is:"+decrypt(encryptedNumber));
}
}
What is the final value of x (after this code has executed)?
int x = 0;
for (x = 0; x < 200; x++)
{
System.out.println(x);
}
Answer:
199
Explanation:
i starts at 0. One more than 0 is one. Until you get 199.
The computer is counting as seen below:
0
1
2
....
199
What are the Positive and negative sites of the internet
Answer:
A positive of the sites of internet is that it can be very helpful to you like brainly. It can also educate you and help when you cant do you something like we have online classes since we can't go to school because of Corona
A negative of the sites of the internet is that sometimes people will try to trick you to do irresponsible things. Some will trick you for your address, credit card number, or using things unwisely. Because people don't know who is behind the screen they might be a criminal but they also don't know who you are until they get your address or information.
Explanation:
Python question. Please help. What are the variables for those 2.
6. A small design agency you are consulting for will be creating client websites and wants to purchase a web server so they can host the sites themselves. How will you advise them on this purchase?
Answer:
Explanation:
The best way to advise the agency in this matter would be to help them completely understand the total cost of ownership of the server. This includes the server itself but many other factors as well. Such as any and all server software and application software that they will need, an IT server manager, facility costs, security costs, backup features. These are some of the main costs that they will be incurring but there may be more unforeseen costs. Therefore the best way to advise them is by providing all of this information so that they can make the most informed decision possible.
anyone got a class named computer literacy? or sum similar to using Microsoft programs? i need a lotttt of help, im 3 units behind and school ends Friday. plsssss help meeee btw, im not gonna pay you with just 15 points, i'll pay you with friendship lol and maybe more points to lol
Answer:
I use google docs
Explanation:
I am in 6th grade but i am in expert in computers.
Answer:j
Explanation:
For a horror film, Pauline wants to show a computer-generated monster appearing from the body of an actor. How can she do this?
A. use a green screen and film the actor then add the animated monster using the green screen
B. make the actor wear a green patch on his chest then add the animated monster on the green patch
C. make the scene of the actor opaque and add the scene of the monster as the bottom track
D. tween the actor and the animated head using a tweening software
E. film the head on a green screen and then add the actor to the background
the answer is option D
Explanation:
Give one reason why a telephone number would be stored as the text data type. [2 marks]
Answer:
Telephone numbers need to be stored as a text/string data type because they often begin with a 0 and if they were stored as an integer then the leading zero would be discounted.
The other reason is that you are never likely to want to add or multiply telephone numbers so there is no reason to store it as an integer data type.
Explanation:
A text data type can hold any letter, number, symbol or punctuation mark. It is sometimes referred to as 'alphanumeric' or 'string'.
The data can be pure text or a combination of text, numbers and symbols.
People often assume that a telephone number would be stored as an 'integer' data type. After all, they do look like numbers don't they!
What are scientists going to explore next on Kepler-186f? A) evidence of the existence of life B) types of plant life that exist C) evidence of volcanic activity D) evidence of volcanic activity
Answer:
the answer is a)
Explanation:
Answer:
the answer is a
Explanation:
What is a resume?A collection of all your professional and artistic works.A letter which explains why you want a particular job.A 1-2 page document that demonstrates why you are qualified for a job by summarizing your skills, education, and experience
A 5-10 page document that details your professional and educational history in great detail.
Answer:
a 1-2 page document that demonstrates why you are qualified for a job by summarizing your skills, education, and experience.
Mention one application of AI from the real world and describe the use of of this application what is the type of learning used in this application
Answer:
The real world AI application is Google Duplex. It is able to receive orders for making reservations. Then it calls the shop or the place and deals with the person and talks to him very fluently and informs you about the reservation. Some other general types of AI application are Google Assistant, Siri , Amazon Alexa and so on. But google Duplex is lot more advanced than them.
What is it called when a number of computers are linked together to allow them to share resources?
a.Computer architecture
b.Computer network
c.Hub
d.Network topology
Answer:
hub
Explanation:
Which of the following is a country that cruise ships commonly sail under the flag of?
O United States
O Canada
O Panama
O South Africa
< Previous
Answer:
Panama
hope this helps!
help please, on tuesday we have oral presentation in zoom and i am afraid to speak in front of people, and i don't know what to do, nobody wants to help me and the teacher does not answer me, so i can't ask him if i can make the exposition in private :(
i can't ask for help to my friends because they ignore me, and my family will be mad at me if they know this
sorry if my english is bad.
Answer:
You should be strong, and be sure about what you want to say. Make sure when you speak it is clear, and makes sense.
Explanation:
If you don't speak up or sound like you know what you are talking about. I like to think of it as dancing. Act like you own the stage, or in your case, like you own the presentation. Also, I suggest you speak to your teacher in private, about him ignoring you. If I were you, I would look for newer friends. Ones that won't ignore you.
how do u type faster
Answer:
by learning the right home keys and how to place the fingers
Explanation:
the left hand side : A,S,D,F
the right hand side: :, L, K, J
the two little fingers are guide keys
guide keys: letter A and column
Briefly explain the purpose of the design process
Answer:
When you want to create something or if you want to solve a problem or if you have been assigned a task but the steps towards the results are not clear yet. The purpose of a design-process is to shape and guide your work and thoughts to improve the outcome.
Explanation:
Benefits of Computer Science?
[tex]<marquee>Thanks♥️</marquee>[/tex]
Answer:
1.It paves the way for a more equitable world
It could be a tool for societal rebalance regarding gender identity, ethnicity, background and more.
2. Computer science can empower those who are often overlooked.
The tools to build revenue and solve business problems are available to everyone, it could level the playing field.
3.It also accelerate the healthcare progress.
Healthcare seems to be a pretty high priority once considering to improve lives.
So, computer science has the power to enhance and accelerate every other field, including the healthcare aspect.
4.Computer science can expand communication.
We now have social media, chatting and video calling apps along with other applications that could allow you to share
photos and documents with people almost all over the world.
5.It also furthers the education.
btw how do you do that????
Describe the indicators and hazards of a metal deck roof fire in an unprotected steel joist warehouse as well as the techniques to deal with the problem.
Answer:
Explanation:
Joist mansory building is a type of building with the exterior wall of mansory, which is capable of withstanding combustion or fire for nothing less than an hour.
Therefore, the best method to deal with fire is to build with materials that are fire resistant.
Based on the information given, it's vital to make the construction with materials that are fire resistant.
Within the fire service, building construction can simply be defined as the study of how buildings can be put together. It's also how materials and connections are used.
From the information given, it's stated that the metal deck roof is in an unprotected steel joist warehouse. Therefore, in order to prevent hazard, it's important to make the construction with materials that are fire-resistant.
Read related link on:
https://brainly.com/question/17050293
What five safety habits are you using for the internet?
Answer: Keep Personal Information Professional and Limited.
Keep Your Privacy Settings On.
Practice Safe Browsing.
Make Sure Your Internet Connection is Secure.
Be Careful What You Download.
Choose Strong Passwords.
Explanation:that’s what is think
Exercise 3.16.4: Happy Face Solita
Write a program that draws a smiley face!
Only draw the smiley face if the user responds that they are happy! Save the
user input to a variable called happy
Hints
• First determine how to draw the smiley face
• Then use an if statement to decide whether or not to call the functions!
Answer:
do you have a picture of the assignment?
1).
What is a resume?
A collection of all your professional and artistic works.
A letter which explains why you want a particular job.
A 1-2 page document that demonstrates why you are qualified for a job by summarizing your
skills, education, and experience.
A 5-10 page document that details your professional and educational history in great detail.
Answer:
option 1
Explanation:
its not a job application cause your not appling for a job, a resume is a list of all the things you have done that would be beneficial to a job. for example, previous jobs, skills you have, hobby that pertain to a job you want, education and other professional things.
Hope this helps:)
Who must yeild at T-intersections?
Answer: the driver on the street
Explanation:
Throughout the reflection, make sure you have a copy of the Student Guide and your data tables. Complete the
paragraph using the drop-down menus
In this lab, you observed how pollutants affected the
of water. You also modeled and observed how
pollution affected freshwater sources, including surface water and the water in the
Answer:
1) pH
2) ground
Can I have a brainliest?
Explanation:
In this lab, you observed how pollutants affected the ____ of water. You also modeled and observed how pollution affected freshwater sources, including surface water and the water in the _______.
In this laboratory, you observed how pollutants affected the pH of water.
What is pH?pH literally means the power of hydrogen ions and it can be defined as a measure of the molar concentration of hydrogen ions that are contained in a particular solution.
In Chemistry, the power of hydrogen ions (pH) is typically used to specify the acidity, neutrality or basicity of any chemical solution such as water.
In this laboratory, students were made to observe how pollutants affected the pH of water and they modeled how pollution affected freshwater sources, including surface water and the water in the ground.
Read more on pH here: brainly.com/question/24233266
Sarah works in a coffee house where she is responsible for keying in customer orders. A customer orders snacks and coffee, but later, cancels the snacks, saying she wants only coffee. At the end of the day, Sarah finds that there is a mismatch in the snack items ordered. Which term suggests that data has been violated?
Answer:
Stack
Explanation:
Stack is a linear data structure that follows a particular order in the way an operation is done or sequence a job is completed.
It uses either LIFO ( Last In, First Out) which is also known as first come first served sequence or FILO (First In, Last Out) sequence.
There are several real life examples of which we can use the example of replacing the snack items Sarah brought for the customer.
If Sarah used the LIFO method, it means she replaced the snack items first ontop of the already existing snack items that's why there is a mismatch.
Answer:
c
Explanation:
Isabela wants to add an image to her presentation. Which tab should she use?
Answer:Insert
Explanation:
Edg. 2021
Don is creating a very long document, and he would like to create an introductory page that contains the title of the document and the name of the author along with the date.
Answer:
This is a very good choice, to do so Don can insert a cover page. He can go to the options menu, pick the "insert" lash, and then to the "pages" square in the far left of the toolbox. There he will find a "cover page" section that will automatically add a cover page at the beginning of the document.
Explanation:
The reasons for this answer are that in the first place, it is very difficult to go o the first page of the document and move everything down because the format would be lost. Then, he would require to edit everything. It would also result in the same in case he only added a white page and started writing. So he needs a specific object that wouldn't damage the format if edited on the first page.
Elements such as page parts and calendars are easily inserted by navigating to the _____ grouping. Building Blocks Illustrations Text Page Design
Answer:
Building Blocks
Explanation:
When referring to the Publisher Application the navigation feature that allows you to do this is the Building Blocks feature. Like mentioned in the question this feature allows you to choose from and insert a predefined set of calendars for insertion into a publication as well as insert a variety of other page parts to better customize the feel of the publication.
There are two types of artificial intelligence, ANI and AGI. What are the main differences between ani and agi?
Answer:ANI is good at performing single tasks, such as playing chess, making predictions and suggestion.Artificial general intelligence (AGI) is the representation of generalized human cognitive abilities in software so that, faced with an unfamiliar task, the AI system could find a solution. An AGI system could perform any task that a human is capable of.Artificial Narrow Intelligence (ANI) has a limited range of abilities.
Explanation:
BIm computer class I need answers please
Answer:
I think the 3RD
Explanation:
The reason why I think that is because the other once are not written correctly.