Besides the popular, comprehensive programming languages such as Java and C++, many programmersuse scripting languages such as Python, Lua, Perl, and PHP. A) FalseB) True

Answers

Answer 1

Answer:

True is the correct answer for the above question.

Explanation:

The peoples are using many popular languages generally like java and c++ for desktop application but some scripting language is also used for the websites. If any user wants to develop any websites then he can do this with the help of scripting language only because the scripting language is only a language that is used to do programming in website projects. There are two types of scripting language- client-side and server-side.The above-question states that both types of language are used to develop the project scripting language and comprehensive language which is correct as defined above.
Answer 2

Answer:

B) True

Explanation:

This is correct:

Whilst Java has 9 million programmers and somewhere near 4 million C++ coders, there are a very large number of people who perfer Python, lua, perl, etc.

8.2 million official developers in the world who code using PythonSomewhere near 5 million official developers in the world use Lua/RBX Lua3 BILLION unofficial developers have used Perl.PHP is used by 78.9% of all websites with a known server-side programming language. So 7.89 out of every 10 websites that you visit on the Internet are using PHP in some form.

You get the point.


Related Questions

What is thhe name of service included with windows server operating systemthat manages a centralized database containing user account and security information?

Answers

Answer:

The active directory (AD)

Explanation:

Included in the operating system of Windows server is a primary feature called Active Directory which essentially manages a centralized database containing user account and security information such as password.

The AD is created by Microsoft and allows users (typically admins) to manage network and IT resources and application data of a system running the Windows operating system. AD can be used to create users, authenticate users and authorize users to be able to access servers and applications on the system.

True or False. Over the past few years, the hacking community has engaged in more "lone wolf" types of hacking activities as opposed to working as teams.

Answers

Answer:

False

Explanation:

Hackers usually perform their attacks in teams, the idea of a lone wolf hacker (single hacker) executing an attack isn't frequent, they work together and have their team names and they are known for their various attacks done for various reasons, reason can be political, business, competition, and so on.

An abstraction is a simplified representation of something that is more complex. Decimal numbers were a useful abstraction in the context of today's lesson. Write a short response to both questions below.What is the underlying complexity decimal numbers were used to represent.How were decimal numbers helpful in designing a system to represent text in bits?

Answers

What was the content of the lesson? It is hard to answer a question we need context on.

Which of the following statements is true? Question 9 options: A) The internet is now an Internet of Things. B) Each thing in the Internet of Things must have the ability to send data automatically over a network. C) The Internet is just a network of computers. D) Each thing in the Internet of things is an object with an IP address.

Answers

Answer:

Option C i.e., The Internet is just a network of computers is the correct option.

Explanation:

Basically, the Internet of Things is not only the computer network at present because with the help of the internet we can connect people all over the world for the purpose of communication and exchange our thoughts, but we can also send and receive data through the internet and it also the computer network.

You are attempting to upgrade a Windows Server 2008 R2 server to Windows Server 2016 Standard. What must be done in order to accomplish the upgrade?

Answers

Answer:

Explanation:

Based on the information provided within the question it can be said that in order to make this upgrade you need to first update the server to the latest service pack for 2008 R2. Once this is done then you must upgrade to Server 2012. Only after the server is running Server 2012 can you upgrade to Server 2016

One of the advantages of the database approach to data storage over the traditional file processing approach is that it helps to prevent the ____________ of data.

Answers

Answer:

To prevent loss of data

Explanation:

Advantage of database approach over the file system are;

1)  in the database approach duplicacy of data is not found whereas in file processing system duplicacy is the only main issue.

2) we can recover the data in the database approach

3) The security of data in the database approach is better than a file processing system.

4) inconsistency occurs in file processing system.

What is a key consideration when correlating event data from multiple sources into security information and event management (SIEM)?

Answers

Answer:

Time synchronisation.

Explanation:

Security information and event management (SIEM) is an application service that analyses the real time security alert in a network, which combines both security information management (SIM) and security event management (SEM).

