Answer:
The answer to this question is given below in the explanation section
Explanation:
Scrum Board is a tool that is used by the scrum teams to view the product backlog. The Scrum task board makes the sprint backlog visible for the team.
In the Scrum board, prioritizing the issue backlog is done in the Current View mode.
However, it is noted that in Scrum board there are two view modes (Tree view mode and List view mode) for the issues in the backlog. The issues that are prioritized is listed in the current view mode.
Answer:
When you move or size a control in the Form Designer, Visual Studio automatically adjusts the properties that specify the location and size of the control.
Here is the JAVA program to find smallest distance between 2 neighboring numbers in an array.
import java.lang.Math; // for importing Math class functions
import java.util.Scanner; // for importing Scanner class
public class CalSmallestDistance // class to calculate smallest distance
{public static void main(String[] args) { // to enter java program
Scanner s = new Scanner(System.in); //creating scanner object
int size; // size of the array
System.out.print("Enter size of the array:"); //prompts to enter array size
size = s.nextInt(); // reads input
int arr[] = new int[size]; // array named arr[]
//line below prompts to enter elements in the array System.out.println("Enter numbers in the array:");
for(int j = 0; j < size; j++) //loops through the array
{arr[j] = s.nextInt(); } //reads the input elements
int smallest_distance = Math.abs(arr[0]-arr[1]);
int position= 0; //index of the array
for(int i=1; i<arr.length-1; i++){
int distance= Math.abs(arr[i]-arr[i+1]);
if(distance< smallest_distance){
smallest_distance= distance;
position = i; } }
System.out.println("Smallest distance is :"+smallest_distance);
System.out.println("The numbers are :"+arr[position]+ " and " +arr[position+1]); } }
I have stated the minor explanation of some basic lines of code as comments in the code given above.
Now i will give the detailed explanation about the working of the main part of the code.
Lets start from here
int smallest_distance = Math.abs(arr[0]-arr[1]);
In this statement the array element at 0 index (1st position) and the array element at 1 index (2nd position) of the array are subtracted.
Then i used the math.abs() method here which gives absolute value
Lets say the distance between 3 and 5 is -2 as 3-5 equals to -2. But the math.abs() method will return 2 instead of -2.
Now the subtraction of two array elements and absolute value (if subtraction result is negative) will be assigned to variable smallest_distance.
for(int i=1; i<arr.length-1; i++)
This is for loop. Variable i is positioned to the 1 index of the array (arr) (it is pointing to the second element of the array). It will move through the array until the end of the array is reached i.e. the loop will continue till value of i remains less than the length of the array.
Now at the start of the loop body the following statement is encountered
int distance= Math.abs(arr[i]-arr[i+1]);
This subtracts the array element at i th position and array element at i th +1 position (means one position ahead of array element at i th position). In simple words two neighboring numbers in an array are being subtracted and Math.abs() method is used to give absolute value. The result of this operation is assigned to distance variable.
if(distance< smallest_distance)
This if statement checks if the value in distance variable is smallest than the value of smallest_distance variable which was previously calculated before calculating the value for distance variable.
If this condition is true then the following statements are executed:
smallest_distance= distance;
if distance value is less than value in smallest_distance, then the value of distance is assigned to smallest_distance.
this means the smallest_distance will keep on storing the smallest distance between two neighboring numbers.
Next the value of variable i that is pointing to the 1st index of the array is now assigned to the position variable.
position = i;
It will keep assigning the value of i to position variable so at the end of the program we can get the positions of the two neighboring numbers that have the smallest distance between them.
Then the value of i is incremented and moves one place ahead in the array.
Then the 2nd iteration takes place and again checks if i pointer variable has reached the end of the array. If not the loop body will continue to execute in which the distance between the two neighboring numbers is calculated and shortest distance is stored in smallest_distance.
When i reaches the end of the array the loop will break and the smallest distance between two neighboring numbers in the array have been stored in the smallest_distance variable.
Finally the statement System.out.println("Smallest distance is :"+smallest_distance); displays the shortest distance and the statement System.out.println("The numbers are :"+arr[position]+ " and " +arr[position+1]); displays the array index positions at which the two neighboring numbers have the smallest distance.
Answer:
PING
Explanation:
To check if there's still connectivity between the computer and server, I would use the ping command.
The ping command is primarily a TCP/IP command. What this command does is to troubleshoot shoot. It troubleshoots connection and reachability. This command also does the work of testing the name of the computer and also its IP address.
Answer: No
Explanation: Spread spectrum transmission is the wireless transmission technique for the wide channel that helps in decrement of the potential interference.The transmission of signal is based on the varying the frequency knowingly to achieve larger bandwidth.
The use of spread spectrum transmission in the WLAN(wireless local area network)is used for the regulatory purpose The regulation is the controlling of the area through policies.Thus,security is not the service that is provided to WLAN by spread spectrum transmission.
3. You enjoy technical matters, have a background in computer science and enjoy coding and playing video games in your free time. Which video game industry job would best match your profile?
a. Game tester
b. Producer
c. Programmer
d. Video game artist
6. Which of the following is an essential skill for game testers?
a. Thorough understanding of Java and C++
b. Technical drawing
c. Technical writing
d. Project management
9. Which of the following skills is the most important when applying for a game artist job?
a. Degree in arts
b. Strong art portfolio
c. Previous game testing experience
d, knowledge of scripting and codeing
10. The Stencyl program is recommended for ______.
a. creating 2D games
b. creating 3D games
c. Starting to learn to program
d. creating gaming art
11. You are passionate about video games, have spent part of your life in different countries and are fluent in their languages. You are considering looking for a job in video games. Which of the following jobs could you be qualified for, considering your skills and experience?
a. Game programming with a focus on languages
b. Translation
c. Game localization
d. Cultural gaming
12. Because it is one of the main programming languages used in some of the most popular game engines in the industry, which programming language does the author of the textbook recommend learning first?
a. Java
b. C Sharp
c. C++
d. SQL
13. Which of the following statements is NOT true about internships?
a. internships offer great opportunity to create and build connections within the industry.
b. Internships lead to a job offer upon successful completion
c. Internships offer an opportunity to get first-hand experience of the industry
d. Internships can be paid or unpaid
15. What is the best approach to take if you have not heard back from a company after applying for a job?
a. Wait, sometimes it takes time to process application and impatience can give a bad impression
b. Visit the company site personally to inquire about the status of your application
c. Try to find out on which side the process may be stalling and take appropriate steps to get the process moving forward, when possible
d. Reapply
18. You are applying for a game programmer job at a reputable gaming company. Your application may stand the best chance of being noticed if you include which of the following in your application?
a. List of all degrees and courses you have taken to acquire and hone your programming skills
b. Portfolio including samples of codes you have created
c. Portfolio including playable video game demo.
d. Portfolio of your artwork.
19. Which of the following is the most important item to include in your CV?
a. All gaming projects you have worked on, paid or unpaid.
b. Extracurricular activities related to gaming.
c. Major accomplishments
d. Short samples of code or technical writing samples.
20. Which of the following job hunting practices is the least effective?
a. Posting CV on job boards.
b. Searching for jobs on job posting sites
c. Doing an internship
d. Applying for a specific job posting via company website
Answer:
C, C, B, C, C, B, B or D, D, A or C, A, D
Explanation:
I am not taking whatever course you are taking, but I would like to know what you're taking. I have only answered the questions to the best of my abilities, so they might be wrong. Next time please award more points for a question so long.