State whether the following data are valid or invalid in QBASIC

a. Rs. 99
b. Krishan
c. "Sonali Shrestha "
d. 100 meters
e.120.25
f.10,365.50
g."kathmandu valley"
h.125inches​

Answers

Answer 1

Note that in QBASIC, the following data would be considered valid:

a. Rs. 99 - This is a valid numeric value

b. Krishan - This is a valid string value

c. "Sonali Shrestha" - This is a valid string value

d. 100 meters - This is a valid string value

e. 120.25 - This is a valid numeric value

f. 10,365.50 - This is a valid numeric value

g. "kathmandu valley" - This is a valid string value

h. 125 inches - This is a valid string value.

What is Q-Basic?

QBASIC is a programming language that supports various data types, including numeric values (integers and floating-point numbers), strings (text values), and Boolean values (true or false).

QBasic is incredibly simple to use to construct corporate apps, games, and even basic databases. It includes commands such as SET, CIRCLE, LINE, and others that allow the programmer to draw in Qbasic. As a result, visuals may also be made with QBasic.

Learn more about Q-Basic:

https://brainly.com/question/24124254?

#SPJ1


Related Questions

What is output by the following code? Select all that apply.

c = 2




while (c < 12):

print (c)
c = c + 3
Group of answer choices

3

4

6

7

9

2

10

5

12

8

1

11

Answers

Note that the output of the code given above is: 5.

What is the explanation of the above analogy?

Given that the value of c is 2

2 < 12 (true statement)

print

c = c + 3

i.e, c = 2+3

Therefore, the answer is 5.

It is to be noted that in computer programming, computer code is a set of instructions or a set of rules expressed in a specific programming language (i.e., the source code). It is also the name given to the source code after it has been compiled and is ready to execute on a computer (i.e., the object code).

Learn more about codes:
https://brainly.com/question/28848004
#SPJ1

which xcopy command switch copies only files with the archive attribute set, and does not change the attribute?

Answers

The attribute of  xcopy command which switch copies only files with the archive attribute set, and does not change the attribute is "/A  ". The syntax used for copy is xcopy source [/A] [destination].

Ensure your source and destination before executing the XCOPY command. The only needed parameter in the XCOPY command is the source, which is the folder or files you want to copy from. The destination is the location where the source files or folders should be saved. The files or folders will be copied to the same folder where you run the XCOPY command if you don't specify a destination.

To copy one or more files or folders from one location to another, use the Command Prompt command xcopy.

A more functional file-copying tool than the Copy command, XCOPY is a representation of an extended copy in computing. To move files or directories from one place to another, use the XCOPY command.

Additionally, the XCOPY command can be used on a variety of operating systems, including Microsoft Windows, IBM PC DOS, IBM OS/2, FreeDOS, ReactOS, and others. You should be aware that different operating systems may support different versions of certain XCOPY command options and other XCOPY command syntax.

To learn more about copy click here:

brainly.com/question/15102746

#SPJ4

What are the 5 system integration methods?

Answers

Manually integrating data. integrating data with middleware. integration based on an application. uniform integration of access. Integration of common storage (sometimes referred to as data ware housing)

Definite integrals and indefinite integrals are the two different types of integrals. The three main methods of integration to be covered in this chapter, in addition to the method of substitution, are reduction to trigonometric integrals, decomposition into partial fractions, and integration by parts. Ask "Why?" up to five times when discussing the problem with your team to break out of your usual thought patterns. To find the underlying reason, it is critical to distinguish causes from symptoms and pay close attention to the logic of cause-and-effect relationships.

Learn more about decomposition here-

https://brainly.com/question/29671439

#SPJ4

Write code that takes a user input of a string and an integer. The code should print each letter of the string the n number of times, where n is the integer input from the user.

Answers

We will use Java to write the code with utility class is Scanner.

What is scanner in Java?

Scanner is class from util package in Java for read input in Java language. So the code is,

import java.util.Scanner;

public class Main {