Correlating is SIEM is a function of the SEM component that integrates sources of events, using attributes and common links to make it a useful source of data. It links these events from multiple sources, considering the time synchronisation of the events.

Time synchronisation is a process of coordinate independent clocks event signals due to clock drift, to avoid clock timing at different rate.

A grocery store manager who uses computer software at the scanners on the checkout counters to track inventory levels is using a(n):___________

Answers

Answer:

POS system

Explanation:

Based on the information provided within the question it can be said that the grocery store manager is using a POS system. A Point of Sale System is a system that is used to allow customers to make a payment for a product or service at your store. Cash registers and Checkout Counters are examples of this, and when the customer completes a transaction it is a point of sale transaction.

Assume that name and age have been declared suitably for storing names (like "Abdullah", "Alexandra" and "Zoe") and ages respectively. Write some code that reads in a name and an age and then prints the message "The age of NAME is AGE." where NAME and AGE are replaced by the values read in for the variables name and age. For example, if your code read in "Rohit" and 70 then it would print out "The age of Rohit is 70", on a line by itself. There should not be a period in the output.

Answers

Answer:

I will write the code in C++ and JAVA                    

Explanation:

C++ Program:

#include <iostream>

using namespace std;

int main()

{ std::string NAME;  

// i have used std::string so that the input name can be more than a single character.

std::cout << " enter the name"; // take an input name from user

std::getline(std::cin,NAME);

int AGE;

       cout<<"Enter age";  //takes age from the user as input

       cin>>AGE;

   cout<<"The age of "; std::cout <<NAME; cout<< " is " << AGE; }

/* displays the message for example the name is George and age is 54 so    message displayed will be The age of George is 54 and this will be displayed without a period */

Explanation:

The program first prompts the user to enter a name and the asks to input the age of that person. As per the requirement the if the user enter the name George and age 54, the program displays the following line as output:

The age of George is 54

Here  std::string is used so that the input string can be more than one character long.

JAVA code

import java.util.*;

public class Main

{ public static void main(String[] args) {

String NAME;

Scanner sc = new Scanner(System.in);

System.out.println("Enter a name:");

NAME= sc.nextLine();

int AGE;

Scanner scanner = new Scanner(System.in);

System.out.println("Enter age:");

AGE = Integer.parseInt(scanner.nextLine());

System.out.print("The age of " + NAME + " is " + AGE); }}

Explanation:

This is the JAVA code which will work the same as C++ code. The scanner class is used to read the input from the user. The output of the above JAVA code is as follows:

Enter a name: George

Enter age: 45

The age of George is 45

Final answer:

The code reads a user's input for name and age and prints a message including that information in Python. The user is prompted to enter their name and age, and the provided values replace NAME and AGE in the printed message.

Explanation:

To accomplish the task of reading in a name and an age and then printing the desired message, you can use any programming language. Below is an example in Python, which is known for its simple and easy-to-read syntax.

Python Code Example:

# Ask the user to input their name and age
name = input('Enter your name: ')
age = input('Enter your age: ')
# Print out the message with the name and age
print('The age of ' + name + ' is ' + age)
When this script is run, it asks the user to enter their name and age. After the user inputs this information, the script prints out a message stating the name and age of the person. If the user enters "Rohit" for the name and "70" for the age, the output will be:

The age of Rohit is 70

________ allows the computer to get its configuration information from the network instead of the network administrator providing the configuration information to the computer. It provides a computer with an IP address, subnet mask, and other essential communication information, simplifying the network administrator's job.

Answers

Answer:

DHCP (Dynamic Host Configuration Protocol)

Explanation:

DHCP is a network protocol that allows network administrators to automatically configure communication information for a network device. The DHCP will, among other things;

i. provide and assign IP addresses to network devices

ii. assign default gateways, DNS information and subnet mask to network devices.

These will reduce the tasks of the network administrator and also provide reliable configuration by reducing errors that are associated with manual configuration of these communication information.

The _______ dialog box displays formatting tabs for Font, Number, and Alignment




Answers

Answer:

The Format Cells dialog box displays formatting tabs for Font, Number, and Alignment

Explanation:

In MS Excel, Format Cells dialog box option, we found the following formatting tabs:

NumberFontAlignment

To access the format cells dialog box, we follow the following steps.

In MS Excel, Right click in Cell that needs formattingA drop down menu Show, Click on Format Cells option from the list.A dialog box appears that have different tabs of Number, Font, Alignment and protectionSelect the tab, where you want to change the format.

FTP is commonly used to __________ and __________ files to a server.
download; print
create; send
upload; download
send; print

Answers

Answer:

upload; download

Explanation:

FTP (File Transfer Protocol) is an internet protocol used to upload and download a file to a server, there are some programs help us to transfer this data to a server, in some cases, we're going to need these programs to upload website files to the server like images or videos, or some websites where do you need a user and passwords to upload file by FTP

You have a network of ten computers connected to a single switch that has 12 ports. You need to add six more computers to the network so you add a second switch by connecting it to the first switch by way of a network cable. What network topology is now used?

Answers

Answer:

star-bus

Explanation:

A Star-bus is a design connected with each node directly with the central network, the switch manages all the functions, and acts like repeater and data flow.

There are some advantages and disadvantages.

Advantage

Easy to develop.Easy to detect faults.

Disadvantage

It needs a lot of cable.If the switch fault everything faultExpensive to make.

_____ are the most fundamental components of designing a training program that determine the amount of stress placed on the body and what adaptations the body will incur.

Answers

Answer:

The correct answer to the following question will be "Acute variables".

Explanation:

Important elements which indicate that each exercise should be conducted. The most essential aspect of training design. We decide how much tension the body brings and eventually how well the body adapts.

The variables of Acute training include:

Frequency - The number of trainers per week.Intensity - Exercise effort.Time - The prescribed length of exercise.

Binary data is written in hexadecimal. For example, when creating a graphic for a website, colors are represented by six hexadecimal digits. Each hexadecimal digit represents an amount of a color. White is represented by which of the following values in the red-green- blue (RGB) system?

a.0000FF
b.FF0000
c.000000
d.FFFFFF

Answers

Answer:

D. FFFFFF

Explanation:

The hexadecimal numbering system has 16 digits in its numbering system. The number in hexadecimal are 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E and F.

The RGB is a color scheme used in monitor or screen of computer system. It represents the red, green and blue combination in the tube in cathode Ray tube television.

The values of each colors in the color scheme is represented by two hexadecimal digits to make six hexadecimal digits to represent a color.

A black is represented by all zero values of each color, that is;

Black : (RGB) #000000

While, white is represented with the highest values of each colors.

White : (RGB) #FFFFFF.

A server administrator is setting up DHCP and wants to make sure a specific IP address within a DHCP pool is not given out. What needs to be added to the pool to accomplish this?
APIPA
Dynamic IP address
Reservation
Static IP address

Answers

Answer:

Reservation (Correct)

Explanation:

DHCP reservation is a permanent IP address assignment. It is a specific IP address within DHCP scope that is permanently reserved for leased use to a specific DHCP client. Users can configure a DHCP reservation in their DHCP server when they need to reserve a permanent IP address assignment. Reservations are used for DHCP enabled devices like print and file servers or other application servers that always have the fixed IP address on the network.

Several weeks ago, you installed a desktop application on your Windows system using the default parameters suggested by the application installer. However, after using the application for a time, you realize that you need an optional application feature that wasn't included in the default installation. You have opened Control Panel on your Windows system, accessed Programs and Features, and selected the application. What should you do?

Answers

Answer:

Click Change .

Explanation:

While using the default parameters provided by the program installer the user installed a desktop app in his Windows operating system. The user discovers after using the software for a while which he requires an extra configuration function that was not included in the default configuration. Instead, on his Windows operating system, he opens the control panel, enabled programs and features and chose the application.

So, After all, he should click and change that.

_____ separation strategies (e.g., attacking and sabotaging others) are used by those for whom co-cultural segregation is an important priority.

