when computer and communications are combined, the result is information and cominiations Technology (true or false)​

Answers

Answer 1

Answer: When computer and communication technologies are combined the result is Information technology.

Explanation: This is a technology that combines computation with high-speed data, sound, and video transmission lines. All computer-based information systems utilized by companies, as well as their underlying technologies, are referred to as information technology.

As a result, information technology encompasses hardware, software, databases, networks, and other electronic gadgets.

IT refers to the technological component of information systems, making it a subsystem of information systems.

Information systems, users, and administration would all be included in a broader definition of IT.

Many organizations rely on IT to support their operations, since IT has evolved into the world's primary facilitator of project activities. IT is sometimes utilized as a catalyst for fundamental changes in an organization's structure, operations, and management. This is because of the capabilities it provides for achieving corporate goals.

These competences help to achieve the following five business goals:

Increasing productivity,

lowering expenses,

improving decision-making,

improving customer interactions, and

creating new strategic applications.


Related Questions

Memory Management - Page fault and Page Thrashing
i) What is page fault?
ii) Describe the steps that take place after a page fault. Include both the actions taken within the handler and those that are taken in hardware before the handler is initiated. How segment defects might be found and treated should be mentioned in your response. Including diagrams may make it easier for you.
iii) What is page thrashing and how might it be avoided?

Answers

1) A page fault is an exception raised by the memory management unit when a process accesses a memory page without making the necessary preparations. To access the page, a mapping must be added to the process's virtual address space.

2) Once the virtual address that produced the page fault is determined, the system verifies that the address is genuine and that there is no protection access problem. If the virtual address is legitimate, the system determines if a page frame is available. If no frames are available, the page replacement procedure is used to delete a page.

3) Thrashing occurs when the page fault and switching occur at a higher frequency, requiring the operating system to spend more time exchanging these pages. This is referred to as thrashing in the operating system. The CPU utilization will be lowered or nonexistent as a result of thrashing.

Eliminating one or more running programs is a temporary remedy for thrashing. Adding extra RAM to the main memory is one of the recommended strategies to minimize thrashing. Another option for dealing with thrashing is to increase the size of the swap file.

What is Memory Management?

Memory management is a type of resource management that is used to manage computer memory. Memory management must include mechanisms for dynamically allocating parts of memory to programs at their request and freeing it for reuse when no longer required.

Management is the method of regulating and coordinating computer memory by allocating parts known as blocks to various operating applications in order to maximize system performance. The primary memory management function of an operating system is the most critical.

Learn more about Page Faults:
https://brainly.com/question/28557805
#SPJ1

what is search engine optimization?

Answers

Answer:

Make the website clear with search engine

Explanation:

A user launches an application on an Android device. Once the software loads, the user reports that when turning the tablet to work the application in landscape mode, the software does not automatically adjust to landscape mode. Which of the following is the cause of the issue?

Answers

Since the user launches an application on an Android device, the option that  is the cause of the issue is option (C) The application was not developed to react to changes to the gyroscope.

What is the gyroscope about?

The majority of Android devices have sensors available. One of them rotates the screen appropriately is the gyroscope.

Because the software or application is not set up to rotate in accordance with the gyroscope when the user runs an application on the tablet, the screen does not rotate when the tablet is turned by the user.

Therefore, The gyroscope keeps functioning properly by monitoring the rate of turn around one specific axis. An real value is determined when the rotations around an aircraft's roll axis are measured up until the item stabilizes.

Learn more about application from

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

See full question below

A user launches an application on an Android device. Once the software loads, the user reports that when turning the tablet to work the application in landscape mode, the software does not automatically adjust to landscape mode. Which of the following is the cause of the issue?

(A) The auto-adjust setting is not enabled in the operating system.

(B) The tablet is running low on power and disabled landscape mode.

(C) The application was not developed to react to changes to the gyroscope.

(D) The user did not switch the tablet to landscape mode.

