What can be done to improve the security of business uses of the Internet? Give several examples of ecurity measures and technologies you would use

Answers

Answer 1

Answer Explanation

There are many things to improve the security of business with the help of internet

the pillars of business depends upon the information and internet provide security to these information.the computer or laptop which is used for business purpose are secure by internetwe use hardware and software firewalls to protect the PC or laptop. we use antivirus to protect the systemfor runing the computer we uses software firewallsfor protection purpose we use hardware firewalls


Related Questions

What is the output of the following function call? //function body int factorial(int n) { int product=0; while(n > 0) { product = product * n; n❝; } return product; } //function call cout << factorial(4);

Answers

Answer:

zero

Explanation:

Because of the define the product variable is zero.

when the function call with pass by value 4.

The program control moves to that function, after that product

store the value zero. Then, product is multiply with n which become zero

because 0 * n is zero and store in the product again.

after that, n'' is wrong it must be 'n--' for performing the factorial function.

after that, the value of n is 3, again loop execute because condition n > 0

is true.

again zero multiply with n and become zero.

this process repeated until condition false and finally the output is zero.

Correction:

To make the code working:

change product = 1 instead of zero.

and change n-- in place of n''.  

Write a c++ program to compute a water andsewage bill. The inputis the number of gallons consumed. The bill is computed asfollows:

water costs .21dollars per gallon of water consumed

sewage service .01dollars per gallon of water consumed

Answers

Answer:

#include<iostream>

using namespace std;

//main function

int main(){

   //initialization

   float gallonConsume;

   //print the message

     cout<<"Enter the number of gallons consumed: ";

     cin>>gallonConsume;   //read the input

   float waterCost = 0.21 * gallonConsume;   //calculate the water cost

   cout<<"The water cost is: "<<waterCost<<endl;  //display

   float sewageService = 0.01 * gallonConsume;   //calculate the sewage service cost

   cout<<"The sewage service cost is: "<<sewageService<<endl;  //display

   return 0;

}

Explanation:

Include the library iostream for using the input/output instruction.

Create the main function and declare the variables.

then, print the message on the screen by using cout instruction.

the value enters by the user is read by cin instruction and store in the variable.

After that, calculate the water cost by using the formula:

[tex]Water\,cost = 0.21 * water\,consume[/tex]

then, display the output on the screen.

After that, calculate the sewage service cost by using the formula:

[tex]sewage\,service\,cost = 0.01*water\,consume[/tex]

finally, display the output on the screen.

2) What is the value stored in the variable z by the statements below?

int[ ] q = {3, 2, -2, 4, 7, 0, 1};
int z = q.length;

a) 1
b) 3
c) 6
d) 7
e) None of the above

Answers

Answer:

7

Explanation:

Because the q.length is a inbuilt function in the programming which used to get the length of the array. In the array, there are 7 values are store. Therefore, the size 7 store in the variable z.

For example:

int[] array={1,2};

int x = array.length;

the answer of above code is 2, because the elements present in the array is 2.

 

What is the difference between persistent and transient objects? How is persistence handled in typical OO database systems?

Answers

Final answer:

Persistent objects are stored permanently in a database, while transient objects are not and are lost when the application that created them is closed. OO database systems handle persistence by storing objects in designed database tables and often use an ORM tool to manage serializing object states for storage.

Explanation:

In the context of object-oriented databases, persistent objects are those that continue to exist after the application that created them has ended. Their state is saved in a non-volatile storage system like a database, allowing them to be retrieved and used by other applications or instances of the same application in the future. On the other hand, transient objects only exist during the lifetime of the application instance that created them; once the application is closed, transient objects are lost because they are not stored permanently.

How Persistence is Handled in OO Database Systems:

In typical object-oriented (OO) database systems, persistence is handled by storing objects in tables within the database. These tables are designed during the database design phase and are created to hold all of the necessary attributes and relationships that define the object. The process of persisting objects involves serializing the object's state and storing it in the database, often using an Object-Relational Mapping (ORM) tool that abstracts the complexity of the underlying database operations.