Answers

Answer: Aggressive

Explanation:

Aggressive separation strategies are the technique that involves confrontation and intense feeling for separating something from others.

This technique includes action like attacking, assaultive, confronting etc.for segregation.Co-culture segregation is separation of a subset of culture from large and major culture.In this culture, there can be more than two types of culture that are split forcefully through barrier.Thus, co-culture segregation uses the methodology of aggressive separation.

Most Internet users access commercial websites, which have higher-quality information because of higher editing standards and the inclusion of more rigorous scientific articles as references. Group of answer choices False True

Answers

Answer:

False

Explanation:

Commercial websites use various advertising techniques to attract internet users to their websites, but their content rarely includes rigorous scientific articles as references.

Rather they use search engine optimized content so that they appear on top of the search engine results.

What type of device does a computer turn to first when attempting to make contact with a host with a known IP address on another network?
1. Root server2. Default gateway3. DHCP server4. DNS server5. default gateway

Answers

Answer: the DNS server

Explanation:

Answer:

2. Default gateway

Explanation:

When there is a need for a device on one network to communicate with another device on another network, of course with a known IP address, the point of exit is through default gateway. The default gateway can be likened to the gate of a particular house A. To go from this house to another house B, you need to go through the gate.

Default gateway permits outbound connections from one network to another for the purpose of communicating.

Note that it is called "default" because unless otherwise specified, that is the point through which outbound connections to another network is possible.

​A(n) ________ is said to occur when hackers flood a network server or web server with many thousands of false communications or requests for services to crash the network.

Answers

Answer:

A Denial-of-Service (DoS) attack

Explanation:

Hackers have many ways of interfering with or gaining access into a network or web server. One of the ways is to use Denial-Of-Service attack. In DoS attack, the network or web server is flooded with so many false communications or requests for services that the network might even crash.

The attack is might be so strong that it inundates the server with unnecessary queries so that even the legitimate requests from authorized/legitimate users might not be serviced or responded to.

In dynamic page-generation technologies, server-side scripts and HTML-tagged text are used independently to create the dynamic Web page.A) True B) False

Answers

Answer:

B. False.

Explanation:

A dynamic web page is a web page that changes its contents based on an event. There are two types of dynamic web page, they are client side web pages and server side web pages.

The server side scripting or dynamic web page changes its contents when the page is loaded. It is an application based scripting that sends the web page from the server to the client side, where the web browser uses the html scripting to process the page and the CSS and JavaScript helps determine how the html is parsed in DOM ( document object model).

Which layer of the OSI model handles transforming data from generic, network-oriented forms of expression to more specific, platform-oriented forms of expression?

Answers

Answer:

The correct answer to the following question will be the "Presentation layer".

Explanation:

The presentation layer tends to become the lowest layer where application developers understand data structure and representation rather than simply sending information in the format of packets and datagrams between servers.The interface layer serves as a converter between the client and the network, specifically handling user input schema representation, i.e. supplying coded descriptions and internet services for localization.This layer completes the compression and decompression of the data, encryption, and decryption.

Therefore, the Presentation layer is the right answer.

What unit of measurement should be used to assign quantitative values to assets in the priority identification phase of the business impact assessment?
A. Monetary
B. Utility
C. Importance
D. Time

Answers

Answer: A. Monetary value

Explanation: Business impact analysis is an analysis conducted in order to predict the the causes of the disruption of the functions and activities of a Business organizations and finds possible ways of rescue or restarting the business. It has different phases in the priority identification phase,the MONETARY VALUE is required to attach qualitative values to the assets involved.

Final answer:

The appropriate unit of measurement for assigning quantitative values to assets during the priority identification phase of a business impact assessment is monetary. This allows for financial quantification and comparison, which is crucial for risk prioritization.

Explanation:

Business Impact Assessment and Quantitative Values for Assets