   public static void main(String[] args) {

       // scanner object to take user inputs

       Scanner sc = new Scanner(System.in);

       // asking the user to input string value

       System.out.println("Input a String:");

       String str = sc.nextLine();

       // asking the user to input int value

       System.out.println("Input an integer:");

       int num = sc.nextInt();

       // loop for getting each char

       for (int i = 0; i < str.length(); i++) {

           char Char = str.charAt(i);

           // loop for n times of current char

           for (int j = 0; j < num; j++) {

               System.out.print(Char);

           }

       }

       System.out.println();

   }

}

Learn more about Java here:

brainly.com/question/26642771

#SPJ4

ou manage a company network with a single active directory domain running on two domain controllers. the two domain controllers are also dns servers and hold an active directory-integrated copy of the zone used on the private network. the network has five subnets with dhcp servers delivering ip address and other configuration to host computers. all host computers run windows 10. you want to ensure that all client computers use the dns server for dns host name resolution. hosts should not be able to automatically discover dns host names, even for computers on their own subnet. what should you do?

Answers

Default domain group policy object editing (GPO). Turn on the policy to disable multicast name resolution.

The existence of two domain controllers.

Actually, each physical site should have at least two domain controllers that are DNS servers. In the unlikely event that one DC goes abruptly offline, this offers redundancy. It should be noted that in order to benefit from this, domain-joined PCs must be configured to use several DNS servers.

What do the terms primary and secondary domain controller mean?

The master copy of the directory database is kept up to date by the primary domain controller, who also verifies users. A backup domain controller can authenticate users and has a copy of the directory database. A BDC can be upgraded to a PDC if the PDC fails.

to know more about domains here:

brainly.com/question/13870937

#SPJ4

describe the different ways of implementing one-to-one relationships. assume you are maintaining information on offices (office numbers, buildings, and phone numbers) and faculty (numbers and names).

Answers

Diferent ways of implementing one-to-one relationships:

1. Many-to-One Relationship:

Each faculty member is associated with one office, and each office can have multiple faculty members associated with it. This would be implemented by having a foreign key in the Faculty table that references the primary key of the Office table.

2. One-to-One Relationship:

Each faculty member is associated with one office, and each office is associated with one faculty member. This would be implemented by having a foreign key in both the Faculty and Office tables that reference each other.

3. Join Table:

A third table can be used to store the relationships between the Faculty and Office tables. This table will include the primary keys of the Faculty and Office tables, and can also include other information related to the relationship between the two tables.

Learn more about the relationships :

https://brainly.com/question/10286547

#SPJ4

Spam emails are relevant or appropriate messages sent on the Internet to a large number of recipients.
TRUE
OR
FALSE

Answers

Spam emails are relevant or appropriate messages sent on the Internet to a large number of recipients is false.

What is spam email?

Unsolicited messages sent in bulk via email are referred to as email spam, junk email, spam mail, or simply spam. The term was inspired by a Monty Python skit in which the term for a tinned pork product was Spam is pervasive, inevitable, and monotonous.

They are seen aa emails sent without permission. The term Email spam, commonly referred to as junk email, is the practice of sending unwanted email to a large list of subscribers in mass.

Learn more about Spam emails  from

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

sally, a member of the sales department, is borrowing a laptop computer from her supervisor to do some work from home in the evenings. sally contacts you and indicates that she cannot access the c:\reports folder on the laptop. this folder contains documents that she needs to edit. you log on to the laptop as a domain administrator to check the folder's access control list. you are denied access to view the permissions. you contact sally's supervisor to verify that sally should receive access to the folder. sally's supervisor indicates that sally should be able to read, change, and delete documents in the folder, but that only the supervisor should be able to configure permissions. you need to grant sally appropriate permissions to the c:\reports folder. what should you do? (choose two. each correct choice is part of the solution.)

Answers

After giving ownership of the C:\Reports folder. You have to grant Allow Modify permission to the folder C:\Reports for Sally.