It is important to note that the concept of persistence of objects from LibreTexts™ is a philosophical concept about whether objects continue to exist out of perception, whereas in computer science, it refers to the longevity of data beyond the lifecycle of the program that creates it. In contrast, the problem of other minds pertains to the philosophical inquiry about the existence and nature of consciousness in others which is not directly related to database systems.

Which of the following would compile without error? A. int a = Math.abs(-5); B. int b = Math.abs(5.0); C. int c = Math.abs(5.5F); D. int d = Math.abs(5L);

Answers

Answer:

int a = Math.abs(-5)

Explanation:

Math.abs() is the function which gives the absolute value of the integer.

syntax:

Math.abs(int name);

the argument enter must be integer(int).

int b = Math.abs(5.0): here, 5.0 is not the integer, it is float. So, it gives error.

int c = Math.abs(5.5F): here, 5.5F is not the integer, it is float. So, it gives error.

int d = Math.abs(5L): L stand for long but it is not int. So, it also gives error.

Therefore, the correct result is int a = Math.abs(-5), -5 is integer.

What scheme is usually used today for encoding signed integers?

Answers

Answer:

 For encoding signed integer the two's complement scheme are used as, the number can be positive, with no fraction part and it can be negative. The computer can stored information in the form of bits and the value with the zero and one. Encoding of signed number in the two's complement with the positive integer it can be done by binary number.

The class string belongs to ................... package.
A) java.awt
B) java.lang
C) java.applet
D) java.string

Answers

B. it belogs to java.lang

. IDT stands for ______________________.
? interrupt descriptor table
? individual descriptor table
? inline data table
? interrupt descriptor table

Answers

Answer:

Interrupt descriptor table

Explanation:

In x86 architecture we use Interrupt descriptor table(IDT) which is data structure to produce an Interrupt vector table(IVT). The processor uses the IDT to form the right reaction to interrupts and exceptions.

It is the equivalent of the Protected mode to the (Interrupt Vector Table(IVT)) Real mode stating at the position of Interrupt Service Routines (ISR)  (one per interrupt vector).

Address and size of IDT  is kept in the CPU's IDTR register. LIDT, SIDT instructions are used for storing.

True of False - use T or F The Throwable class implements the Serializable interface

Answers

Answer:

T

Explanation:

The java.lang.Throwable class implements the Serializable interface.

If a class implements an interface then all its subclasses also implicitly implement the interface.

Note that all Exception classes in Java inherit from java.lang.Throwable. Since Throwable is Serializable, by implication, all java Exception classes are also Serializable by default. That is, all exception classes can be serialized to a file or sent over the network is required.

write a program in C thats read an integer value for x andsums upto 2*x.

Answers

Answer:

#include<stdio.h>

//main function

int main(){

   //initialization of variable

   int temp_sum=0;

   int x,i;

   //display the message

   printf("Enter the number:");

   scanf("%d",&x);//read the number and store in the variable

   //for loop which run 2*num_1 times

   for(i=x;i<=2*x;i++){

       temp_sum = temp_sum + i;  //adding

   }

   //display the output

   printf("The sum is: %d",temp_sum);

   return 0;

}

Explanation:

Include the library stdio.h for using input/output function in c programming.

Create the main function and declare the variables.

display the message on the screen by output function printf().

read the value enter by the user and store in the variable using scanf().

Then, it takes the for loop statement which runs again and again until the condition not false.

the for loop start from value x enter by the user and the loop goes running 2 * x times.

in the for loop, add the number continuously and after the loop terminate.

the output print on the screen.

Lets dry run the code:

suppose initially, temp_sum=0, x = 4, i = 4.

the for loop start from 4, it check the condition 4 <= 8, condition True.

then,

temp_sum = 0 + 4 which is 4 assign to temp_sum.

then, loop increment the value of i and it becomes 5.

This process continues until the condition not false.

after that print the output store in the temp_sum.

Explain what is meant by information technology (IT). Explain what is meant by information systems (IS). Why is it important to understand the differences between information technology (IT) and information systems (IS)?

Answers

Answer:Information technology(IT) :- It is the use of technology in developing, maintaining, and use of computers software, and networks for the processing and distributing the data .

Information System(IS) can be defined as a system which consists of software,hardware and trained individuals brought together to help an organization to plan,control,coordinate and to make decisions.

The difference between IT and IS is that Information Technology is the part of Information system but deals with the technology within the system.

. Two or more functions may have the same name, as long as their _________ are different.

Answers

Answer:

Number of parameters.

Explanation:

The function is a block of the statement which performs the special task.

Syntax:

type name(parameter_1,parameter_2,...){

statement

}

we can define any number of function in the code and also with the name as well.

But when we define the function with same name the number of parameter define in both function must be different.

for example:

1. int print(int a){

statement;

}

2. int print(int a, int b){

statement;

}

first has one parameter and second has two parameters.

Both are valid in the code.

A database has a built-in capability to create, process and administer itself.

A.

True

B.

False

Answers

Answer:

false

Explanation:

________ is used to install and update software, backup, and restore mobile devices, wipe employer software and data from devices, report usage, and provide other mobile device management data.

Answers

Answer: MDM softwares

Explanation:

Here MDM refers to mobile device management software which provides people with the facilities of updating, installing creating backup of various mobile devices within an organisation. Moreover these software's provides tools for proper monitoring and to report their usage across various independent mobile device users. MDM is often used or interconnected with the term BYOD(Bring your own device), whereby employees of an organisation bring their own mobile devices and they are being managed by a MDM software centrally.

what is ucspi-tcp pakage in qmail??

Answers

Answer: UCSPI-TCP is the sort of domain for the public that helps in building the client-server application of TCP using the command line tool of UNIX TCP in qmail

Explanation: UCSPI-TCP is referred as the UNIX Client-Server Program Interface with the help of TCP (transfer control protocol) .It is usually used for the management of the IP (internet protocol) present on the server and checks which IP's should be permitted for the connection with SMTP(simple mail transfer protocol)services.It also manages the variable or the environment constant that IP want to utilize .

Write the following method to display three numbers in increaseing order:

public ststic void displaySortedNumbers(
double num1, double num2, double num3)

Answers

//Assuming your code is in C#
using System;
using System.Collections.Generic;
public static void displatSortedNumbers(double num1, double num2, double num3){
List list1 = new List {num1,num2,num3};
foreach( int g in list1 )
{
// Display sorted list
Console.WriteLine(g);
}
}

You use a ____ following the closing brace of an array initialization list.

a.
,

b.
.

c.
:

d.
;

Answers

Answer:

a.

,

Explanation:

The array is used to store the multiple data with  same data type.

Syntax for initialization of array:

type name[] = {data_1, data_2, data_3,....};

the comma ',' is used to separate the data with other data.

for example:

int array[] = {1,2,3,4,5};

we cannot used dot '.', colon ':' and semicolon ';' as separator.

Write a function called calculate() that accepts three integer Numbers as arguments, compute these values : Sum and Product and Return these computed results to the main program.

Answers

Answer:

int* calculate(int a,int b,int c){

   int result[] = {0,0};

   int sum = a+b+c;

   int product = a*b*c;

   result[0] = sum;

   result[1] = product;

   return result;

}

Explanation:

The function is a block of the statement which performs the special task.

The function can return one integer, not more than one integer.

If we want to return multiple values then, we can use array.

we store the result in the array and return that array to the main function.

This is the only possible way to return multiple values.

So, define the function with return type array and declare the array with zero value.

Then, calculate the values and store in the variable after that, assign to the array.

Finally, return that array.  

Please add thenodes given below to construct the AVL tree show all the necessarysteps,

30,33,37,18,23,34,15,38,40,17

Answers

Answer:

30,33,37,18,23,34,15,38,40,17

To construct the AVL tree, follow these steps and diagrams are shown in the image:

• Add 30 to the tree as the root node. Then add 33 as the right child because of 33 is greater than 30 and AVL tree is a binary search tree.

• Then add 37 as the right child of 33. Here the balance factor of node 30 becomes 0-2 = -2, unbalanced.

Use RR rotation, make node 33 the root node, 30 as the left child of 33 and 37 as the right child of 33.

• Now add 18 as the left child of 30. And 23 as the right child of 18. Here the balance factor of 30 becomes 2-0 = 2. It’s unbalanced.

