Answer:
MATLAB code is given below
Explanation:
% Define the function.
function [ output_args] = removeEvens( input_args)
%UNTITLED Summary of this function goes here
% Detailed explanation goes here
%Remove the even number from the array using mod function.
output_args = input_args (mod(input_args,2)~=0);
%Display the message.
disp('odd Values are');
%Display the results.
disp(output_args);
%Terminate the function.
end
Function Call:
%Function Call
inputRowArray = [1,2,3,4,5]
removeEvens(inputRowArray)
Answer:
a, c, and d.
Explanation:
Let's examine these options:
a -> Spamming can be used to obtain information about the individuals. Those emails can contain links that try to reveal your sensitive information. They can also contain viruses directly like in the some attached folder. Another usage of spamming is just to advertise some products.
c -> Spam emails are not something you requested for. They are just sent to email addresses in huge amounts.
d -> As mentioned earlier, they can be used to obtain personal information like password, credit card information.
Answer:
so that their username will still be used and so the can renember the username
Explanation:
that is why
Answer:
import java.util.Scanner;
import java.lang.*;
class Main
{
public static void main(String args[])
{
int n;
//For capturing the value of n
Scanner scanner = new Scanner(System.in);
System.out.println("Enter the value of n:");
//The entered value is stored in the var n
n = scanner.nextInt();
int k=1;
printnum(n,k);
}
public static void printnum(int n,int k)
{
if(n%2==0)
{
for(int i=k;i<=n-1;i=i+2)
{
System.out.print(i);
}
System.out.println("");
}
else
{
for(int i=k;i<=n-1;i=i+2)
{
System.out.print(i);
}
System.out.println("");
}
n--;
if(n<=1)
{
System.exit(0);
}
else
{
printnum(n,k+1);
}
}
}
Explanation:
The program is self explanatory.
Answer:
Tags can be identified as they are written as <tagname> Something </tagname>
<tagname> this tag is called start tag.
</tagname> this tag is called as end tag.
for ex:<p> This is a paragraph </p>
There are some elements with no end tag.for ex:- <br> tag.
Attributes are used to provide additional information to an HTML element.
Every element can have attributes.
for Ex:- <h1 style="background-color:red";>MY WEBSITE </h1>
So the background of h1 will become red.