You must configure permissions for the new user after granting a group or individual user access to a folder (s). You can control a user's or users' level of access to a folder and the files contained in it by setting permissions. Checking Deny for any rights should be done with caution because it overrides all other permissions connected to Allow.

Only the folder's owner (i.e., its creator) or a person to whom the owner has granted authority may modify a folder's permissions. All checkboxes will be gray if you don't own the folder or the owner hasn't given you permission to access it. As a result, you won't be able to do anything until the owner grants you permission.

To learn more about Access Control List click here:

brainly.com/question/14991487

#SPJ4

What are the 3 basic security primitives?

Answers

Answer:

1. the security primitive datapath

2. The Security Primitive Controller

3. The System Security Controller

Explanation:

What are the 4 basic questions when starting a patent search?

Answers

The 4 basic questions when starting a Patent Search are:

Firstly, "Can I create, utilize, or market my product?"

Secondly, Is my innovation eligible for a patent?

Thirdly,  "How robust is this portfolio of patents?"

Lastly, "Is my rival's patent still valid?"

It can be challenging to find patents. It necessitates knowledge of the justifications for exploring patents, the techniques for doing so, and the tools at hand to facilitate the process. While working with a qualified legal expert is still strongly advised when doing a patent search, it is never a bad idea to fully comprehend the patent search procedure and also carry out searches on your own.

A patent search can be done using a variety of methods. The majority of patent searches are done using free or commercial databases that contain both registered patents and previously submitted patent applications.

To learn more about Patent Search click here:

brainly.com/question/14622629

#SPJ4

war consumerization is the practice of tagging pavement with codes displaying where wi-fi access is available. group of answer choices true false

Answers

The practice of locating and possibly exploiting connections to wireless local area networks while operating a vehicle through a city or elsewhere is known as war driving, also known as access point mapping. Thus, it is false.

What war consumerization practice of tagging pavement?

A key element of a wireless communications system that uses radio links to connect individual devices to other areas of a network is called a radio access network (RAN).

However, it also encompasses the usage of internet services, including social media, web-based email, and online data storage, as well as privately downloaded software used on business equipment.

Over a fibre or wireless backhaul connection, the RAN connects user devices, such as a cellphone, computer, or any remotely operated machine.

Therefore,  it is false that war consumerization is the practice of tagging pavement with codes displaying where Wi-Fi access is available.

Learn more about tagging pavement here:

https://brainly.com/question/28344234

#SPJ1

how to store order information with a primary key of order id and foreign key of customer id for dad 220 module six

Answers

Dad 220 Module 6: To store customer order with such a primary key of purchase id as well as foreign key of customer id:

1. Create a table in the database to store the order information. This table should include columns for an OrderID (primary key), CustomerID (foreign key), OrderDate, and other relevant information such as shipping address, order total, etc.

2. Create an index on the OrderID column to ensure that the data is properly organized in the table.

3. Create a foreign key relationship between the OrderID column and the CustomerID column in order to link the order information to the customer.

4. Populate the table with data, such as the customer's ID and order information.

5. Create a query that retrieves order information based on the OrderID and CustomerID. This query should be able to be used for retrieving orders for a given customer, as well as for retrieving all orders for a given order ID.

What is primary key?
A primary key is a special type of data column in a database table that is used to uniquely identify each row of data in the table. It is used to ensure data integrity and to guarantee that no two rows of data in the same table have the same key. The primary key is often referred to as the "identifier" of the table and is typically created as an auto-incrementing integer. The primary key is used to ensure data accuracy and to prevent data duplication in the table. It is also used to link the data in the table to other data in the database. A primary key is an important concept for database design and is an integral part of relational databases.

To learn more about primary key
https://brainly.com/question/20905152
#SPJ4

Suppose the numbers 13, 11, 7, 14, 9, 12, 6, 15, 10, 8 are inserted in that order into an initially empty binary search tree. The binary search tree uses the usual ordering on natural numbers. What is the in-order traversal sequence of the resultant tree?