Use LR rotation, make 23 the parent of 18 and 30.  

• Now add 34 as the left child of 37 and 15 as the left child of 18. Add 38 as the right child of 37. And then add 40 as the right child of 38.

• Now adding 17 as the right child of 15 makes the tree unbalanced at 18.

Use LR rotation, make 17 as the parent of 15 and 18.

Explanation:

The balance factor of a node can be either 0,1 or -1. Else the tree is called unbalanced at the node.

If the inserted node is in the left subtree of the left subtree of the unbalance node, then perform LL rotation.

If the inserted node is in the right subtree of the right subtree of the unbalance node, then perform RR rotation.

If the inserted node is in the left subtree of the right subtree of the unbalance node, then perform RL rotation.

If the inserted node is in the right subtree of the left subtree of the unbalance node, then perform LR rotation.

If you're adding an image to your report, you'll be working on the Layout Tools _______ tab.

A. Page Setup
B. Arrange
C. Design
D. Format

Answers

Answer:

the answer is design tab

Answer:

design

Explanation:

the address of the last cell of a memory RAM is 3FFFFh.a total capacity of the main memory and 4M bits and the data bus can transfer the contents of two memory cells , respond

a)which register the size of the memory address(MAR) ?

b)where the maximum number of cells that can be stored in memory?

c)which the cell size of this machine ?

d)which the size of the memory buffer register (MBR ) ?

Answers

Hey there!:

Given the address of the last cell of a memory RAM is 3FFFFh then   :

There are 8 bits in a byte  

1024 bytes in a kilobyte  

 so 8*1024= 8192  

 so 8192 bits in a kb  

 32*8192 = 262144  

there are 262144 bits in 32KB .

a) 32 bit address registers must match 2^32 byte = 4 GB of physical memory.

However, with 32 Bit you can also address more than 4 GB, like Physical Address Extension (PAE) does.

The other way is that you can access 4 GB with less than 32 bit address register.

____________________________________________________

b) Main Memory = 4M × 32Kbits, RAM chips = 32K × 4bit.

For this memory we require 4 × 2 = 8 RAM chips.

Each chip requires 18 address bits (ie. 218 = 256K).

And 1M × 8 bits requires 20 address bits (ie. 220 = 1M )

_____________________________________________________

c) The size of the storage cells is known as the word size for the computer.

In some computers, the word size is one byte while in other computers the word size is two, four, or even eight bytes. In our 4M main memory the size of cell is 4*2^20 bytes.

Each storage cell in main memory has a particular address which the computer can use for storing or retrieving data.  

______________________________________________________

d) The size of MBR is the 4M bits of main memory.

_____________________________________________________

Hope this helps!

What are the modes of operation of WLANs?

Answers

Answer:

WLAN's or Wireless LAN Units have 2 main modes of operation

Explanation:

The Two Main modes of Operation are the following

Infrastructure Mode: in this mode the main WLAN unit becomes the main connection point in which all devices are connected to and the main unit provides an internet connection to all the devices connected to it.

Ad Hoc Mode: in this mode devices transfer data from one another back and forth without permission from a base unit.

Some WLAN units will also include 2 extra modes of operation called Bridge and Wireless Distribution System (WDS).

Bridge Mode: this mode allows the base unit to act as an intermediary and bridge two different connection points. Such as bridging a wired connection with a wireless one.

WDS Mode: this mode uses various access points to wirelessly interconnect devices to the internet using repeaters to transmit connections. It can provide internet to both wired and wireless clients.

I hope this answered your question. If you have any more questions feel free to ask away at Brainly.

____ are systems in which queues of objects are waiting to be served by various servers

A.
Queuing networks

B.
Queuing systems

C.
Holding systems

Answers

Answer: Queuing systems

Explanation:

We have  the queuing theory which gives us the in depth knowledge of queuing systems which helps us to predict the queue length and the waiting time at the respective nodes in an network. A group of queuing systems together constitute the queuing network. The queuing theory helps to cope with the demand of various services in an queuing network composed of queuing systems.

rite a program that prompts the user to enter an integer and displays each of its numbers one by one.

