Communicating with people you know or meet to share information or advice about a job defines _____. a. contact list b. job leads c. networking d. career fair please select the best answer from the choices provided a b c d

Answers

Answer 1
I'm pretty sure its C. Networking

Related Questions

A cloud database infrastructure integrates computer hardware and operating system in an internet-based ________.

Answers

A cloud database infrastructure integrates computer hardware and operating system in an internet-based B. data center.

What is cloud data infrastructure?

Cloud computing infrastructure is known to be a kind of composition or the set/collection of hardware as well as software elements that are known to be required to help cloud computing.

It is one that is made up of computing power, networking, as well as the storage, and the  interface that is made for users to gain access into their virtualized resources.

Therefore, A cloud database infrastructure integrates computer hardware and operating system in an internet-based B. data center.

Learn more about database from

https://brainly.com/question/25385643

#SPJ1

A cloud database infrastructure integrates computer hardware and operating system in an internet-based ________.

A.materials center

B.datacenter

C.taped center

D.report center

working on a python assignment, not sure what i did wrong can anyone help?

Answers

Answer:

Explanation:

line 13 should be changed to:

print(“Item 1: “ + item1 + “ - $” + str(float(const1)))

You cannot concatenate a string to float type.

Hi all i have a quick question what are some incidence of malware

Answers

Answer:

Privilege escalation: Another type of malware attacks is privilege escalation. A situation where the attacker gets escalated access to the restricted data. Evasion: Evasion is another type of malware attack. The techniques malware maker design to avoid detection and analysis of their malware by security systems.

Fewer than 1% of scanned sites in the US, UK, and Germany, and Spain were found to contain malware (although Spain did spike to 3% briefly earlier in the year). 10. The number of malware attacks declined for the first time since 2016 The number of new malware attacks declined for the first time since 2015.The most devastating type of malicious programs, by some counts. Definitely one of the most advanced and constantly on the rise these days. Ransomware blocks access to the data of a victim, threatening to either publish it or delete it until a ransom is paid.

Explanation:

help me by marking me brainlest

it is from my science book

Jamal just finished taking a series of photographs that he loves, but he is
displeased with the lightness and darkness found in these images. What setting
does he need to adjust to fix this?

A. prime
B. tone
C. zoom
D. Opixels

Answers

Tone i’m not sure though

Answer:

Tone

Explanation:

This is the right answer for connexus

Each of the numeric wrapper classes has a static tostring method. what do these methods do?

Answers

Each of the numeric wrapper types has a fixed tostring way. These plans do converts numbers to string

What is a numeric wrapper?The classes Byte, Short, Integer, Long, Float, and Double are wrapper classes for numbers. Each of them derives from the Number class. The class of numbers is abstract. A Number class object cannot be created. The abstract class Number includes all of the wrapper classes (Integer, Long, Byte, Double, Float, and Short). The relevant primitive data type is contained or wrapped in the object of the wrapper class. Boxing is the process by which primitive data types are transformed into objects, and the compiler handles this. In order to turn any data type into an object, wrapper classes are utilized. Java's wrapper classes are used to transform primitive types into the appropriate objects. There are matching wrapper classes for each of the 8 primitive kinds.

To learn more about numeric wrapper, refer to:

https://brainly.com/question/16613694

#SPJ4

Suppose a scanner object is created as follows: scanner input = new scanner(system.in); what method do you use to read a real number?

Answers

Suppose a scanner object is created as follows: scanner input = new scanner(system.in); the method you use to read a real number is Scanner input = new Scanner(System.in); input. nextDouble();

This is because the Scanner input = new Scanner(System.in); input. nextDouble(); command creates the input for a number that contains both whole numbers and decimal numbers and this is why double is used and not int.

What is a Double in Programming?

This refers to the fundamental data type that is encoded into the compiler and used to define numeric variables holding numbers with decimal points

Hence, we can see that Suppose a scanner object is created as follows: scanner input = new scanner(system.in); the method you use to read a real number is Scanner input = new Scanner(System.in); input. nextDouble();

