Answer:
Encapsulation
Explanation:
There are seven layers in the OSI network model. These layers are, application, presentation, session, transport, network, data-link and physical layer.
Each layer of the OSI model has a PDU or protocol data unit. These PDUs are form by encapsulation.
The application, presentation and session data. When it moves to the transport layer, it is encapsulated within the transport header. This new pdu is called segment.
This process continues in network and data-link to give packet and frame PDUs respectively.
Answer:
Reference
Explanation:
The Reference type variable is such type of variable in C# that holds the reference of memory address instead of value. Examples for reference type are classes, interfaces, delegates and arrays.
We can pass parameters to the method by reference using <em>ref </em>keyword
It’s mandatory to initialize the variable value before we pass it as an argument to the method in c#
For example,
int x = 10; // Variable need to be initialized
Add(ref x); // method call
If you pass parameters by reference in method definition, any changes made to it affect the other variable in method call.
Here's a sample program:
using System;
namespace ConsoleApplication
{
public class Test
{
public static void Main()
{
int i = 10;
Console.WriteLine("i=" + i);
Add(ref i);
Console.WriteLine("i=" + i);
Console.ReadLine();
}
public static void Add( ref int j)
{
j = j + 10;
Console.WriteLine("j="+j);
}
}
}
Output:
i=10
j=20
i=20
Answer:
Click the File tab. Click Save As. Choose a file location, such as OneDrive or This PC to store your file.
Explanation:
click the File tab. Click Save As. Choose a file location, such as OneDrive or This PC to store your file. In the File name box, enter a new name for the file. In the Save as type list, click the file
Answer:
A. Click on the Function Library group and select a function from the drop-down menu.
B. Click on the Function Library group and Insert Function.
E. Type = into any cell.
F. Click on the formula bar above the cells.
Answer: Option (4) is correct.
Explanation:
Object-oriented analysis is referred to as an approach in technical world which is popular for analyzing and also designing an app, system, or organization by applying OOPs or object-oriented programming, also making use of visual modeling in order to cater better stakeholder communication and commodity quality.