Answers

Answer:

#include <iostream>

using namespace std;

int main()

{

   int num;

   cout<<"Enter the integer: ";

   cin>>num;

   

   while(num>0){

       

       int rem = num%10;

       cout<<rem<<endl;

       num = num/10;

       

   }

}

Explanation:

First include the library iostream in the c++ programming for input/output.

Then write the main function and declare the variable.

cout is used to display the message on the screen.

cin is used to store the value in the variable.

then used the while loop and put the condition num>0

after that, take the reminder of the number by using the operator modulus '%'.

and then print it on the screen.

after that reduce the number by one digit.

This process continue until the condition not failed.

Therefore, the all digits of the number will be printed.

Comparison between Sendmail vs. Qmail

Answers

Answer: Sendmail and Qmail are the mail transferring agents which carry out the process of sending the mail. they also have differences between them .

Explanation: Comparison between sendmail and Qmail are as follows:-

There is less security aspect in the sendmail as compared to the Qmail which was created to overcome this issue.Qmail has faster execution  and other features as compared with the sendmail.Sendmail is not highly reliable whereas Qmail has got a good reliability factor. Send mail has bigger components which make it complex and slow as compared with Qmail which has small component.

True of False - use T or F The Math class can be instantiated.

Answers

Answer:

F

Explanation:

The Math class cannot  be instantiated because it has a private constructor.

However all the methods in the java.lang.Math are static which means that you can invoke them directly without having to instantiate the class. For example:

static int abs(int a) defined in the Math class can be invoked from the calling function as:

int absolute_value = Math.abs(a);

Note that the class Math is also declared as final which means it cannot be extended by any other class as well.

TRUE FALSE 31. Using indentation can make our code much easler to read and debug.

Answers

Answer:

True

Explanation:

Indentation makes your code easier to read and debug by grouping related code.

Also, in some programming languages such as Python, indentation is necessary.  This is opposed to other programming languages such as JavaScript, where there are semicolons and other characters that end and separate lines of code.

What are the tripleconstraints?

a) Time, Schedule, and Cost

b) Time, quality and money

c) Time, money and WBS

d) Schedule, quantity and quality

Answers

Answer:

a) Time, Schedule, and Cost

Explanation:

Great question, it is always good to ask away and get rid of any doubts that you may be having.

The triple constraints are represented by a triangle whose sides are three a different aspects which represent a Quality Project when combined. These three aspects are Time, Schedule (Scope), and Cost. This  model has been used by companies since the 1950's, and is still widely used in today's companies.

I hope this answered your question. If you have any more questions feel free to ask away at Brainly.

What is wrong with the following program? #include //Line 1 namespace aaa //Line 2 { const int X = 0; //Line 3 double y; //Line 4 } using namespace std; //Line 5 int main() //Line 6 { y = 34.50; //Line 7 cout << "X = " << X << ", y = " << y << endl; //Line 8 return 0; //Line 9 }

Answers

Answer:

#include //Line 1

namespace aaa //Line 2

{ const int X = 0; //Line 3

double y; //Line 4

}

using namespace std; //Line 5

int main() //Line 6

{ y = 34.50; //Line 7

cout << "X = " << X << ", y = " << y << endl; //Line 8

return 0; //Line 9

}

In Line 1, No header file is present,so it will print output as cout and endl is not defined.

we should include <iostream> header file in line 1  

Lines 7 and 8 are incorrect.

X and y variables in aaa namespace are stated. So we can't use it any other namespace(std), but here y is initialized to 34.50 and x is printed in other namespace rather than stated.

Contrast and compare: an array, a stack, and a queue. Identify the principal uses of each and give an example.

Answers

Answer:

All three of them are linear Data Structures.

A stack is a FILO(First In Last Out) or LIFO(Last In First Out)  type data structure means first inserted element will be the last one to be removed form the stack.Insertion and Deletion is from one end only called head.

ex:-A stack of books on the shelf.

A queue is FIFO(First In First Out) type means the first inserted element will be the first one to be removed.In queue insertion is from the back or tail and removal of elements is done form the front.

ex:-A queue at the ticket counter.

