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:
C
Explanation:
Putting all government forms on the city web site is the least activity likely to be effective in the purpose of reducing digital divide.
Holding basic computer classes at the community centers will very much help to reduce the digital divide.
Providing free wireless internet connections at locations in low-income neighborhood will also reduce the gap of digital divide
Requiring that every city school has computers that meet a minimum hardware and software will made computing resources available to users thereby reducing digital divide.
The answer is B because being victims of online abuse is not important
False. Credit cards usually have high interest rates if you don’t pay them off right away. The only way to benefit from a credit card is if you pay it off by the due date monthly.