Answer:
New Trends in GPS & Telematics in 2021 and Beyond - Rewire Security. Real-time location tracking systems for cars, vans, motorcycles, lorries, wired or plug & play options—battery-powered GPS tracking systems with magnets attached to flat metal surfaces such as containers.
Explanation:
if a user watches a video with event tracking three times in a single session, analytics will count how many unique events?
Answer:
1
Explanation:
Analytics will count it a One (‘1’) Unique Event, even if a user watches a video with event tracking three times but in a single session.
Who completes the action item form in a team meeting
Time keeper
Scribe
Recorder
Team leader
Gate keeper
Answer:
Recorder
Hope this helped! I'm not 100% if this answer is correct, though
Recorder completes the action item form in a team meeting. Thus, option C is correct.
Who is a Team Leader?Team Leader refers to a person that is in charge of a group of people and helps them to achieve a common goal. Please note that your question is incomplete so I gave you a general overview to help you get a better understanding of the concept.
A team leader can be found in the army as a General, in business industries, and even a president can be referred to as a team leader.The Gate Keeper is typically a role that is assigned to a person who is responsible for ensuring that the meeting runs smoothly and productively.
The Gate Keeper's primary responsibility is to manage the flow of information and ensure that all participants have an opportunity to contribute and that the meeting stays on track.
Therefore, Recorder completes the action item form in a team meeting. Thus, option C is correct.
Learn more about Recorder on:
https://brainly.com/question/31388398
#SPJ2
If I want to make it look like slide number one is turning a page to slide number two, what
effect needs to be applied?
Answer:
Im not certain but I think thwir is one called flip
Explanation:
Kind of works like a book if thats what your asking for
Allan needs to ensure that an object is in a very precise location on a slide. He decides to use the Ruler option to achieve this. On which tab is the Ruler option found?
Based on the above scenario, the tab that is where one can find the Ruler option is the View tab.
On which tab is the ruler option Seen?One can see the ruler option in the View tab that is in the tool bar at the top of the slide screen. Then look for the Ruler option in the Show group.
Therefore, Based on the above scenario, the tab that is where one can find the Ruler option is the View tab.
Learn more about Ruler option from
https://brainly.com/question/16399272
#SPJ1
You have purchased a new LED monitor for your computer. On the back of the monitor, you see the following port (pictured below). Which type of cable should you use to connect the monitor to your computer
Help me with this question asap please :)
Answer:
I think it's sequence as there is a pattern of connection in the words
Write a code snippet that asks the user to enter a name and a major repeatedly one at a time and creates a dictionary with keys corresponding to names and values corresponding to majors. Your code should include: d
The code snippet is an illustration of dictionary;
Dictionary are used to hold values in pairs i.e. data and key pairs
The code snippetThe program written in Python, where comments are used to explain each line is as follows:
#This gets the number of inputs
n = int(input("Number of inputs:"))
#This creates a dictionary
d = {}
#This iterates from 0 to n-1
for i in range(n):
#This gets the keys i.e. names
keys = input()
#This gets the values i.e. majors
values = input()
#This populates the dictionary
d[keys] = values
#This prints the dictionary
print(d)
Read more about Python programs at:
https://brainly.com/question/26497128
Create a program in writecustomerlist. java that allows a user to input customer records (id number, first name, last name, and balance owed) and save each record to a file named customerlist. txt. have the program accept input until zzz is input for the id number. write the records to customerlist. txt in csv format, for example:
101,john,smith,107. 5
41,jill,green,20. 0
when you execute the program, be sure to enter multiple records that have the same last name because you will search for repeated last names in part 4 of this exercise.
write an application named displaysavedcustomerlist. java that reads the file created by the writecustomerlist application and displays the records.
write an application named displayselectedcustomer. java that allows you to enter any id number, reads the customer data file created in step 1, and displays the data for the customer. display the message no records found if the id number cannot be found in the input file.
write an application named displayselectedcustomersbyname. java that allows you to enter any last name and displays all the data for customers with the given last name. display the message no records found if the name cannot be found in the input file.
write an application named displayselectedcustomersbybalance. java that allows you to enter any purchase amount and displays all the data for customers with balances greater than the entered value. display the message no records found if no customers meet the criteria
Using the knowledge in computational language in JAVA, this code can be written as:
Writing code in JAVA:public String toString() {
return this.firstName+" " + this.lastName ;
}
System.out.println("Enter First Name: ");
String firstName = input.nextLine();
System.out.println("Enter Last Name: ");
String lastName = input.nextLine();
System.out.println("Enter Home Address: ");
String homeAddress = input.nextLine();
Customer cus = new Customer(firstName, lastName, homeAddress);
System.out.println("\nWelcome: ");
System.out.print(cus.getFirstName() + cus.getLastName());
System.out.println("\n Your Shipping Address: ");
System.out.print(cus.getHomeShippingAddress());
List<Customer> customer = new ArrayList<Customer>();
customer.add(cus);
printList(customer);
}
public static void printList(List<Customer> list) {
System.out.println("Customers: ");
for (Customer customer : list) {
System.out.printf("%s", customer);
}
System.out.println();
}
This JAVA code describes a program in writecustomerlist. java that allows a user to input customer records.
See more about JAVA at brainly.com/question/12975450
#SPJ1
What is an example of using the internet of things (iot) to deliver innovative cloud-based solutions to customers?
Answer:
Wearable technology
Explanation:
An example of using the Internet of Things (IoT) to deliver innovative cloud-based solutions to customers is the wearable technology that provides customers with on-the-spot personalized experiences.
What initialization vector (IV) do most weak implementations of the Wireless Equivalency Protocol (WEP) use
24 bits is an initialization vector (IV) which is used by most weak implementations of the Wireless Equivalency Protocol (WEP).
What is Wireless Equivalency Protocol (WEP)?Wireless Equivalency Protocol (WEP) can be defined as a standard wireless protocol that is designed and developed to provide a significant level of security and privacy on 802.11b wireless local area network (WLAN).
According to the IEEE Wireless Fidelity (Wi-Fi) standard, 24 bits is an initialization vector (IV) which is used by most weak implementations of the Wireless Equivalency Protocol (WEP).
Read more on Wireless Equivalency Protocol here: https://brainly.com/question/13697151
#SPJ1
When analyzing an image, you should consider composition, lighting, and
O A. sound
OB. captions
OC. quantity
OD. color
Answer:
Color
Explanation:
I think it's relatively self-explanatory. An image does not have sound, and neither captions nor quantity matter with analyzation
A UNIX or Linux system might identify a file as: /usr/imfst/flynn/inventory.doc. The first entry is a forward slash ( / ) representing the master directory, called the ____ directory. a.root b.working c.main d.branch
Answer:
C
i cant give you an explaination on why it is like that but C sounds and seems the correct one
Your client has acquired several small companies and would like to connect them together into one network. Not all of the routers are Cisco devices, and compatibility is a concern. Which WAN encapsulation method should you recommend your client use
Answer:
Extranet
Explanation:
Allows connection to other companies in a controlled manner.Provides access to Internet. permits workers to access information at any time.PLEASE HELP! ITS A COMPUTER MCQ
The character that is displayed at the end of the code for continuation.
a. :
b. ;
c. .
d. ,
Answer:
b. ;
Explanation:
PLEASE MARK ME AS BRAINLIEST
what are project scope requirements?
Explanation:
Defining project scope requires input from the project stakeholders. They work with project managers to establish the key elements of budget, objectives, quality and timeline. To determine scope, project managers must collect requirements for what the stakeholders need from the project.
Answer:
The project scope outlines all the work required to deliver a project.
Explanation:
as well as any factors that define project sucess.
Which of the following indicate a problem with the laptop battery? • The laptop running slowly • Some applications will not run ● The laptop gets switched off when mains switch is off The laptop doesn't boot ●
Answer:
The correct answer would be D, (or the last one).
The option that indicate a problem with the laptop battery is the laptop gets switched off when mains switch is off.
What causes a laptop not to switch on?The main reason is that the laptop has a faulty power supply or when the battery is faulty or there is a failed hardware.
Note that The option that indicate a problem with the laptop battery is the laptop gets switched off when mains switch is off.
Learn more about laptop from
https://brainly.com/question/16045385
#SPJ2
In what ways can information be slanted in a news report?
Answer:It all depends on who the reader is likely to be and the information they’ll want.
Explanation:
Newspaper 1: Company wins contract
Newspaper 2: Previous company loses contract (equally true)
Newspaper 3, say a student paper in the local town: Prospects for new jobs open up as company wins contract.
Creating a map of your current knowledge is called __________. a. critical reading c. pre-questioning b. collaborative learning d. concept-mapping please select the best answer from the choices provided a b c d
Creating a map of your current knowledge is called Concept-mapping. Check more about Concept-mapping below.
What is concept mapping?Concept maps are known to be visual depiction of information or human knowledge. They can be shown on a charts, graphic organizers, etc.
Therefore, Creating a map of your current knowledge is called Concept-mapping as it involves bringing out one's intellectual.
Learn more about knowledge from
https://brainly.com/question/24621985
#SPJ4
Identifying correction services tasks
what are some tasks commonly performed in correction services jobs? check all that apply.
interviewing law offenders
using weapons, handcuffs, and other tools to control prisoners
transporting people who are sick or injured to hospitals
maintaining order and security in a courtroom
searching prisoners and their belongings
o providing legal advice to inmates
o guarding and counting inmates
The correction services tasks are:
The using of weapons, handcuffs, and other tools to control prisonersTransporting people who are sick or injured to hospitalsGuarding and counting inmates.What is the role of the corrections?Corrections is known to be the aspect of criminal justice system that helps to handle individuals who have been found to have done or committed a crime.
Note therefore, that the correction services tasks are:
The using of weapons, handcuffs, and other tools to control prisonersTransporting people who are sick or injured to hospitalsGuarding and counting inmates.Learn more about correction services from
https://brainly.com/question/6705028
#SPJ1
Answer:
a.b.e.g
Explanation:
Sum of Two Numbers: Write a program that stores the integers 50 and 100 in variables and stores the sum of these two in a variable named total. Display the total on the screen.
Answer:
fifty = 50 #variable to store 50
hundred = 100 #variable to store 100
total = fifty + hundred #add the two in a variable named total
print(total) #display on screen
What are the real-life applications of coding?
Some example's of coding affecting real life:
Traffic LightsBiometric SecurityRobots used in factories. can work in extreme conditions.Automatic Heater or Air Conditioner.Expert Systems used in for Medical Use.Smart Self Driving CarsTypes in java are divided into two categories. the primitive types are boolean, byte, char, short, int, long, float and double. all other types are ________ types
6. After you add the printer, you need to install a utility software that allows the computer to communicate with the printer so that you can control print jobs. What is this software called
Answer:
Printer Driver
Explanation:
a printer driver or a print processor is a piece of software on a computer that converts the data to be printed to a format that a printer can understand.
How do we distinguish between remote and local information sources? give an example of each source? i'll give brainliest answer for who every answer it right
A local server means that you have a server setup on your current machine. A remote server is ran on a different machine
Write a program that calculates the amount of money a person would earn over a period of time if his or her salary is on one penny the first day, two pennies the second day and continues to double each day. The program should ask the user for the number of days. Display a table showing what the salary was for each day, then show the total pay at the end of the period. The output should bd displayed in a dollar amount, not the number of pennies. Must use for loop statement. Need to check the input value is correct, otherwise an error message is displayed. Display a nicely formatted table. Display the salary in dollar and cents
The program that calculates the amount of money a person would earn over a period of time if his or her salary as well as other factors inclusive is written below.
What is the program about?The raw form of the program is:
#include <iostream>
using namespace std;
int main(){
const int increment=2;
int day;
float penny=.01,
total=0.0;
cout <<"How many days have you worked? ";
cin >>day;
while (day<1){
cout<<"The number must be greater than 1.\n";
cout<<"Enter again: ";
cin >> day;
}
for (int i=1; i<=day;i++){
total+=penny;
cout <<" Day "<< i <<" "<< " $"<<penny<<endl;
penny*=increment;
}
cout<<"Total salary for "<<day <<" days = $" <<total<<endl;
Learn more about program from
https://brainly.com/question/23275071
#SPJ1
Mille gets a text from her friend asking if she wants to come over. It seems like a bit of a hassle to go to her friend's house, especially when they
could watch online videos together and talk over the phone. What is the BEST advice for Millie?
OA. Her friend will probably be relieved If she does not come over.
OB. They should just say whatever they want to say to each other over social media.
OC. It will be a more positive experience if she spends time with her friend in person.
OD. If they are doing the same activities virtually as they would if they were together, it does not make much difference.
Answer:
OC. It will be a more positive experience if she spends time with her friend in person.
Explanation:
You should always spend time with people in person rather than online whenever you get the chance.
What words are familiar to people involved with computers? printer network, mouse and monitor screen software
The words that are familiar to people involved with computers are network, mouse and monitor screen.
What is a computer?A computer simply refers to an electronic device that is designed and developed to receive data in its raw form as an input and processes these data into an output (information), which could be used by an end user to perform a specific task through the use of the following:
KeyboardNetworkMonitor screenMouseIn Computer technology, we can logically infer that network, mouse and monitor screen are the words that are familiar to people involved with computers.
Read more on computer here: brainly.com/question/959479
#SPJ4
Answer:
B
Explanation:
network, mouse and monitor
As a network administrator of your company, you have decided to implement redundant connections between network devices to solve problems like network bottlenecks. You have decided to implement this change so that multiple network interfaces and ports can act as one logical interface and focus on increasing total throughput and better load balancing. Which of the following will you use to implement this change in your Windows devices?a. Layer 4 switchesb. ToR switchesc. EoR switchesd. Layer 3 switchesAs a network administrator of your company, you have decided to implement redundant connections between network devices to solve problems like network bottlenecks. You have decided to implement this change so that multiple network interfaces and ports can act as one logical interface and focus on increasing total throughput and better load balancing. Which of the following will you use to implement this change in your Windows devices?a. Load balancingb. NIC teamingc. Clusteringd. Port aggregationYou run a website called Offhand that sells exclusive handmade home decor items. On Mother's Day, the website unexpectedly receives a burst of traffic following the marketing campaign designed for this occasion. Thankfully, you are equipped with a good cloud service model and hence you are able to increase the cloud resources the website needs without disrupting your web services. Which of the following cloud characteristics helped you manage the situation easily?a. Measured service.b. Resource pooling.c. Rapid elasticity.d. Broad network access.
The option that you will use to implement this change in your Windows devices is Layer 3 switches.
What are the layer 3 switches?A Layer 3 switch is is known to be one where a switch can carry out routing functions and also do its switching.
Note that The option that you will use to implement this change in your Windows devices is Layer 3 switches.
Learn more about Layer 3 switches from
https://brainly.com/question/14594641
#SPJ1
Help me with this question please
a colleague shared an excel file with you, and you want to display a worksheet that is hidden in it. how can you do that?
The hidden worksheet can be made visible with the right click on any worksheet and select unhide.
What is a worksheet?A worksheet in Microsoft Excel is the collection of the rows and column that has been used to organize data. The collection of worksheets is called workbook.
The hidden worksheets are not visible in the workbook, and if an individual wants to unhide the hidden worksheet, he must right-click on any worksheet and select unhide.
Learn more about worksheet, here:
https://brainly.com/question/1024247
#SPJ1