This is because the Scanner input = new Scanner(System.in); input. nextDouble(); command creates the input for a number that contains both whole numbers and decimal numbers and this is why double is used and not int.

Read more about double and float here:

https://brainly.com/question/13260053

#SPJ1

Even more dangerous than trojan programs are ____________________ containing trojan binary programs ready to be installed by an intruder who has gained root access to a system.

Answers

Even additional difficult than trojan programs are Rootkits containing trojan binary programs ready to be established by an intruder who has achieved root entry to a system.

What purposes does Trojan software serve?A dangerous piece of code or software that mimics genuine software but has the ability to take over your computer is known as a Trojan horse. A Trojan is intended to harm your data or network by stealing from it, causing disruption, or performing other harmful actions. To fool you, a Trojan pretends to be an authentic application or file. A Trojan is a sort of virus that can be extremely destructive, wiping out data or even the entire contents of the hard drive. Trojans can also intercept and resend private information to an outside location or open communication ports, giving an intruder remote access to the compromised computer.

To learn more about trojan programs, refer to:

https://brainly.com/question/12382717

#SPJ4

Giving the computer large quantities of unstructured data so that it can organize the data in a way that humans can use is an example of _________________ learning.

Answers

Giving the computer large quantities of unstructured data so that it can organize the data in a way that humans can use is an example of sentiment analysis learning. The correct option is A.

What is sentiment analysis?

Sentiment analysis, often known as opinion mining, is a natural language processing (NLP) method for identifying the positivity, negativity, or neutrality of data.

Businesses frequently do sentiment analysis on textual data to track the perception of their brands and products in customer reviews and to better understand their target market.

Therefore, the correct option is A. Sentiment analysis.

To learn more about sentiment analysis, refer to the link:

https://brainly.com/question/13266124

#SPJ1

The question is incomplete. Your most probably complete question is given below:

A. Sentiment analysis. B. Internet collecting. C. Web scraping. D. Internet collecting.

What was the basis of building ARPAnet?

Answers

The basis of building ARPAnet is due to the zeal or the desire to assign  information over wide  distances without the use of  dedicated phone connections that will exist between all computer on a network.

What is ARPANET?

ARPANET is known to be the very first network that was said to be made up of distributed control.

Note that It was said to be implement TCP/IP protocols as it is the one that starts the use of Internet along  with use of these technologies.

Therefore, The basis of building ARPAnet is due to the zeal or the desire to assign  information over wide  distances without the use of  dedicated phone connections that will exist between all computer on a network.

Learn more about ARPAnet from

https://brainly.com/question/13721059
#SPJ1

A prime number is a positive integer that is evenly divisible only by 1 and itself. Write a predicate function called is_prime that accepts an integer parameter and returns true if that number is prime and false otherwise. Assume that the parameter is a positive integer.

Answers

The requirement of the given question is that we need to write a function that takes a positive integer number as a parameter and checks if the number is a prime number or not. If the number is a prime number then it returns true. But if the number is not a prime number then it returns false.

The required function is written here in Python:

def is_prime(number): ''' This is function named “is_prime” that accepts a     positive integer “number” as a parameter’’’

if number < 2: '''It checks if the “number” is less than 2. The smallest                                                   prime number is 2 so no need to check numbers less                                              than 2'''

return False ''' If the above condition is true , it returns “false” that the                 “Number” is not prime.'''

for i in range(2, number):  '''This is for loop runs with an increment of one through all numbers specified in the “range function”                                             i.e. from 2 to the value of “number” exclusively'''

  if (number % i) == 0:     ''' Checks if ”0” remainder is found, then           the “number” is not prime'''

    return False        # “Number” is not prime so it returns “false”

return True '''When it has looped through the entire range of                                                               values from 2 to “number-1” and does not find a value that gives “0” remainder, then the “number” is prime, thus returns “true”.'''

You can learn more about prime number at

https://brainly.com/question/145452

#SPJ4

Which situation indicates an internal control risk in the general ledger/financial reporting systems?

Answers

The employee who maintains the cash receipts journal records transactions in the accounts receivable subsidiary ledger indicates an internal control risk in the general ledger/financial reporting systems.

Internal control risks are dangers that compromise the effectiveness and efficiency of internal controls, which then compromise goal achievement. Both operation risk and compliance risk include them.

An internal control framework is made up of five interconnected elements: monitoring, information and communication, risk assessment, control activities, and the control environment.

The procedure used by management to identify risks and assess the possibility and impact of a risk event is known as risk assessment. The evaluation of internal controls can be done concurrently. In order to identify any gaps between risks and controls, the risk assessment is used to map internal controls to the risks.

Learn more about financial reporting:

https://brainly.com/question/17322675

#SPJ4

A technician is installing a cable modem that supplies internet connectivity for a home office. Which of the following cabling types would they use to connect the cable modem to the wall outlet?
Cat 5e
RG-6
Multi-mode fiber
Cat 6a​

Answers

Answer: Cat 5e

Explanation: There is no Cat 6 A,

RG-6 are for coaxes as in hooking up your tv to a  cable box  from your provider

Fiber optic cable as in Multi -mode is not applicable for this either ..

SO Cat 5e Plenum is the best.


What is the difference between a mechanical and electronic computer?

Answers

The main difference between a mechanical and electronic computer is their composures. A mechanical computer is made from mechanical materials such as gears, levers, and many other physical features. An electronic computer, on the other hand, is made of electronic materials.

Why do software developers prefer to use high-level language to author programs?
It can be used on computers without microprocessors.
It prevents anyone from making changes to the software later.
It uses a more English-like syntax.
It’s less complicated because it only uses zeros and ones.

Answers

The reason software developers prefer to use high-level language to author software programs is because: C. It uses a more English-like syntax.

What is a software?

A software can be defined as a set of executable instructions that is typically used to instruct a computer system on how to perform a specific task (function) and proffer solutions to a particular problem.

What is a compiler?

A compiler can be defined as a software program that is designed and developed to translate the entire source code of program at once, in order to produce an object code.

This ultimately implies that, a compiler translates a software program that is written in a high-level language into low-level language (machine language).

In conclusion, the reason software developers prefer to use high-level language to author software programs is because it is designed and developed to use a more English-like syntax.

Read more on software syntax here: https://brainly.com/question/19176627

#SPJ1

If you write a class with no constructor whatsoever, the compiler provides a(n) __________.

Answers

If a class is written with no constructor, the compiler provides a default constructor.

In the Object Oriented paradigm, a special kind of member function of a class that initializes its objects is called a constructor. When a class is defined without a constructor, the compiler provides a default constructor for it. The default constructor is a constructor that does not have any argument. But if a constructor with arguments or without arguments is created for a class, the compiler does not provide a default constructor for that class.

A constructor is used to assign default values to data members of a class.  It has the same name as the class is with no return type. when  an object of the class is created, constructor is automatically called. In case, when a class has no constructor, the compiler calls a default constructor for it.  

You can learn more about default constructor at

https://brainly.com/question/13267121

#SPJ4

Assume that two int variables named distance and speed have been declared and assigned values. Also assume that a double variable named result has been declared. Write a statement that divides distance by speed and assigns the result to the result variable. Be sure to write your math expression in such a way that the result is a floating-point value

Answers

The required statement that divides “distance” by “speed” and stores the obtained result in the variable “result” is “result = (double) distance/speed”.

Given two variables “distance” and “speed” in a program that both are assigned with some integer values. Since we need to produce the result of division as a floating-point value, so one of the two integer type variables i.e. “distance” and “speed” is converted to float type using the cast operator (double). Further, we are required to assign the result of the division to the already declared double type variable named “result”.

According to the requirement of the question, we need to write a statement that produces a floating-point result when dividing the integer type values of “distance” and “speed” and assigns the result to the double variable i.e. “result”. The following statement fulfills the requirement of the given question and produces the desired result.

result = (double) distance/speed;

You can learn more about casting operator at

https://brainly.com/question/14690025

#SPJ4

what is the best definition of the word app?

Answers

an application, especially as downloaded by a user to a mobile device.

(If this is what you mean by app)

Answer:

Software designed to run on computers and other devicesA

Explanation:

A(n) _____ investigates, analyzes, designs, develops, installs, evaluates, and maintains a company's information systems.
a. network administrator
b. application developer
c. database administrator

Answers

A system analyst (not listed on the option) performs research, analysis, design, development, installation, evaluation, and maintenance on the information systems used by an organization.

An information technology (IT) practitioner with a focus on the analysis, design, and implementation of information systems is known as a systems analyst, sometimes known as a business technology analyst. Systems analysts assess the adequacy of information systems in terms of their desired outcomes in order to accomplish these goals in collaboration with end users, software vendors, and programmers.

An individual who uses design and analytical techniques to make the most of information technology to solve business problems is known as a systems analyst.

Learn more about system analyst https://brainly.com/question/14956987?

#SPJ4

When shortening an internet protocol (ip) v6 address, which two rules are used? check all that apply.

Answers

The two principles to follow when shortening an internet protocol (ip) v6 address are to replace groups of zeros with colons and eliminate all leading zeros.

Internet Protocol version 6 is the most recent iteration of the protocol that controls traffic on the Internet and acts as an identity and location system for devices on networks (IPv6).

In order to solve the long-anticipated issue of IPv4 address exhaustion and eventually replace IPv4, the Internet Engineering Task Force (IETF) developed IPv6. An further technological benefit of IPv6 is that it has a larger addressing space.

Learn more about IPv6 https://brainly.com/question/15733937

#SPJ4

A traditional wireless network involving access points that all have wired connections is known as a(n) _______. lan wlan wan

Answers

The answer:
WLAN(wireless local area network)

Write a multi-way if/else statement that adds 1 to the variable minors if the variable age is less than 18, adds 1 to the variable adults if age is 18 through 64 and adds 1 to the variable seniors if age is 65 or older.

Answers

The requirement of the question is to write a multi-way if/else statement for checking the value of the variable “age”. Based on the “age” value an increment of one is made in one of the three variables named minors, adults, and seniors.

The desired multi-way if/else statement in Python is written as follows:

if age < 18:                  /* Checks if “age” is less than 18, if yes it returns  

                                “ true” */

minors = minors + 1    /* Adds one to the “minors”, if the above condition is

                                 true */

elif (age >= 18 and age <= 64):  /* Evaluates the condition if "age" is from 18 to

                                   64. Returns “true” when meeting this condition*/

adults = adults + 1       /* It adds one to the "adults"  

else:                          /* When both of the above conditions are not true

                                  this else runs and becomes “true” for all the

                                  values of "age" which are greater than 64*/

seniors = seniors + 1   // It adds one to the variable "seniors”

You can learn more about if/else statement at

https://brainly.com/question/28430850

#SPJ4

What are the different types of evaluations an instructional designer/trainer would conduct and how are they different? (

Answers

As an instructional designer or trainer, there are a variety of different types of evaluations you can conduct in order to gauge the effectiveness of your training. Here are some of the most common types of evaluations and how they differ:

1. Formative evaluations are conducted throughout the training process in order to gather feedback and make improvements.

2. Summative evaluations are conducted at the end of the training in order to assess the overall effectiveness of the training.

3. Impact evaluations are conducted after the training is complete in order to assess the long-term impact of the training.

4. Needs assessments are conducted at the beginning of the training process in order to identify the needs of the participants.

Each of these evaluations serves a different purpose, so it's important to choose the right evaluation for your needs. Formative and summative evaluations are generally the most useful for making improvements to the training, while impact evaluations can be helpful in assessing the long-term effectiveness of the training.

Learn more on evaluations here:

https://brainly.com/question/26719973

#SPJ4

The microsoft office suite of programs primarily employs which type of menu structure?

Answers

The Microsoft office suite of programs primarily employs  option a. Ribbon type of menu structure.

What is Microsoft Office suite mainly used for?

Microsoft Office is known to be called a suite of applications that is said to have been set up so as to assist users  with productivity as well as in fulfilling common tasks that is known to be done on a computer.

Therefore, based on the above, The Microsoft office suite of programs primarily employs  option a. Ribbon type of menu structure for most of its applications or processes.

Learn more about Microsoft office suite from

https://brainly.com/question/27248879

#SPJ1

The Microsoft Office suite of programs primarily employs which type of menu structure?

Select one:

a. Ribbon

b. Drop-down

c. Expanding

d. Flat-list

The efficient and successful use of technology is critically important to the success of ________ teams.

Answers

The efficient and successful use of technology is critically important to the success of virtual teams.

Through the adoption of tools like the internet and email for communications, word processing, spreadsheets, and presentations for office productivity, electronic databases for record keeping, and robots and artificial intelligence for automation, technology has evolved and shaped our workplaces in many different ways.

Technology has an impact on how people communicate, learn, and think. It benefits society and impacts how people relate to one another on a regular basis. Today's civilization is significantly influenced by technology. It affects people's daily lives and has both positive and harmful consequences on the planet.

Technology offers students quick access to knowledge, rapid learning, and enjoyable opportunities to put what they have learned into practise. Particularly in STEM, it allows students to go deeper into challenging ideas and explore new disciplines.

Learn more about technology:

https://brainly.com/question/13044551

#SPJ4

What is the size of the total address space of ipv4, i.e. the number of valid ipv4 addresses?

Answers

IPv4 addresses are 32 bits wide, and thus the size of the address space is 232, or 4,294,967,296.

The amount of memory allotted for all potential addresses for a computational object, such as a device, file, server, or networked computer, is known as address space. Each device and process is given address space by the system, which contains a particular chunk of the processor's address space.

16 exabytes, or slightly more than one billion gigabytes, make up each address space. Logically, there are 264 addresses in the new address space. It is 8 billion times larger than the previous 2 GB address space, which logically contained 231 addresses.

A computer's or a peripheral device's address space is a section of logical space where data can be stored.

Learn more about address space:

https://brainly.com/question/18722116

#SPJ4

Which computer science career is responsible for creating code for software? programmer hardware engineer user interface designer cybersecurity analyst

Answers

Answer:

programmer ⠀⠀⠀ ‌⠀⠀⠀ ‌⠀⠀⠀ ‌

The defining of tasks that are required for input data to be processed into output is part of the _______ step.

Answers

Part of the processing requirement step include defining task that must be required in order for input data to be processed into output. Process requirements define guidelines and benchmarks for organizing and carrying out tasks (workflows, processes, procedures, tasks).

A corporate organization will develop procedures, processes, and strategies to be used in order to produce a specific outcome (product or service) that materializes or fulfills the first stated needs in process requirements. Stepping through a list of duties is necessary to determine the needs for a procedure.

Follow the link below to learn how a product is verified to determine whether it meets the requirements

https://brainly.com/question/24613576

In which step of the troubleshooting process would a technician have to do more research on the internet or within the computer manual in order to solve a problem?

Answers

A technician would need to conduct additional research on the internet or in the computer manual as part of the troubleshooting process to establish a plan of action to fix the problem and apply the remedy.

A technician should investigate potential fixes after determining the root of the issue, sometimes by visiting multiple websites and consulting manuals. Troubleshooting is a type of problem resolution that is frequently used to fix broken components or operations on a machine or a system.

In order to address an issue and get the product or process back in operation, a logical, methodical search for the problem's source is required.

Learn more about troubleshooting https://brainly.com/question/14102193

#SPJ4

Write a program that inputs the length of two pieces of wood in yards and feet (as whole numbers) and prints the total.
MUST BE IN PYTHON

Answers

The program that inputs the length of two pieces of wood in yards and feet (as whole numbers) and prints the total is given below:

The Program

#Getting inputs from the User

feet_1= int(input("Enter the first length in feet: "))

inche_1 = int(input("Enter the first length in inches "))

feet_2 = int(input("Enter the second length in feet: "))

inche_2 = int(input("Enter the second length in inches "))

# Calculations

inches = inche_1 + inche_2

inc_to_ft = inches // 12

rem_from_div = inches % 12

sum_ft = a_ft + b_ft + inc_to_ft

#Printing the final result

print("Feet: {} Inches: {}".format(sum_ft, rem_from_div))

Read more about computer programs here:

https://brainly.com/question/23275071

#SPJ1

What make appertizer look healthier?

Answers

Answer:

Fruits, vegetables or drinks but it needs to be fruit wise in order to be healthier

the vegetables on the side
Other Questions
43Juan is a city council member who wants to institute a ban on large-sized sodas. He decides to appeal to his fellow council members to try to get the ban passed. Which is an example of a cooperative appeal?A. Restricting large sodas will encourage less sugar consumption.B. How many of us have children who are struggling with weight?C. Have any of you lost a friend or family member to diabetes?D. Together, we can make our community healthy! The Lost Island of Roanoke5.List the reasons why historians question the idea that all of thesettlers were killed in a surprise Native American attack. During a giveaway, every fourth customer gets a coupon and every tenth customer gets a free item. If 60 customers participate, how many get both the coupon and free item? A. 2 people B. 10 people C. 20 people D. 3 people If an important resource, such as oil, becomes unavailable, the production possibilities curvea. shift inwardsb. shift outwardsc. shift to the rightd. not shift Suppose you make hot chocolate. It's too hot to drink, so you put it in the freezer to cool it off. If the original temperature is 190 degrees Fahrenheit and the freezer is 0 degrees Fahrenheit, what will the temperature of the hot chocolate be after 4 minutes? (k = 0.12)307.05272.33132.56117.57 The ________ sense appears to moderate the relationship between product experience and judgment confidence. Solve each system by elimination. 3x+2y = 6 , 3x+3 = y Which historical reality led to thedevelopment of Modernist poetry?A. The atrocities committed during World War IlB. The rise of the middle class and the Great Vowel ShiftC. The split between Protestants and CatholicsD. Changes in art, architecture, fashion, and other fields x:4|x-3|-6 The electric potential along an x-axis is given by the expression v = ax - bx2, where a and b are constants. at what point on the x-axis is the electric field zero? Where I can get additional practice answer keys? Read the sentence. then answer the question that follows. the actor's final performance was galvanizing; as a result, everyone in the audience was mesmerized. which type of context clue would you use to determine the meaning of galvanizing? antonym cause and effect example inference Read each question. Then write the letter of the correct answer on your paper.What is the common ratio in a geometric series if a = 2/5 and a = 16/135 ? (A) 2/5 (B) 2/3 (C) 6/65 (D) 8/27 7.messageWhich best describes how winds in the jet stream blow?No patternBetween two boundaries of hot airBetween two boundaries of cold airBetween a boundary of cold air and a boundary of hot air 4. The top rung of a ladder is 18 inches long. The lengths of the rungs increase one-half inch uniformly from the top to the bottom. What is the length of the tenth rung from the top? One of the band members, Darius, wants to explore the waters of the Great Barrier Reef. Darius is currently -5 feet from the surface of the water and plans to explore a shipwreck that is at -75 feet from the surface. If he moves at a rate of -8 feet per minute, how many minutes does it take Darius to reach the shipwreck? Which patient would be considered a good candidate for hyperbaric oxygen therapy? Write about 3-4 sentences on the extent to which (how much) Jamestown was a successful colony. _______ is using Earth's natural capitol in a way that ensures the resource will replenish in a relatively short time.a. Natural Resourceb. Sustainabilityc. Environmental Scienced. Renewable PLEASE SHOW WORKALSO DO THE CHECK YOUR WORK BOX