Explanation:
The given question statement has been referenced from c h12_Osscan.pcapng document
The answers to the questions are;
Q1_Answer ; The host name that has been resolved is win7_03
Q2_Answer ; The likely IPv6 address of the attacker is 10.1.0.103
Q3_Answer ; The likely IPv6 address of the attacker is 10.1.0.102
Q4_Answer ; According to the document, it has been mentioned that the IP's stated above have been the top talkers meaning that there was significant communication or exchange of information between them
Answer:
I'm not exactly sure on what the question is, but from reading it, I determined that you'll be creating 2 different designs using Inkscape/Photoshop. I'm leaving 2 of my designs in here for you to use on your project. Unknown on what to do about the design that wasn't created in an image-editing program.
b.What would the time be at 3 M bits/sec, a representative of download speed of a DSL connection?
(c) Repeat a and b when the image is RGB colored with 8 bits for each primary color. f 20 colored frames per second
Answer: a) 0,19 seg. b) 3,2 seg. c) 11,5 seg. d) 192 seg.
Explanation:
a) For each pixel in the image, we use 8 bits + 1 start bit + 1 stop bit= 10 bits.
b) If the modem speed changes to 3 Mb/s, all we need to do is just use the same equality, as follows:
c) Now, if we need to transmit a colored image , at a rate of 20 f/sec, we need to calculate first how many bits we need to transmit, as follows:
d) Same as c) replacing 50 Mb/s by 3 Mb/s, as follows:
The time that's required to transmit an image of 1200x800 pixels with 8 bits for gray is 151.6 million seconds.
The time required to transmit an image of 1200x800 pixels with 8 bits for gray will be:
= (1200 × 800 × 8) / 50
= 151.6 million seconds.
The time needed to be at 3 M bits/sec, a representative of download speed of a DSL connection will be:
= 7.68/3
= 2.56 seconds.
Learn more about time on:
Answer:
True
Explanation:
SQL stands for structured query language , which is used to query Relational Database Management systems like SQLServer. This is not for writing applications like business layer where we use some programming languages.SQL is meant for data layer to perform CRUD operations against database.
CRUD operations :
Create
Read
Update
Delete
we can perform above operations on database by using SQL query language
Answer:
import java.util.Scanner;
public class num12 {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
System.out.println("Enter the first String");
String word1 = in.nextLine();
System.out.println("Enter the second String");
String word2 = in.nextLine();
System.out.println("Enter the third String");
String word3 = in.nextLine();
//Remove all white spaces
String cword1 = word1.replace(" ","");
String cword2 = word2.replace(" ","");
String cword3 = word3.replace(" ","");
//Comparing the string by their lengths
if(cword1.length()>cword2.length()&&cword1.length()>cword3.length()){
System.out.println(word1+" Is the longest");
}
else if(cword2.length()>cword1.length()&&cword2.length()>cword3.length()){
System.out.println(word2+" Is the longest");
}
else{
System.out.println(cword3+" Is the longest");
}
}
}
Explanation:
Using Java Programming Language
Use the Scanner Class to obtain the String values from the user
Save them in different variables
Use the replace() method in java to remove white space from any of the string entered
Using if and else statements compare the lengths of the strings (word.length()) returns the length of the word.
Print out the word that is longest
NOTE I have compared three Strings, comparing two would have been more straigth forward
A String variable named sentence that has been initialized, write an expression whose value is the number of characters in the String referred to by sentence. Python: sentence = “this is the sentence.” size = lens (sentence), C++: string sentence = “this is the sentence.” int size = sentence.
Python is an programming language with the integration of dynamic semantics for web and app development, extremely attractive in the field of Rapid Application Development.
Python is simple in comparison to other language program, so it’s easy to learn and understand well; it needs a unique syntax which is mainly focus on readability.
Developers can read and translate Python code in a easy way, than other languages and reduces the cost of program maintenance and development.
For more details regarding python, here
#SPJ2