Answers

9,8,7,6,5,4,3,2,1,0 is the in-order travesal sequence of the resultant tree.

What is in-order travesal sequence?

For Inorder, you traverse from the left subtree to the root then to the right subtree. For Preorder, you are  traverse from the root to the  left subtree then to by the  right subtree. For Post of the  order, you traverse from the left subtree to the and right subtree then to the root.

Insert 5,7,1,8,3,6,0,9,4,2 in empty binary search tree by using the formula of reverse ordering.

Inorder travesal=9,8,7,6,5,4,3,2,1,0

In-order of the binary tree is always shorted in ascending order but binary search tree uses the reversal ordering on natural number.

Therefore it is sorted in decsding order.

To know more about in-order travesal sequence click-

https://brainly.com/question/28391207

#SPJ4

What Problem Does it Solve?Why is CS used in this way? How is it solving a problem in the creation of entertainment?

Answers

Computer Science (CS) is used in the creation of entertainment in a variety of ways. It can be used to create the visual effects, animations, and characters seen in movies, television, and video games. It can also be used to develop the interactive and intuitive interfaces seen in video games and virtual reality experiences.

CS is used to solve problems in the entertainment industry by providing efficient and effective solutions that are both visually appealing and engaging. For example, in the movie industry, computer graphics are used to create photo-realistic effects and animations, as well as virtual sets and environments. In the gaming industry, CS is used to create 3D models of characters and environments, as well as to create interactive user interfaces. In addition, algorithms and artificial intelligence are used to create immersive experiences, such as the ability to interact with virtual characters or to explore virtual worlds.

CS is also used to create interactive, intuitive experiences for users. In the gaming industry, CS is used to create sophisticated user interfaces that allow players to easily interact with the game.

read more about this at  https://brainly.in/question/34462273?referrer=searchResults

#SPJ4

what are the characteristics of class documentation? give example of a good class documentation for an oz program.

Answers

Class features are useful in narrowing searches when comparing the text in question to multiple different author criteria, but they do not provide a good basis for definitive identification.

However, the lack of common class characteristics may shy away from the material in question. Simply put, class traits can distinguish species, but not individuals.

Characteristics of top documentation:All applicable facts should be recorded.All paper statistics should be legible, signed and dated.Records should be contemporaneous, correct and stored as much as date.Records should be written in simple English fending off jargon.

What is the principal motive of documentation?

There desires to be a few degree of concord so you do not appearance sloppy or uninformed. Documentation encourages expertise sharing, which empowers your crew to apprehend how techniques paintings and what completed tasks normally appearance like.

What is the significance of documentation?

Proper documentation facilitates you prepare your notes and data. It additionally provides validity on your paintings, offers credit score to others on your field, and makes it less complicated to proportion your studies with others.

Learn more about class documentation:

brainly.com/question/15682306

#SPJ4

which initial search console step includes a report that breaks down the traffic by queries, pages, and countries?

Answers

Search performance report includes a report that breaks down the traffic by queries, pages, and countries.

The Search Performance Report shows you how much traffic you get from searches, broken down by query, page, and country. For each of these breakdowns, you can see trends in impressions, clicks, and other metrics.

What are Search Console reports?

Search Console tools and reports help you measure search traffic and site performance, troubleshoot issues, and help your site stand out in Search results. Get started now. Optimize your content with search analytics. See what searches brought users to your site.

What are search query reports for?

The Search Term Report is a list of search terms used by a significant number of users that resulted in your ad being shown. Depending on your keyword match options, the search terms displayed may differ from the keyword list.

Learn more about search console report :

brainly.com/question/29358124

#SPJ4

if you were designing ui for a hotel registration system. what are the two primary task objects there?

Answers

If you were designing the user interface (UI) for a hotel registration system, two primary task objects would be the input and output of guest information.

A hotel registration system's user interface (UI) must take into account a number of important factors. A few of these are:

Simplicity: The UI needs to be simple to use, with simple directions and few input requirements.

Efficiency: Without extra steps or delays, the UI should enable visitors to finish the registration process fast.

Accuracy: In order to prevent mistakes and confusion, the UI should make sure that the data entered by visitors is accurate and comprehensive.

Security: The UI should use secure input fields and encryption for sensitive data to safeguard visitors' personal and financial information.

The UI should be adaptable to the hotel's own requirements and preferences, such as multiple languages or accessibility settings.

To know more about User interface(UI) kindly visit

https://brainly.com/question/15704118

#SPJ4

what is geocache? group of answer choices an east/west measurement of position. a device that measures the acceleration (the rate of change of velocity) of an item and is used to track truck speeds or taxicab speeds. a north/south measurement of position. a gps technology adventure game that posts the longitude and latitude location for an item on the internet for users to find.

Answers

Geocache is a GPS technology adventure game that posts the longitude and latitude location for an item on the internet for users to find.

What is Geocache?

Geocaching is a true outdoor adventure that is taking place all over the world. To play, the participant uses a geocaching app or his GPS device to navigate to cleverly hidden containers called geocaches. There are millions of geocaches waiting to be discovered in 190 countries. There are probably a few near you too.

Geocaching started in his early 2000s. Only 75 geocaches were hidden when the site was published. There are now over 3 million geocaches and millions of active geocachers playing the game. Geocaches come in all shapes, sizes, and difficulty levels, and are hidden in both rural and urban areas.

Learn more about geocache https://brainly.com/question/1331712

#SPJ4

Which control is used to move and resize the control on the form window?

Answers

The control used to move and resize the control on the form window is called the Size and Move Handle. This control is located at the top left corner of the control on the form window.

Here are the steps to use the Size and Move Handle:

1. Select the control you want to move and resize.

2. To move the control, click the Size and Move Handle at the top left corner of the control and drag the control to the desired location on the form window.

3. To resize the control, click the Size and Move Handle and then drag the corners of the control to resize it.

4. Release the mouse button when the control is in the desired location and size.

To resize a window horizontally point to one of the vertical edges of the window. The mouse pointer changes to indicate that you can resize the window. Grab the edge and drag the window to the new size.To  a window vertically point to the bottom edge of the window.  mouse pointer changes to indicate that you can resize the window. Grab the edge and drag the window to the new size.

To learn more about RESIZE A WINDOW visit here :
https://brainly.com/question/29571410

#SPJ4


you are working with a device with ip address 10.6.3.65/23. what two statements below describe attributes of this address and the network that it is on?

Answers

The following statements describe the attributes of this address and the network that it is on is:

The subnet address is 10.6.3.0 255.255.254.0
The lowest host IP address in the subnet that this device is on is 10.6.2.1 255.255.254.0The broadcast IP address in the subnet that this device is on is 10.6.3.255 255.255.254.0

Define a subnet.

A logical division of an IP network is called a subnetwork or subnet. Subnetting is the process of splitting an existing network into two or more separate networks. In their IP addresses, computers with the same subnet address use the same most significant bit-group. A subnet, sometimes known as a subnetwork, is a network inside another network. Network efficiency is increased via subnets.

By using subnetting, network communication can travel a shorter distance to its destination without using extraneous routers. An IP address can be split into two halves using a subnet mask. A computer's host (or part of it) is identified by one part, while its network affiliation is identified by the other.

To learn more about a subnet, use the link given
https://brainly.com/question/29039092
#SPJ4

if a host's ipv6 address contains the network adapter's mac address within the last 64 bits of the ipv6 address, what standard is being used?

Answers

EUI-64 is the standard used.

What is EUI-64 used for?

EUI-64 (Extended Unique Identifier) is a method we can use to automatically configure IPv6 host addresses. An IPv6 device will use the MAC address of its interface to generate a unique 64-bit interface ID.

When converted to EUI-64 standard how many bits are inserted into the existing OS-assigned MAC address?