The unit of measurement that should be used to assign quantitative values to assets in the priority identification phase of the business impact assessment is monetary. In a business impact assessment, it is essential to quantify the value of each asset in financial terms to effectively understand the potential economic loss in the event of business disruption. This approach allows for a clear comparison of the value of different assets, which is critical for prioritizing risk management efforts.

Although concepts such as utility and importance are vital for evaluating assets, they are not as easily quantifiable as monetary values. Furthermore, time is a different type of data, often considered quantitative continuous, which represents change or the interval over which change occurs, rather than a value assigned to an asset.

Information security is defined as practice of preventing unauthorized access, use, disclosure, disruption, modification, or _____ of information.

Answers

Answer:

destruction

Explanation:

destruction is also the property of information in which unintended users sabotage the information so that it becomes useless for both the owner and the user as well.

A database will not only hold information about multiple types of entities, but also information about the relationships among these multiple entities.
a) true
b) false

Answers

Answer:

True

Explanation:

Database hold information and relationship among all entities that's why primary/unique key is set in all database for easy access of data

Taken together, the physical and data link layers are called the ____________________. Internet layer Hardware layer Internetwork layer Application layer

Answers

Answer:

Hardware layer

Explanation:

The hardware layer's job is to maintain and put to action central processor units and memory. Hardware layer first check the availability of the for mentioned duo and then decides the need to put one or another into action. Physical and data link layers act the same in the hardware layer. They bot are waiting to be called in action

Whereas < is called a relational operator, x < y is called a(n) ________. A) Arithmetic operator B) Relative operator C) Relational expression D) Largeness test E) None of these

Answers

Answer:

The answer is "Option C".

Explanation:

Relational expression are one or more variable and maybe even values, which operators have linked together. It is also known as the process, which is used to calculate the outcome, that is generated by the relational expression. These words are typically designed to answer the questions in boolean values, and other options were not correct, that can be described as follows:

In option A, This process is used to perform the mathematical operation, that's why it is not correct.Option B and Option D both is used to compare values, that's why it is not correct.
Final answer:

The correct answer is C) Relational expression.

Explanation:

The correct answer is C) Relational expression. Whereas < is called a relational operator, x < y is called a relational expression. Relational expressions are used in mathematics and computer programming to compare two values and determine their relationship, such as less than, greater than, equal to, etc. In this case, the expression x < y compares the values of x and y to see if x is less than y.

Learn more about Relational operators here:

https://brainly.com/question/33715673

#SPJ3

What are the equivalence classes of these bit strings forthe equivalence relation in Exercise 11?a)010b)1011c)11111d)01010101

Answers

Answer:

d) 01010101

Explanation:

Select below the Active Directory server role that provides the functions of Active Directory without the requirements of forests, domains, and domain controllers.

Answers

Answer:

​AD DS

Explanation:

Active Directory Domain Service is an active directory server role found in windows server and it permits admins in a network environment store and also manages information from a particular source in a network, there are no requirements for forests, domains, and domain controllers. It works both on intranet and internet networks.

