Answer:
What is personal data
Explanation:
Personal data, also known as personal information or personally identifiable information, is any information related to an identifiable person.
Solution :
check_palindrome
lower_
_string
string
_lower()
Let stack = new Stack()
Let queue = new Queue();
for each character c in lower_case_string:
stack.push(c);
queue.enqueue(c);
let isPalindrome = true;
while queue is not empty {
if (queue.remove().equals(stack.pop())) {
continue;
} else {
isPalindrome=false;
break while loop;
}
}
return isPalindrome
Input = aabb
output = true
input =abcd
output = false
Answer:
// program in java.
import java.util.*;
// class definition
class Main
{// main method of the class
public static void main (String[] args) throws java.lang.Exception
{
try{
// object to read input
Scanner scr=new Scanner(System.in);
// ask to enter name
System.out.print("Enter Your name: ");
// read name from user
String NAME=scr.nextLine();
// print message
System.out.println("Greetings,"+NAME);
}catch(Exception ex){
return;}
}
}
Explanation:
Read name from user with the help of scanner object and assign it to variable "NAME".Then print a Greetings message as "Greetings,NAME" where NAME will be replaced with user's input name.
Output:
Enter Your name: Rachel
Greetings,Rachel
Answer:
A. AWS
Explanation:
Amazon Web Services AWS -
It is one of the subsidiary of the Amazon , which enables various functions like , API's , on - demand cloud computing platform , on the metered pay - as - you - go basis .
It helps to have a virtual computing services at any time and helps to provide all the services a real computer can offer , with the similar efficiency .
One of the service is the Amazon Elastic Compute Cloud .
The technology is very convenient and efficient in its service and hence is used by various people , in companies , restaurants etc.
Hence , from the given scenario of the question ,
The correct answer is A. Amazon Web Services AWS .
Answer:
a; circuit-switched network.
b; No, it does not need congestion control.
Explanation:
For A;
A circuit-switched network is a better option for this application. This is because of the fact that the application is made up of long sessions with smooth data transfer capacity needs.
The transmission rate is known, and does not transmit in short intervals(short signals), every application session can have a bandwidth reserved without significant bandwidth wastage.
Also, the overhead expenses of setting up and tearing down connections are canceled out over the extensive period of running an application session.
For B;
If the packet-switched network is used, and traffic in the network comes from the said application. Even if every applications transmit one or more network connections. Still, we already know that every connection has enough transmission capacity to handle majority of the application data rates, no congestion(insignificant queuing) will happen.
This goes to say that no congestion control will be needed given such broad-based connection.