The IPv6 EUI-64 format address is obtained through the 48-bit MAC address. The MAC address is first separated into two 24-bits, with one being OUI (Organizationally Unique Identifier) and the other being NIC-specific. The 16-bit 0xFFFE is then inserted between these two 24-bits for the 64-bit EUI address.

Does EUI-64 improve security?

The IID used to be based on an encoding of the device's hardware MAC address, known as EUI-64. It subsequently became clear that EUI-64 should be considered harmful to privacy because it exposes hardware identifiers at the network layer.

To know more about EUI-64:
https://brainly.com/question/29360148
#SPJ4

Which network service automatically assigns IP addresses to devices on the network?- DHCP- Telnet- DNS- Traceroute

Answers

The network service that automatically assigns IP addresses to devices on the network is DHCP.

DHCP is an abbreviation for Dynamic Host Configuration Protocol which is a client/server protocol that automatically provides an Internet Protocol (IP) host with its IP address and other related configuration information such as the default gateway and subnet mask.

A Dynamic Host Configuration Protocol server can control IP settings for the computers or devices on its local network by assigning IP addresses to those devices dynamically and automatically with the help of a client–server architecture.

The Dynamic Host Configuration Protocol server manages a pool of IP addresses and leases an address to any DHCP-enabled user when it starts up on the network. As the IP addresses are dynamic rather than static, the addresses that are no longer in use are automatically returned to the pool for reallocation.

To learn more about Dynamic host configuration protocol; click here:

brainly.com/question/14234787

#SPJ4

even though you can't specify this modifier for a named constant within a class, what is the effective access modifier for the constant?

Answers

In a class in the C# programming language, the effective access modifier for a named constant is always "private."

Constants are variables in C# that are given a value at the moment of their declaration and cannot have that value modified later. Any C#-supported data type, such as int, string, or bool, may be used to declare constants by using the "const" keyword.

An access modifier cannot, however, be specified for a named constant that is part of a class. Whether or not an access modifier is supplied, all named constants are automatically regarded as private. The constant can only be accessed from within the class in which it is defined, according to this.
It's crucial to remember that this restriction only applies to named constants that are declared inside of a class.

To know more about effective access modifier kindly visit
https://brainly.com/question/13244431

#SPJ4

name at least 3 areas in our daily lives where information technology has brought big change?

Answers

Name at least 3 areas in our daily lives where information technology has brought big change is:

Traditional market change to online marketplace.Offline study change to online study.Offline conference change to online meeting.What is information technology?

Information technology is the management and delivery of information utilizing voice, data, and video. It includes hardware, software, services, and supporting infrastructure. A vast professional field known as information technology (IT) includes tasks like setting up communication networks, protecting data and information, and resolving computer issues. The study of or use of computers and telecommunications for data archiving, retrieval, transmission, or sending is known as information technology, or IT.

Learn more about information technology: https://brainly.com/question/4903788

#SPJ4

what software development model uses a seven-stage approach with a feedback loop that allows progress one step backward?

Answers

Waterfall Model is the software development model that uses a seven-stage approach with a feedback loop that allows progress one step backward.

The very first Process Model to be developed was the Waterfall Model. The phrase "linear-sequential life cycle model" is frequently used to refer to it. It is easy to use and learn. There is no overlap between stages in a waterfall model; each one must be finished before the next one can begin.

It is also called to as a "linear-sequential life cycle model." It is really simple to use and understand.  In this sequential design process the steps of conception, initiation, analysis, design, construction, testing, production/implementation, and maintenance are all seen as flowing continuously downward (like a cascade).

To learn more about Waterfall model click here:

brainly.com/question/29328102

#SPJ4

meredith and co. provides isp services to a bulk of the corporates in the silicon valley. however, due to the recent covid outbreak, a lot of the firms have started to allow their employees to work from home. ceratrix is one such company that wants to allow its employees to work from home; however, certain features are only available to the employees when they have access to their workstations in the organization. this basically means that they would have to command the host computer. what remote access method should be provided to ceratrix to fulfill this requirement?