Other Questions
List and define 2 categories of energy A force F produces an acceleration a on an object of mass m. A force 3F is exerted on a second object, and an acceleration 8a results. What is the mass of the second object in terms of m?a. 3mb. 9mc. 24md. (3/8)me. (8/3)m The colors associated with Myrtle (red) symbolize herQuestion 1 options:lack of tastepowerlove for TomBoth power and love for TomQuestion 2 (1 point)What is Gatsby's real name?Question 2 options:Jimmy DofoJames GatzJames GatsburgerJimmy GattingerQuestion 3 (1 point)According to the new information in chapter 6, how did Gatsby gain his wealth?Question 3 options:He won the lottery.He inherited it from his family.He earned it himself.He inherited it from Dan Cody.Question 4 (1 point)What does Gatsby's yellow car symbolize?Question 4 options:Money and MaterialismMaterialismFailure to achieve the American DreamAll of the aboveNone of the aboveQuestion 5 (1 point)Upon what issue do Nick and Gatsby disagree?Question 5 options:The ability to repeat the past.The success of World War I.The ability to move up in social class.The sin of adultery.Question 6 (1 point)What do Daisy and Gatsby do at Gatsbys party?Question 6 options:Drink togetherSneak away to swim in the bay.Hang out with Nick so they aren't alone together.Dance together.Question 7 (1 point)What does Gatsby want Daisy to do?Question 7 options:Leave Tom and elope with Gatsby.Tell Tom she never loved him, only Gatsby.Continue the affair until she feels confident enough to divorce Tom.Let Gatsby confront Tom and tell him the truth.Question 8 (1 point)In the beginning of chapter 7, Nick notices a change concerning Gatsby. What is that change?Question 8 options:Gatsby looks younger and more alive.Gatsby doesn't throw any more parties.Gatsby is incredible consumed with bootlegging.Gatsby looks sick and depressed.Question 9 (1 point)At the Buchanan household, Gatsby says Daisys voice is full of.Question 9 options:MoneyHappinessBeautySeductionQuestion 10 (1 point)At the Buchanan household (before heading to the city), what does Daisy do that astounds and angers Tom?Question 10 options:Kisses Gatsby in front of Tom.Announces her plans to divorce Tom to be with Gatsby.Essentially tells Gatsby she loves him in front of Tom.Winks at Gatsby from across the room, in front of Tom.Question 11 (1 point)When Tom, Nick, and Jordan stop at Wilsons garage on the way to the city, all of the following happed EXCEPT:Question 11 options:Myrtle stares out the window in distress, mistaking Jordan for Daisy.Tom realizes that Wilson has found out about Myrtles affair.Wilson suspects Myrtle is cheating on him with Tom.Wilson asks about buying Toms car again. BC Corporation has 1,800 shares outstanding and earned $2,700 last year on assets of $2 million and equity of $1.5 million. What is the PE ratio if the stock is currently selling at $18 per share? A parking lot with an area of 9600ft^2 has a 200ft fence built along two adjacent sides of lengths x and y. If you were asked to find the dimensions of the parking lot, what equations would you used for the perimeter and area of the parking lot? Are there any lines that cannot be written in standard form? If so which ones? Choose the feminine equivalent of the underlined word. Mi __sobrino__ est en la escuela. abuela sobrina ta hija ( 2/3 a^2b^2)^2(3ab)^4 What weighs more 4 pounds of books or 60 ounces of pebbles Kurt and Mitch visit an Amish village on a class trip. "Let's see if we can round up some old radios and appliances and drop them off for them later this week. I think they'll appreciate it. They just don't understand what they're missing." Mitch rolls his eyes. Kurt's perspective is an example of _______. a. Behavioral normativity b. Cultural imperialism c. Material cultured. Ideal culture That the freedom of speech and debates or proceedings in Parliament ought not to be impeached or questioned in any court or place out of Parliament. According to this excerpt, members of Parliament are allowed to:_______ Check all the characteristics below that describe elements. one type of atom a pure substance more than one type of atom chemically combined elements What type of protist is heterotrophic and includes species whose cells can come together to form a slug that moves to a new habitat? If you could design your own curriculum, what areas of study would be included and why? Choose the answer that best completes the following statement: When an aluminum atom reacts so as to attain a noble gas electron configuration? If it takes 6 printing presses 4 hours to print 5000 newspapers, how long should it take 3 presses to print 3000 newspapers? 3x+2=3x+2Is this one solution, no solution, or infinite solution Katy bought a candy bar and shared it with her two sisters. She gave her youngest sister 1/4 of the candy bar. Her older sister received 1/3 of the candy bar. How much of the candy bar did Katy keep? 10 4/5 - 2 1/5I am having trouble finding this answer please help Which factors were the greatest challenges facing the American economy in the years following World War I? A) trade embargoes and tariffs from Germany, Italy, and Japan B) a shortage of steel, rubber and oil and a shortage of labor C) Dust Bowl conditions in the Midwest and paying back loans to Great Britain D) returning over 4,000,000 soldiers to the workforce and filling the void left by the cancellation of wartime manufacturing contracts Steam Workshop Downloader