In array each element stored is given an index, by which we can be access the element very easily. We can use this index to modify or store element at that index of the array. i.e any object can be accessed with the right index, unlike queue and stack.

We can access only the front and back in the queue.In stack we can access only the top but in array we can access any element with the index.

Other Questions
A, B, C, and D have the coordinates (-8, 1), (-2,4),(-3,-1) and (-6,5), respectively. Which sentence about the points is true?A. A, B, C, and D lie on the same lineB. AB and CD are perpendicular lines.c. Ag and are parallel lines.D. AB and CD are intersecting lines but are not perpendicular.E. AC and B are parallel lines. 20 POINTS!!!! PLEASE HELP ASAP!!! HELP!!!Some issues that Americans disputed in the 1800s are still controversial today. Which of the following continues to be an issue today and contributed to the divisions that caused the Civil War? A. Some people support states' rights, while others believe that the federal government should hold more power. B. Some people believe that the "mudsill theory" helps create a balanced society, while others believe that hurts the economy. C. Some people believe that the nation should have been divided into two countries, while others believe that each state should be independent. D. Some people believe that we need more railroads, while others believe that the Transcontinental Railroad created hardship for the country. What is the value of b in the equation below: 5^6/5^2=a^b Which equation is equivalent to 2^4x = 8^x-3?2^4x = 2^2x-32^4x = 2^2x-62^4x = 2^3x-32^4x = 2^3x-9 (1) + 5 (6) 5 = Bile from the liver emulsifies _____________. Using the discriminant, how many real solutions does the following quadraticequation have?x^2 - 8x + 16 = 0A. Three real solutionsB. No real solutions C. Two real solutionsD. One real solution The scientific principle which is the basis for balancing chemical equations is With 51 gallons of fuel in its tank, the airplane has a weight of 2390.7 pounds. What is the weight of the plane with 81 gallons of fuel in its tank? The slope is 5.7 As Jose was running down the road, he tripped and his left ankle twisted violently to the side. When he picked himself up, he was unable to put any weight on that ankle. The diagnosis was severe dislocation and sprains of the left ankle. The orthopedic surgeon stated that she would perform a closed reduction of the dislocation and attempt ligament repair by using arthroscopy. (a) Is the ankle joint normally a stable joint Round 20.155 to the nearest tenth what was the result of people convicted of crimes that could be legally forced to work Which automaker introduced the 3 point seatbelt? A scale model of a rectangle building lot measures 7 ft by 5ft. Id the actual house will be built using a scale factor of 12. What is the area of the actual building lot? Yo s que elegir una profesin no es fcil. Algunas personas saben desde la niez qu (1) quieren para el futuro, pero la mayora no lo sabe. Mi hermano estuvo diez aos en el mundo de los (2) y luego se dio cuenta (realized) de que quera ser (3) de teatro. Mi madre trabaj de (4) durante aos. Despus dej ese empleo y entr a la universidad a estudiar para ser (5) . Y t? Para cuando salgas de la escuela, tal vez ya (6) lo que quieres estudiar. Pero si no es el caso, tu padre y yo (7) a tu lado. This is a Fractions as division word problems. NEED HELP!! During the year, Carlton Company had net credit sales of $ 40 , 000. At the end of the year, before adjusting entries, the balance in Accounts Receivable was $ 15 , 000 (debit) and the balance in Allowance for Bad Debts was $ 670 (credit). If the company uses an income statement approach to estimate bad debts at 4%, what is the ending balance in the Allowance for Bad Debts account? Which sequence is modeled by the graph below? (1 point) coordinate plane showing the points 1, 5; 2, 0.5; and 3, 0.05 an = 5(10)n 1 an = 0.5(10)n 1 an = one tenth (5)n 1 an = 5( one tenth )n 1 If f(x)=2x^2+3x4, and g(x)=8x4, what does f(x)+g(x) equal?f(x)=2x^2+5x+8f(x)=2x^25x8f(x)=2x^2+11x8f(x)=2x^2+5x What are some terms that you use in your everyday life that are really hard to define, yet they're incredibly important and frequently used? How could you explain why undefined terms become so important when we start to write proofs in geometry?