Answers

Terminal emulation, remote access method should be provided to ceratrix to fulfill this requirement.

What is Terminal emulation?

A terminal emulator is a piece of software that mimics the functionality of traditional computer terminals. These terminals, which consisted of a monitor and a keyboard, were primarily used to connect to another computer, such as a minicomputer or a mainframe. In software, the terminal emulator performs the same function.

A terminal emulator allows a host computer to connect to another computer, including remote ones, via a command-line or graphical interface. Protocols such as Telnet and SSH are used to facilitate communication.

The terminal emulator enables the host computer to use or run applications on the remote computer while also transferring files between the two. The two systems do not have to run the same operating system.

To know more about Terminal emulation, visit: https://brainly.com/question/4455094

#SPJ4

Which of the following is a social and political philosophy based on the belief that democratic means should be used to evenly distribute wealth throughout a society? dictatorship sovereignty authoritarianism socialism

Answers

Answer:

Socialism is both an economic system and an ideology (in the non-pejorative sense of that term). A socialist economy features social rather than private ownership of the means of production.

Explanation:

you manage a windows server that is used to hold user data files. the system volume is drive c:, while all user data is on drive e:. you will use windows server backup to configure a backup schedule. you want to back up only the e: volume twice per day. you want to be able to restore individual files and folders. what should you do? (select two. each choice is a required part of the solution.)

Answers

You launch the Backup Schedule wizard after starting Windows Server Backup. You receive a notification claiming that there is no backup destination available after configuring the schedule. Integrate a fresh external hard drive into the setup.

How does file recovery work?

Choose File Recovery from the Backup dashboard menu. The menu for file recovery appears. Users should be aware of this feature's performance restrictions.

How can I get back a previous version of a file?

You can browse a timeline, choose the version you want, and restore a file if you wish to go back to an earlier version of it (even if it wasn't deleted or lost).

To know more about Windows server visit:-

https://brainly.com/question/14587803

#SPJ1

which type of attack involves an adversary attempting to gather information about a network to identify vulnerabilities?

Answers

a) Reconnaissance is the type of attack that involves an adversary attempting to gather information about a network to identify vulnerabilities.

In the field of computer studies, reconnaissance can be described as such a type of attack in which the attacker aims at gaining any vulnerability about the wireless network connection of the user.

The adversary has the mission to attack a particular system by looking for any kind of vulnerability or weak point in the network setup. Reconnaissance is usually targeted for a network that is distributed such as the employees of a company using the same wireless network and hence the attacker tries to search for a vulnerability here to get crucial details about the company or to target the revenue of the company.

Although a part of your question is missing, you might be referring to this question:

Which type of attack involves an adversary attempting to gather information about a network to identify vulnerabilities?

a) Reconnaissance

b) malware

c) phishing

d) none of the above

To learn more about reconnaissance , click here:

https://brainly.com/question/21906386

#SPJ4

Of the following similar-sounding items, which one would you likely find on your keyboard?

Answers

Answer: W A S D

Explanation: Every human on earth knows W, A, S, and D

are the most important keys on any keyboard

Of the following similar-sounding items, caps lock is likely find on your keyboard. The correct option is A.

What is a keyboard?

A computer keyboard is an input device that allows a user to enter letters, numbers, and other symbols (collectively known as characters) into a computer.

A keyboard is used to enter information into your computer, such as letters, words, and numbers. When person type, you press the individual keys on the keyboard.

The number keys that run across the top of the keyboard can also be found on the right side. The letter keys are located in the middle of the keyboard.

Caps Lock is a key on a computer keyboard that, when activated, allows users to generate uppercase letters without holding down the Shift key.

It's a toggle key that's located on the left side of a computer keyboard, just below the Tab key.

Thus, the correct option is A.

For more details regarding keyboard, visit:

https://brainly.com/question/24921064

#SPJ2

Your question seems incomplete, the missing options are:

A. Caps Lock

B. Cap Lock

C. Clip Lock

D. Clap Lock

Other Questions
rina prepared a powerpoint presentation for potential customers in japan. they added colorful graphics in a yellow color scheme to impress their audience. they also included details that they knew specifically interested their clients. as planned, the presentation was not well received and they lost gained a valuable account. what should rina have done to improve her odds of winning this account? check all that apply. considered cultural preferences. prepared separate presentation for each client. sent the presentation ahead of time to better prepare the audience. Why can't Orcas live in freshwater? Please help with this!!! Multiply 6x5 7/8 as a newly appointed nurse manager, the manager decided to assess the skills and competencies of all new nursing personnel. what can the nurse manager do to help new personnel learn their job duties and responsibilities? group of answer choices ask other nurses to keep an eye on the new staff. assign a preceptor to any new member of the nursing staff. ask current nursing staff to point out the new personnel's weak areas after a staff meeting. let the new staff learn job duties and function without nursing staff interference. Which rays are mutagens? other things equal, the supply of labor will be higher to a job that a. doesn't allow for flexible work schedules. b. is not prestigious and provides low wages. c. is riskier than other jobs. d. requires advanced skills or education. e. offers valuable on-the-job training. PLS HELP IM GETTING ABUSED ): 50 POINTSThese items are all on sale with one-third off. What was the full price of each?Sale price: Original full price:32.24 _________86.08 _________105.48 _________230.62 ___________ any woman can develop gestational diabetes, but some women are at greater risk. what are the risk factors for gestational diabetes? (select all that apply.) democracy in industry means fair paticipation by those whow ork in the decisions vitally saffecting their lives Mary and Paul made a great deal of money recently by winning the lottery. They come from families of little education or money. They moved to a beautiful new home in a neighborhood well known for the wealth and high social status of its residents. The neighbors have been unfriendly to them, ignore their attempts to make friends, and talk badly to each other about the new family in the neighborhood. This is an example of _____ aggression. sheffield company has $145,000 of inventory at the beginning of the year and $131,000 at the end of the year. sales revenue is $1,972,800, cost of goods sold is $1,145,400, and net income is $248,400 for the year. on average, the number of days to sell inventory is approximately: Which personality type talks the least? Should companies be allowed to track consumers or other preferences without their permission-essay What are 3 purposes of non-profit organizations? i am using controlling, coordinating, mediating and synthesizing as i focus on issues to help the team complete goals. which type of leadership decision making am i using? group of answer choices internal task actions external relationship actions environmental assessment actions internal relationship actions Select the correct answer. Which word or phrase best describes the political and religious atmosphere of the sixteenth and seventeenth centuries? a. Progressive b. Radical yet plain c. Highly ritualistic d. Tumultuous. imagine that your personality structure was like an iceberg bobbing in the arctic sea. according to psychoanalytic theory, what would you have to do to locate your id? Suppose IQ scores were obtained for randomly selected sets of . The pairs of measurements yield , , r , P-value 0.000, and , where x represents the IQ score of the . Find the best predicted value of given that the has an IQ of ? Use a significance level of 0.05. 20 siblings 20 x=99.42 y=97.2 =0.867 = = 21.33+1.19x y older child y older child 97 Click the icon to view the critical values of the Pearson correlation coefficient r.1 The best predicted value of is . y (Round to two decimal places as needed.) Critical Values of the Pearson Correlation Coefficient r n 0.05 = 0.01 = NOTE: To test H0 : 0 against H1: 0, reject H0 if the absolute value of r is greater than the critical value in the table. rho= rho4 0.950 0.990 5 0.878 0.959 6 0.811 0.917 he synthesis of water is described by thequation 2H + O2ecomposition2HO. How is the trof water related to thisaction? Explain, using a chemical equation.I NEED HELP ASAP!!!PLEASE!! on the date of record, a cash dividend would be recorded with a credit to what account? cash cash dividends dividends payable no entry necessary