All academic departments in a University keeps a database of its students. Students are classified into undergraduate, graduate, and international students. There are few reasons for grouping the students into these three categories. For example the department's secretary informs: the undergraduate students about new undergraduate courses offered, the graduate students about graduate courses and professional conferences and international students about new emigration laws.
i. Identify (if any) the subtypes of entity students.
ii. Identify a unique attribute (relationship) for each subtype.
iii. Draw an EER diagram for the department's database.​

Answers

The identification of subtypes of entity students may be done on the basis of students those who have taken courses on the basis of their educational qualifications.

What do you mean by the EER diagram?

The EER diagram stands for the Enhanced-entity-relationship diagram. This diagram provides a visual representation of the relationship among the tables in your model. The revisions that are made with the Model editor are significantly represented in the associated diagram.

According to the context of this question, the unique attribute (relationship) for each subtype is the classification of students based on the national and international characteristics of all courses.

The EER diagram is manipulated by the structural arrangement of the classification of the students on the basis of several characteristics.

To learn more about the EER diagram, refer to the link:

https://brainly.com/question/15183085

#SPJ1

Knowledge Review 3
Which of the following are characteristics of the core capabilities? (Select all that apply.)

Answers

Are distinct critical elements necessary to meet the National Preparedness goal.Are essential for the execution of each mission area: Prevention, Protection, Mitigation, Response, and Recovery.Provide a common language for preparedness across the whole community.

The above three are the characteristics of core capabilities.

What is National Response Framework?

The National Response Framework (NRF) is a guide to how the nation responds to all types of disasters and emergencies.

What are the main components of the National Response Framework?

Response doctrine is comprised of five key principles:

engaged partnershiptiered responsescalable, flexible, and adaptable operational capabilitiesunity of effort through the unified commandreadiness to act.

To know more about NRF:

https://brainly.com/question/13107467

#SPJ13

You are trying to automate the sales of a car sales and distribution company in the
Western Cape. The work was supposed to be completed by your predecessor, but he
was unable to perform this task as he had a short stint in this job. However, he had
divided this complex task into manageable tasks for you using arrays. Analyse the
input/output of the desktop application below and answer the questions that follow.
a) Write Java statements to declare an array that will store the total car sales
values (int) for each month of the year

Answers

Using the knowledge of the computational language in python it is possible to write a code that Write Java statements to declare an array that will store the total car sales values (int) for each month of the year

Writting the code:

import javax.swing.*;

import java.util.*;

public class Sales{

       public static void main (String[] args) {

           int max=1000000,min=100000;

           int carSales[]= new int[12];

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

              carSales[i]=(int)(Math.random()*(max-min+1)+min);

           String month[]={"January","February","March","April","May","June","July","August","September","October","November","December"};

           int maxSale=carSales[0],index=0;

           for(int i=1;i< carSales.length;i++)

           {

               if(carSales[i]>maxSale)

               {

                   maxSale=carSales[i];

                   index=i;

               }

           }

           System.out.println(Arrays.toString(carSales));

           JFrame f=new JFrame();

           JOptionPane.showMessageDialog(f,"Highest Sale Value is "+maxSale+" which occur in month of "+month[index]);

           String Jmonth[]=new String[3];

           int count=0;

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

           {

               if(month[i].charAt(0)=='J')

               {

                   Jmonth[count]=month[i];

                   count++;

               }

           }

           JList list = new JList(Jmonth);

           JPanel panel = new JPanel();

           panel.add(new JScrollPane(list));

           JOptionPane.showMessageDialog(null, panel);

       }

}

See more about JAVA at brainly.com/question/18502436

#SPJ1

Looking for similarities between concepts or problems is referred to as
an algorithm
Odecomposition
pattern recognition
abstraction

Answers

Pattern recognition is used  for similarities between concepts or problems in an algorithm.

What is meant by pattern recognition?

Pattern recognition is a data analysis method that uses machine learning algorithms to automatically recognize patterns and regularities in data. This data can be anything from text and images to sounds or other definable qualities. Pattern recognition systems can recognize familiar patterns quickly and accurately.

An example of pattern recognition is classification, which attempts to assign each input value to one of a given set of classes (for example, determine whether a given email is "spam" or "non-spam").

Therefore, Pattern recognition is used.

To know more about Pattern recognition from the given link

https://brainly.com/question/28427592

#SPJ1


What are progression mechanics? Why are they important for games?

Answers

The phrase "progression mechanics" in game design refers to video game mechanics where the creator establishes a path of action that a player must follow to advance in the game. The checkpoints that a character must achieve to move on to the next level are crucial to the progression of gameplay. The checkpoints change depending on the type of game. A few standard checkpoints are:

In action, adventure, and role-playing games, defeating the level boss (RPGs)achieving the third place on a certain track in racing gamescompleting a set of puzzles in a game of puzzlestaking down the enemy's base of operations in real-time strategy games

Most video games are developed using a progression gameplay concept. Designers like progression gaming because it enables them to build a compelling narrative around the game's action. Every game aims to be both engaging and enjoyable to play. Proponents of progression gameplay point out that because game creators are aware of the direction their creation will go in, they can create a far richer and more complex narrative around that direction.

On the other hand, proponents of emergent gameplay prefer games where player random acts have an unlimited number of potential results rather than a finite set of predetermined outcomes that are mapped out by designers. Of course, there is a lot of room for compromise between the two methods. Both emergent gameplay and progression are features found in many games.

Read more about game mechanics here:

https://brainly.com/question/24010467

How is the logo for a popular sportswear company protected?
A) by a copyright
B) by a patent
C) by a trademark
D) by a trade secret

Answers

Answer:

C) by a trade mark

Explanation:

By using a trademark they'll be able to tell other companies that the logo is theirs

Answer:

answer is C.

Explanation:

What are some examples of common watermarks? Check all that apply.
save
sample
draft
do not copy
open

Answers

The common Watermarks that can be applied are

1. Sample

2. Do not copy

3. Draft

What is watermark with example?

Watermarking is the process of superimposing a logo or piece of text atop a document or image file, and it's an important process when it comes to both the copyright protection and marketing of digital works.

There are two types of digital watermarking:

Visible Digital Watermarking:

Invisible Digital Watermarking:

Hence, Sample , Do not copy and Draft can be considered as Watermark

To know more about watermark from the given link

https://brainly.com/question/19709292

#SPJ4

SHOW ALL YOUR WORK. REMEMBER THAT PROGRAM SEGMENTS ARE TO BE WRITTEN IN
JAVA.
• Assume that the classes listed in the Java Quick Reference have been imported where appropriate.
• Unless otherwise noted in the question, assume that parameters in method calls are not null and that methods are called only when their preconditions are satisfied.
• In writing solutions for each question, you may use any of the accessible methods that are listed in classes defined in that question. Writing significant amounts of code that can be replaced by a call to one of these methods will not receive full credit.
A manufacturer wants to keep track of the average of the ratings that have been submitted for an item using a running average. The algorithm for calculating a running average differs from the standard algorithm for calculating an average, as described in part (a).
A partial declaration of the RunningAverage class is shown below. You will write two methods of the RunningAverage class.
*
public class RunningAverage
{
}
/** The number of ratings included in the running average. private int count;
/** The average of the ratings that have been entered. */ private double average;
// There are no other instance variables.
/** Creates a RunningAverage object.
* Postcondition: count is initialized to 0 and average is
* initialized to 0.0.
*/
public RunningAverage()
{ /* implementation not shown */ }
/** Updates the running average to reflect the entry of a new
* rating, as described in part (a).
*/
public void updateAverage (double newVal)
{ /* to be implemented in part (a) */ }
/** Processes num new ratings by considering them for inclusion
* in the running average and updating the running average as
necessary. Returns an integer that represents the number of
*
* invalid ratings, as described in part (b).
* Precondition: num > 0
*/
public int processNewRatings (int num)
{ /* to be implemented in part (b) */ }
/** Returns a single numeric rating.
public double getNewRating()
{ /* implementation not shown */ }
(a) Write the method updateAverage, which updates the RunningAverage object to include a new rating. To update a running average, add the new rating to a calculated total, which is the number of ratings times the current running average. Divide the new total by the incremented count to obtain the new running
average.
For example, if there are 4 ratings with a current running average of 3.5, the calculated total is 4 times 3.5, or 14.0. When a fifth rating with a value of 6.0 is included, the new total becomes 20.0. The new running average is 20.0 divided by 5, or 4.0.
Complete method updateAverage.
/** Updates the running average to reflect the entry of a new
* rating, as described in part (a).
*/
public void updateAverage (double newVal)
(b) Write the processNewRatings method, which considers num new ratings for inclusion in the running average. A helper method, getNewRating, which returns a single rating, has been provided for you.
The running average must only be updated with ratings that are greater than or equal to zero. Ratings that are less than 0 are considered invalid and are not included in the running average.
The processNewRatings method returns the number of invalid ratings. See the table below for three examples of how calls to process NewRatings should work.
Statement
Ratings
processNewRatings
Generated
Return Value
processNewRatings (2)

2.5, 4.5
processNewRatings (1)
-2.0
1
0.0,
-2.2,
processNewRatings (4)
2
3.5, -1.5
Comments
Both new ratings are included
in the running average.
No new ratings are included in the running average.
Two new ratings (0.0 and 3.5) are included in the running
average.
Complete method processNewRatings. Assume that updateAverage works as specified, regardless of what you wrote in part (a). You must use getNewRating and updateAverage appropriately to receive full
credit.
/** Processes num new ratings by considering them for inclusion
* in the running average and updating the running average as
*
necessary. Returns an integer that represents the number of
* invalid ratings, as described in part (b).
* Precondition: num > 0
*/
public int processNewRatings (int num)

Answers

It’s g zzzzzzzzzzzzzzzzzzzzzzzz

Which is true about a gas? Choose the correct answer. Responses It changes to a liquid when it heats up. It changes to a liquid when it heats up. It takes up a definite amount of space. It takes up a definite amount of space. It takes up a definite amount of space but does not have a definite shape. It takes up a definite amount of space but does not have a definite shape. It does not take up a definite amount of space and does not have a definite shape. It does not take up a definite amount of space and does not have a definite shape.

Answers

A gas does not take up a definite amount of space and does not have a definite shape.

What are the properties of a gas?

There are four basic states of matter, with gas being one of them. A pure gas can be composed of single atoms, elemental molecules derived from a single type of atom, or complex molecules derived from a combination of atoms. There are many different pure gases in a gas mixture like air.

Three characteristics distinguish gas from liquids or solids they come from:

(1) they are easily compressed,

(2) they expand to fill their containers, and

(3) they take up a lot more area than solids or liquids.

To learn more about gas, use the link given
https://brainly.com/question/25649765
#SPJ9

on What is the output of the following code: int i = 1; while (i <= 9)
{
system. out.print(i+"");
i=i+2;
}​

Answers

Answer:

13579

java

Explanation:

notice that the System.out.print call does not output a new line.

so... it is going to print 1, then what is 1 plus 2? the answer is 3.

what is 3 plus 2? the answer is 5.

what is 5 plus 2? the answer is 7.

what is 7 plus 2? the answer is 9.

now if we proceeded, i is more than 9, thus ends the while loop.

the output is 13579

because there are no newlines, the numbers are all squished together on the same line.

Consider this program on the picture attached:

(a) In what programming language is this program implemented?
(b) Why is this program correct? In other words, how does it work?
(c) In what way is the program poorly designed?

Answers

Answer:

a) Javascript

b) The program works because it iterates through an array and logs each array element into the console

c) It is poorly designed because depending on the array element value, the program will have to wait that many milliseconds before it logs and move on to the next element. This isn't good because the program may take a long time to execute if the array contains elements with large values.


Why is the I/O subsystem called a subsystem?

Answers

The I/O subsystem manages all peripheral device communication with the central processor. Hardware such as disc drives, tape drives, and printers are examples of peripheral devices.

What is an IO subsystem?

The I/O subsystem manages all peripheral device communication with the central processor. Hardware such as disc drives, tape drives, and printers are examples of peripheral devices.

Between input handlers and input devices (such as a keyboard, mouse, joystick, and so on), the Input subsystem serves as an abstraction layer. The input devices provide input events by capturing inputs from user activities or from external sources. For instance, pressing a key causes an input event.

The kernel, an I/O subsystem based on the hardware and device-driver infrastructure, offers a number of functions including scheduling, caching, spooling, device reservation, and error handling. Additionally, the I/O subsystem is in charge of safeguarding itself against rogue programmes and malevolent users.

To learn more about i/o sub system refer to:

https://brainly.com/question/4274507

#SPJ1

The I/O subsystem manages all peripheral device communication with the central processor. Hardware such as disc drives, tape drives, and printers are examples of peripheral devices.

What is an IO subsystem?The I/O subsystem manages all peripheral device communication with the central processor. Hardware such as disc drives, tape drives, and printers are examples of peripheral devices.Between input handlers and input devices (such as a keyboard, mouse, joystick, and so on), the Input subsystem serves as an abstraction layer. The input devices provide input events by capturing inputs from user activities or from external sources. For instance, pressing a key causes an input event.The kernel, an I/O subsystem based on the hardware and device-driver infrastructure, offers a number of functions including scheduling, caching, spooling, device reservation, and error handling. Additionally, the I/O subsystem is in charge of safeguarding itself against rogue programmers and malevolent users.

To learn more about  I/O subsystem refer to:

https://brainly.com/question/20331489

#SPJ1

Discuss a series of steps needed to generate value and useful insights from data?

Answers

The series of steps needed to generate value and useful insights from data are:

The data value chain is divided into four primary stages:

collection, publishing, adoption, and impact.

Identify, gather, process, analyze, release, disseminate, connect, motivate, influence, utilize, alter, and reuse are the twelve processes that comprise these four phases.

The step-by-step instructions for extracting actionable insights from data is given as follows:

Compile all raw dataReformat and pre-process dataClean up to make data senseStrategic data analysis.Find the best predictive algorithms. Validate the predictions. Make better data-driven decisions.What is the purpose of data?

Useful data enables companies to set baselines, benchmarks, and targets in order to keep moving ahead.

You will be able to build baselines, locate benchmarks, and set performance targets since data allows you to measure. A baseline is the state of a region before a certain remedy is adopted.

Learn more about Data:
https://brainly.com/question/28850832
#SPJ1

Which CPU sockets are supported by the motherboard and are the
least expensive? (Select two.)
17-975, 3.33 GHZ, 8MB Cache, LGA1366
AMD Phenom II X4 940 Black Edition
Intel Pentium 4 Processor 662
Intel Core 2 Duo Processor E6300
i7-930, 2.80 GHZ, 4MB Cache LGA1366

Answers

Answer:

Educated guess: The 662 and E6300, since the others are both i7. The 662 and E6300 are both socket LGA775.

Explanation:

The Intel Pentium and Core 2 lines are lower spec than Intel's i7 generations, so they must be cheaper. AMD is entirely different, and that Phenom II is AM2 socket type if I'm remembering correctly. This is all so dated. The E6300 there came out 16 years ago. That i7-930 is the most recent in the list and came out in 2010, 12 years ago.

Create two parallel arrays that represent a standard deck of 52 playing cards. One array is numeric and holds the values 1 through 13 (representing Ace, 2 through 10, Jack, Queen, and King). The other array is a string array that holds suits (Clubs, Diamonds, Hearts, and Spades).

Create the arrays so that all 52 cards are represented. Then, create a War card game that randomly selects two cards (one for the
player and one for the computer) and declares a winner or a tie based on the numeric value of the two cards. The game should last for 26 rounds and use a full deck with no repeated cards. For this game, assume that the lowest card is the Ace.

Display the values of the player’s and computer’s cards, compare their values, and determine the winner. When all the cards in the deck are exhausted, display a count of the number of times the player wins, the number of times the computer
wins, and the number of ties.

hints:
1) Start by creating an array of all 52 playing cards.
2) Select a random number for the deck position of the player’s first card and assign the card at that array position to the player.
3) Move every higher-positioned card in the deck “down” one to fill in the gap. In other words, if the player’s first random number is 49, select the card at position 49 (both the numeric value and the string), move the card that was in position 50 to position 49, and move the card that was in position 51 to position 50. Only 51 cards remain in the deck after the player’s first card is dealt, so the available-card array is smaller by one. In the same way, randomly select a card for the computer and “remove” the card from the deck.

Answers

Using the knowledge in computational language in python it is possible to write a code that Create the arrays so that all 52 cards are represented.

Writting the code:

import random

def result(playercards,computercards):

if playercards > computercards:

return 1

elif playercards < computercards:

return 2

else:

return 0 #both are equal

def play(cards):

print("-------------------------------------------")

print("Starting game")

playerwins=0

computerwins=0

ties=0

j=0

r=1

while(j<52):

print("**********************************")

print("Starting Round ",r)

playercards=cards[j]

print("playercard :",cards[j])

print("computercard :",cards[j+1])

computercards=cards[j+1]

res=result(playercards,computercards)

if res==0:

print("It is a tie")

ties+=1

elif res==1:

print("Player won")

playerwins+=1

else:

print("Computer won")

computerwins+=1

r=r+1

j=j+2

print("###########################################")

print("Final result")

print("Total Player wins :",playerwins)

print("Total Computer wins",computerwins)

print("Total ties ",ties)

print("Showing cards before shuffling")

cards=list(range(1,14))*4

print(cards)

random.shuffle(cards)

print("Shuffling cards\nDone")

play(cards)

See more about python at brainly.com/question/12975450

#SPJ1

Name two ways to store data

Answers

Answer:

Hard drives and solid-state drives

Explanation:

A firm that must invest in a new information system in order to comply with federal legislation is investing to achieve which of the following business objectives?

Answers

A firm that must invest in a new information system in order to comply with federal legislation is investing to achieve New product of the following business objectives.

What products are brand-new?

Brand-new goods or services are developed and advertised in marketing under a new brand. Along with the brand-stretching, line-extension, and multi-brand strategies, this is a brand strategy. The emphasis of the new strategy is on successfully developing and introducing new items.

A business can satisfy market demand for seasonal products by producing new products. Due to products that are appropriate for each season, customers are happy, and business is brisk. Innovation and creativity are effective ways to increase market share or sales.

Therefore, A new product is one that the company is releasing for the first time, even if it has been produced in the same form by others.

Learn more about Product from

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

