Answer:
The correct option for the following question is option(b) i.e CREATE DATABASE game_data;
Explanation:
The CREATE command is used to create the database in MySQL .The syntax for creating a database is given as
Create database database name ;
Here database name is game_data
So the query is CREATE DATABASE game_data;
Insert command is used for inserting the value into database not for creating the database .so option(a) is wrong .
MAKE and NEW are not any command so these both the option are wrong.
Therefore the correct answer is option(b);
Answer:
The ability to provide data transmission even when some connections
between routers have failed
Answer:
<em>import java.util.Scanner;</em>
<em>public class ANot {</em>
<em> public static void main(String[] args) {</em>
<em> Scanner in = new Scanner(System.in);</em>
<em> System.out.println("Please enter a string of words");</em>
<em> String n = in.nextLine();</em>
<em> int count = 0;</em>
<em> for (int i=0; i<n.length(); i++){</em>
<em> if((n.charAt(i) != '.') &&(n.charAt(i) != ',') && (n.charAt(i) != ' ')){</em>
<em> count++;</em>
<em> }</em>
<em> }</em>
<em> System.out.println(count);</em>
<em> }</em>
<em>}</em>
Explanation:
- Prompt User to input the string and assign to a variable
- SET count =0.
- Using a for loop iterate over the string
- if((n.charAt(i) != '.') &&(n.charAt(i) != ',') && (n.charAt(i) != ' ')) then count =count +1.
- PRINT count.
Answer:
Spamming refers to the practice of flooding the inboxes with an unsolicited emails addressed to hundreds or thousands of recipients in an attempt to force the message on people who would not otherwise choose to receive it. It has also been called "junk e-mail". hope that helps
Explanation: