Answer:
In a broadcast network such as radio network for example a walkie talkie, the broadcasted transmission is received equally by all receivers indiscriminately which may lead to dissemination of classified information to an unauthorized receiver, therefore, the network layer is required is needed to ensure proper routing of the information
Similarly, when the all the broadcasters in one location are each trying to send messages to different receivers at another given location, there would be potential for network congestion and it would be difficult to send information through the network
When there is need for priority service the presence of a network layer is needed in the network
However, when the above functions performed by the network layer is not required, then, the network layer can be excluded, such as the communication between layers 4 - 7 of the OSI model
Explanation:
illl give brainliest plzzzzzzzzzz
The one paste symbol name is : paste settings
it consist of 'paste special' and 'set default paste if im not wrong'
In computing, what does Bcc mean. The topic in which this is found is HOW TO CREATE AN E MAIL ACCOUNT
Answer:
BCC stands for "blind carbon copy."
Answer:
that I have a a but this is the real account of Finn have a great day today with my mom said you didn't want me there was an accident in the middle of nowhere near as much as I can get some sleep now so I can get some sleep now so I can get some sleep now so I report
What is the difference between ionizing and non-ionizing radiation?
Answer:
Radiation is classified as being either non-ionizing or ionizing. Non-ionizing radiation is longer wavelength/lower frequency lower energy. While ionizing radiation is short wavelength/high frequency higher energy. Ionizing Radiation has sufficient energy to produce ions in matter at the molecular level.
Explanation:
a computer programmer draws a before writing a comouter program
Answer:
Draws a flow chart
Vector images are drawn ________ available in most graphic software programs.
Answer:
Vector images are drawn with basic line tools available in most graphic software programs
Explanation:
A vector graphic image makes use of points coordinate points on a Cartesian plane, to define computer graphic images, such that the image is based on mathematical relationships between the different parts of the image rather the use of pixels
Vector images are therefore smooth without aliasing errors for all sizes to which the image is zoomed given that the image generated by a combination of lines, curves and points
9.
Write an application that computes and displays the day on which you become (or
became) 10,000 days old. Save the application as Ten ThousandDaysOld.java.
TI
Answer:
Explanation:
The following code is written in Java and it asks you for your age and then prints out the exact date from your birthday that you will turn 10,000 days old.
import java.util.Calendar;
import java.util.Date;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
System.out.println("What is your age?");
int age = in.nextInt();
int daysLeft = (10000 - (age*365));
Date birthday = new Date();
Calendar cal = Calendar.getInstance();
cal.setTime(birthday);
cal.add(Calendar.DATE, daysLeft);
Date modifiedDate = cal.getTime();
System.out.println(modifiedDate);
}
}
Which is an example of a variable name written in camelcase?
Song Name
songName
song Name
SongNAME
Answer: songName
-DoggyMan5