(دانا
Physical appearance
OF Fith generation
computer

Answers

The physical appearance of the fifth-generation computers is VLSI architecture, parallel processing such as data flow control, and logic programming.

What are the generations of computers?

The phrase “generation” refers to a shift in the technology that a computer is/was using. The term “generation” was initially used to describe different hardware advancements.

These days, a computer system's generation involves both hardware and software. 5 Fifth Generation: The period of the fifth generation: 1980-onwards. ULSI microprocessor based.

Thus, fifth-generation computers have knowledge based on a relational database and applied artificial intelligence and pattern processing.

To learn more about Fifth generation computers, refer to the link:

https://brainly.com/question/9354047

#SPJ1

What is the fee involved in order for a Worker to use Microworkers service?
$9
$1
$2
None, Microworkers id free

Answers

None, Microworkers id free there is no charge .

What are microworkers ?

A microworker is someone who undertakes and completes these tasks. Tasks are generally easy and don't require a lot of time or skill. Microwork is often used as a way to make extra money because it can be done in a short period of time and does not require a long-term commitment. There are many of his Microwork sites that provide tasks that workers can perform. These sites include Amazon Mechanical Turk, Microworkers, and Clickworker. In Clickworker, microworkers are called Clickworkers.

learn more about microworkers here :

brainly.com/question/20851831

#SPJ13

An array is called vanilla if all its elements are made up of the same digit. For example {1, 1,
11, 1111, 1111111} is a vanilla array because all its elements use only the digit 1.
However, the array {11, 101, 1111, 11111} is not a vanilla array because its elements
use the digits 0 and 1.
Write a program that reads a string from a user that represent array and check if its a vanilla
array. Otherwise it will print message as in the sample run shown below and should continue to
allow the user to enter values. The program will terminate only if the user press the "Enter" key
without entering any value. For example the '{1}' is a vanilla array since all elements use the
same digit. Where '{11, 22, 13, 34, 125}' array is not vanilla array becuase elements used 5
different digits.

Answers

Using the knowledge in computational language in JAVA it is possible to write the code that An array is called vanilla if all its elements are made up of the same digit.

Writting the code:

import java.util.Scanner;  

public class Main

{

public static void main(String[] args) {

   

   

   

    int n;  

Scanner sc=new Scanner(System.in);  

System.out.print("Enter the number of elements you want to store: ");  

//reading the number of elements from the that we want to enter  

n=sc.nextInt();  

//creates an array in the memory of length 10  

int[] array = new int[10];  

System.out.println("Enter the elements of the array: ");  

for(int i=0; i<n; i++)  

{  

//reading array elements from the user  

array[i]=sc.nextInt();  

}

System.out.println("Array elements is: ");  

for(int i=0; i<n; i++)  

{  

   System.out.print(array[i]+" ");  

} System.out.println("\n");  

int res=0;  

int t;

int k;

for(int i=0; i<n; i++)  

{  

  t=array[i];

  while(t>0)

  {

      k=t%10;

      t=t/10;

      if(k==0)

      {

          res=1;

          break;

      }

  }if(res==1)

  {System.out.println("False it is not vanilla array");  

      break;

  }

 

}if(res==0)

{

   System.out.println("True it is  vanilla array");  

}

See more about JAVA at brainly.com/question/12975450

#SPJ1

Which of the following could be considered an algorithm?


directions for assembling a bicycle


the pages in a book


a file system directory


an application
F

Answers

The best answer is an application

difference between electronic and non electronic components

Answers

Answer:

The working principle of both of them are same, i.e., uses the electrical energy for doing work. The major difference between the electrical and electronic devices is that the electrical devices convert the electrical energy into the other form of energy like heat, light, sound, etc

What is variable view?

Answers

Answer:

Variable View contains descriptions of the attributes of each variable in the data file. In Variable View, rows are variables. Columns are variable attributes.

Explanation:

Data View is where we inspect our actual data and. Variable View is where we see additional information about our data.

How are additional slides added to presentations?

from the Drawing toolbar
by clicking on the New Slide icon
by selecting the New Slide option from the Insert menu
by selecting the New Slide option from the File menu

[ DO NOT REPLY FOR POINTS YOU WILL BE REPORTED ]
(multiple choice) (edgenuitу)

Answers

You are using PowerPoint? You are in luck! I am a PowerPoint master.

A. By clicking on the new slide option.

You can clearly see below that you have to click the new slide option

How can a LAN be changed into a WAN?

A) Connect every device in your household to the same network (phones, computers, tablets, and printers).
B) Include a printer on the network.
C) Connect several LANs from different geographical locations.
D) Add wireless devices to the network.

Answers

The way in which a LAN can be changed into a WAN is to: C) Connect several LANs from different geographical locations.

What is a LAN?

A LAN is an abbreviation for local area network and it can be defined as a group of personal computers (PCs), smartphones, printers, or terminals that are located within the same area and are connected by a common network cable or communication circuit.

What is a WAN?

WAN is an abbreviation for wide area network and it can be defined as a type of telecommunication network that covers a wide range of geographical regions such as states, especially for the purpose of communication between several end users that are residing in different countries or geographical regions across the world.

