Answer:
The answer is below
Explanation:
Aritifiaicla intelligence in art is an artwork created by the application of artificial intelligence software.
Some of the pros of artificial intelligence in the art are:
1. It creates a new and improved interface, specifically in graphic design such as virtual reality and 3D printing
2. It creates and mixes the artistic ideas properly, such as mixing of different instruments in music to creates a new sound
3. It establishes graphical and visual display with no blemishes o,r error when applied accordingly, such as AUTOCAD
The cons of artificial intelligence in art are:
1. Artificial Intelligence lacks emotional sense. Hence it is challenging to display artistic elements that portray genuine emotions
2. It lacks creativity. Unlike humans, artificial intelligence is not as creative as humans when it comes to words or sentence constructions in an artistic sense.
3. It doesn't apply experience to its productions. Arts can be improved with more understanding of what is happening in the society or environment; artificial intelligence cannot translate its experience into arts formation.
Answer:
while (Num>=0) {
System.out.println("enter a another number");
Num = in.nextInt();
}
Explanation:
The complete java code prompting a user to enter a number until a negative number is entered is given below:
import java.util.Scanner;
public class num6 {
public static void main (String [] args) {
Scanner in = new Scanner(System.in);
System.out.println("enter a number");
int Num = in.nextInt();
while (Num>=0) {
System.out.println("enter a another number");
Num = in.nextInt();
}
System.out.println("Done.");
return;
}
}
Most likely a virus has attacked the system and is disabling encryption is the most likely problem.
c. Most likely a virus has attacked the system and is disabling encryption.
<u>Explanation:</u>
The end users can protect the folder by enabling encrypt the folder or files. But in windows encrypting the file or folder is not available. The computer management console is used to open all other services such as risk management, performance management extra.
In some other operating encryption of folder or files is allowed. Third-party software is available to protect folder or files once the third party used any files possible to share outside the world.
As far as my knowledge there is encrypting technology is available in the windows operating system.
Well you can start by getting a app called CM Security Master....it frees junk files and stops viruses, etc.. If you want execive space get a SanDisk (SD) card with how ever much space you want.
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