Answer:
B
Explanation:
FROM STATISTICS ON TWITTER IT WAS 465MILLION USERS
The picture that graphically represents the times you use in windows is called an icon ( this is true for windows 7, assuming that was what you were referring to. I am not familiar with windows 8)
Answer:
Video files are not MP3s, but some MP3 players can also play video files
Explanation:
Video files are not related to MP3s, that is MP4
Answer: wireframe
Explanation:
Wireframe is a flowchart illustrating the site structure of a website. A website wireframe shows the website's skeletal framework.
It should be noted that the wireframe shows the arrangement or the page layout for the content of the website which includes the navigational systems and the interface elements and how they both combine to work together.
Answer:
See explaination
Explanation:
StackExample.java
public class StackExample<T> {
private final static int DEFAULT_CAPACITY = 100;
private int top;
private T[] stack = (T[])(new Object[DEFAULT_CAPACITY]);
/**
* Returns a reference to the element at the top of this stack.
* The element is not removed from the stack.
* atreturn element on top of stack
* atthrows EmptyCollectionException if stack is empty
*/
public T peek() throws EmptyCollectionException
{
if (isEmpty())
throw new EmptyCollectionException("stack");
return stack[top-1];
}
/**
* Returns true if this stack is empty and false otherwise.
* atreturn true if this stack is empty
*/
public boolean isEmpty()
{
return top < 0;
}
}
//please replace "at" with the at symbol
Note:
peek() method will always pick the first element from stack. While calling peek() method when stack is empty then it will throw stack underflow error. Since peek() method will always look for first element ffrom stack there is no chance for overflow of stack. So overflow error checking is not required. In above program we handled underflow error in peek() method by checking whether stack is an empty or not.