In order to change a local area network (LAN) into a wide area network (WAN), you should connect several local area networks (LANs) from different geographical locations together.

Read more on WAN here: brainly.com/question/8118353

#SPJ1

Answer:

It is C

Explanation:

In reference to computers, what is a firewall?

A) letters, numbers, and special characters assigned to unlock accounts and websites
B) email attachments
C) an installed software element that protects and monitors incoming and outgoing data
D) a second copy of files saved to a cloud

Answers

Answer:

C) an installed software element that protects and monitors incoming and outgoing data

Explanation:

4. Answer the following. a. Write the steps to create new presentation from Blank Presentation. How​

Answers

Create new presentation from a Blank Presentation using  PowerPoint by following these steps:

Launch PowerPoint.Select New from the left pane.

Select an option:

Choose Blank Presentation to start from scratch when creating a presentation.Choose one of the templates to use a ready-made design.To see PowerPoint tips, click Take a Tour, and then click Create.

With PowerPoint on your PC or on any device, you can:

Make a presentation from scratch or from a template.Text, images, art, and videos can all be added.Using PowerPoint Designer, choose a professional design.Include transitions, animations, and movement.Save your presentations to OneDrive so you can access them from your computer, tablet, or phone.Share and collaborate with others, no matter where they are.

To learn more about powerpoint presentations, visit: https://brainly.com/question/23714390

#SPJ9

Other Questions
10. Which organisms are responsible for spreading the heartworm? 7 paragraphs about "The giver" with a conclusion The polynomial P(x) of degree 4 hasa root of multiplicity 2 at x = 4 a root of multiplicity 1 at x = 0 and at x = -1 It goes through the point (5,21)Find a formula for P(x).P(x) =Question Help: Message instructor If Tristan borrows $4000 at an interest rate of 7.4% with a loan term of 3 years, how much does Tristan pay interest 1. If f(2)= -5, what does 2 represent?2. If f(2)=-5, what does -5 represent?3. What does f(2)= -5 mean? assuming an economy is initially at potential output, in the long run, an expansionary monetary policy is expected: (jk1)j when j=4 and k=0.9 which of the following statements about groundwater is not true? a.) roads built by humans enable water to soak into the earth. b.) lining and sealing wells can protect groundwater from biological or chemical contamination. c.) groundwater provides most of the drinking water consumed by humans. An athlete ran a total of 1,500 kilometer in race before retiring. The athlete finihed thirty-two 15-kilometer race. The ret were 10-kilometer race. How many of the race were 10-kilometer race? The chart shows the ethnicities of the US population.A piechart titled Population of Ethnic Groups in the United States (2014). White, 62.10 percent; black or African American, 13.22 percent; American Indian and Alaska Native, 1.24 percent; Asian, 5.44 percent; Native Hawaiian and Other Pacific Islander, 0.23 percent; Hispanic or Latino, 17.40 percent.In 2014, what percentage of the US population was Asian?1.24%5.44%13.22%17.40% Find the Length of X , please show how you found your answer PLEASE HELP!!! I WILL GIVE BRAINLIEST!!! Which type of source is not considered appropriate for academic research Primary source Secondary source Tertiary source All are appropriate for academic research the nurse is caring for a patient in the emergency department with an onset of pain related to trigeminal neuralgia. what subjective data stated by the patient does the nurse determine triggered the paroxysms of pain? how did the continuing dominance of agriculture and the slave system affect southern social, political, and economic life? Question 3 of 5What is one key characteristic of government in the United States?OA. Elected officials control the government.B. The federal government has little political power.OC. Each state has complete independence.D. All citizens vote on every major law and policy.SUBMIT 3. The mean of five positive numbers is 4. When another number is added, the mean becomes 8. Find the number added.the answer How could the information you share with others be used against you later? the burden of proof that a liquidated damages provision was unreasonable at the time of contracting rests on the party trying to: Help Please!Solve the inequality and graph its solution. Can someone help Solve for x.