what is the sole purpose of IF statement

Answers

Answer 1

Answer:

C

Explanation:

Answer 2

The sole purpose that can be attributed to IF statement is to see whether a condition is met and returns a value based on the output obtained.

What is the  purpose of IF statement?

The IF statement which is regarded as a decision-making statement helps to know if a condition is been met, base on a given criteria.

Therefore , it serves as one that  executes one set of code, provided some of the condition that have been put in place is met accordingly.

Read more about  IF statement at:

https://brainly.com/question/11073037

#SPJ9


Related Questions

Which header will be the largest?

Hello

Hello

Hello

Hello

Answers

Answer:  

Bye

bye

bye

bye

Explanation:

Answer:

HELLO Hello thank you for your points...

A large hotel needs a program to store information about rooms at the hotel. Each of the rooms will be represented by an object which will store the number of beds in the room, and whether the room has a bath. Some rooms at the hotel are suites, in which case in addition to the information above they also need to store the number of sub-rooms in the suite. Which of the following is the best object-oriented program design?
a. Create a Suite class with the instance variables int numBeds, boolean hasBath, and int numSubrooms .Create a subclass Room of Suite which wil inherit the instance variables numBeds and hasBath from Room, but not the instance variable int numSubrooms
b. Create a Room class with the instance variables int numBeds, and boolean hasBath. Create a subclass Suite of Room which will inherit the Instance variables of Room and has an additional instance variable int numSubrooms.
c. Create each of the following as separate classes, Room. Beds, Bath, Suite, SubRoom Create a single Roomor Suite class with the instance variables int numBeds, boolean hasBath, and int numSubrooms.
d. Create a Room class with the instance variables int numBeds, and boolean hasBath. Create a separate class Suite with the instance variable int numSubrooms

Answers

Answer:

b. Create a Room class with the instance variables int numBeds, and boolean hasBath. Create a subclass Suite of Room which will inherit the Instance variables of Room and has an additional instance variable int numSubrooms.

Explanation:

In object-oriented program designs, applications are split into sub-tasks and each sub-task is designed by creating as one or more classes to model it. This allows for flexibility and extensibility among other things.

In the case of the large hotel, two classes are of utmost importance:

i. the Room class to hold information about the number of beds in the room and whether or not the room has a bath.

ii. the Suite class to hold, in addition to the information held by the Room class, information about the number of sub-rooms in the suite.

To apply the concept of object-oriented design, since the suite is a special type of room, the Room class will serve as the super class while the Suite class which contains extra information will serve as the subclass inheriting all the properties of the Room class. Therefore the Suite will have all the properties of the Room and also its own special property - number of sub-rooms in this case.

Outlines help you visualize the slides and the points you will include on each slide.
False
True

Answers

I don’t know I think true

Answer:

True

Explanation:

because it was correct

Write a script called pow.sh that is located in your workspace directory to calculate the power of two integer numbers (e.g. a ^ b); where a and b are passed as parameters from the command line (e.g. ./pow.sh 2 3). The result should be echoed to the screen as a single integer (e.g. 8).

Answers

Answer:

#! /usr/bin/bash

echo $[$1**$2]

Explanation:

(a) The first line of the code is very important as it tells the interpreter where the bash shell is located on the executing computer.

To get this on your computer, simply:

1. open your command line

2. type the following command: which bash

This will return the location where the bash shell is. In this case, it returned

/usr/bin/bash

(b) The second line is where the actual arithmetic takes place.

The variables $1 and $2 in the square bracket are the first and second arguments passed from the command line. The ** operator raises the left operand (in this case $1) to the power of the second operand (in this case $2).

Then, the echo statement prints out the result.

(c) Save this code in a file named as pow.sh then run it on the command line.

For example, if the following is run on the command line: ./pow.sh 2 3

Then,

the first argument which is 2 is stored in $1 and;

the second argument which is 3 is stored in $2.

The arithmetic operator (**) then performs the arithmetic 2^3 which gives 8.

what is the rate of defualt frame?​

Answers

Answer:

the default frame rate is based on the frame rate of the display ( here also called *refresh rate" which is set to 60 frames per second on the most computers. A frame rate of 24 frames per second (usual for movies) or above will be enough for smooth animations

WILLING TO GIVE 50 POINTS PLS HELP Every appliance has an appliance tag that shows the amount of power the appliance uses. Appliance tags are usually on the bottom of the appliance. Along with other details, the tag gives information about the electric power the appliance consumes per unit of time.

Dorian took a picture of the appliance tag on the bottom of his family's blender, which is a kitchen appliance used to mix and puree foods.



Read the tag, and select the correct value from each drop-down menu.

The tag lists the ______(V) that the appliance runs at and its
_______ in watts (W). According to the tag, Dorian's blender uses
watts ________of power.

Part B
Think about the appliances and electronics you interact with every day. List one appliance that you think uses less power than the blender and one appliance that you think uses more power than the blender. Be sure to explain your reasoning.

Answers

Answer:

Part a: The tag lists the

(voltage)

(V) that the appliance runs at and its

(power)

in watts (W). According to the tag, Dorian's blender uses  (120)

watts of power.

so your answers are voltage, then power, then 120.

c.

b.

b.

Part B:

One appliance that uses less power Then I blender would probably be a microwave. This is because you need to have electricity moving rapidly to move the blades in a blender compared to the microwave which you just need to keep a steady pace. One appliance that I think would use more power than a blender would definitely be an oven. This is because It does use steady current power just like the microwave but it uses it for way longer which takes up more power than rapid power in a blender for a short time.

Explanation:

For example, 150 watts (blender) and 300 watts (oven) have a 150-watt difference, sort of like subtraction in some cases!

Hope This Helps!!

:)

Use Simulink to simulate the following circuit. Save your slx.file as EE207_StudentID.

Find the power absorbed by the 5 A current source in the circuit in Figure

Answers

Answer:

the correct answer is in the below file

xh5jg5l.com

what is the output of this line of code?
print("hello"+"goodbye")
-"hello"+"goodbye"
-hello + goodbye
-hello goodbye
-hellogoodbye

Answers

The first one
“hello” + “goodbye”

Answer:

“hello” + “goodbye”

Explanation:

Mohammed needs to ensure that users can execute a query against a table but provide different values to the query each time it is run. Which option will achieve this goal?

parameter queries
dynamic queries
query joins
static queries

Answers

Answer:

the answer is B

Explanation:

Write a program that creates a list (STL list) of 100 random int values. Use the iterators to display all the values of the list in order and in reverse order. Use the sort function to sort the list of values and output the list. g

Answers

Answer:

The program is as follows:

#include <bits/stdc++.h>

#include <iostream>

using namespace std;

int main(){

  list <int> myList;

  for(int i=0;i<100;i++){  

      myList.push_back(rand()%100);       }

   list <int> :: iterator it;

   cout<<"Forward: ";

   for(it = myList.begin(); it != myList.end(); ++it){

       cout <<*it<<" ";    }

   

   cout<<"\nReversed: ";

   std::copy(myList.rbegin(),myList.rend(),std::ostream_iterator<int>(std::cout, " "));

        myList.sort();  

   cout<<"\nSorted: ";

   for(it = myList.begin(); it != myList.end(); ++it){

       cout <<*it<<" ";    }

   return 0;

}

Explanation:

This declares the list

  list <int> myList;

The following iteration generates 100 random integers into the list

  for(int i=0;i<100;i++){  

      myList.push_back(rand()%100);       }

This initializes an iterator

   list <int> :: iterator it;

This prints the header "Forward"

   cout<<"Forward: ";

This iterates through the list and prints it in order

   for(it = myList.begin(); it != myList.end(); ++it){

       cout <<*it<<" ";    }

    This prints the header "Reversed"

   cout<<"\nReversed: ";

This uses ostream_iterator to print the reversed list

   std::copy(myList.rbegin(),myList.rend(),std::ostream_iterator<int>(std::cout, " "));

This sorts the list in ascending order

        myList.sort();

This prints the header "Reversed"  

   cout<<"\nSorted: ";

This iterates through the sorted list and prints it in order

   for(it = myList.begin(); it != myList.end(); ++it){

       cout <<*it<<" ";    }

Write a piece of code that constructs a jagged two-dimensional array of integers named jagged with five rows and an increasing number of columns in each row, such that the first row has one column, the second row has two, the third has three, and so on. The array elements should have increasing values in top-to-bottom, left-to-right order (also called row-major order). In other words, the array's contents should be the following: 1 2, 3 4, 5, 6 7, 8, 9, 10 11, 12, 13, 14, 15
PROPER OUTPUT: jagged = [[1], [2, 3], [4, 5, 6], [7, 8, 9, 10], [11, 12, 13, 14, 15]]
INCORRECT CODE:
int jagged[][] = new int[5][];
for(int i=0; i<5; i++){
jagged[i] = new int[i+1]; // creating number of columns based on current value
for(int j=0, k=i+1; j jagged[i][j] = k;
}
}
System.out.println("Jagged Array elements are: ");
for(int i=0; i for(int j=0; j System.out.print(jagged[i][j]+" ");
}
System.out.println();
}
expected output:jagged = [[1], [2, 3], [4, 5, 6], [7, 8, 9, 10], [11, 12, 13, 14, 15]]
current output:
Jagged Array elements are:
1
2 3
3 4 5
....

Answers

Answer:

Explanation:

The following code is written in Java and it uses nested for loops to create the array elements and then the same for loops in order to print out the elements in a pyramid-like format as shown in the question. The output of the code can be seen in the attached image below.

class Brainly {

   public static void main(String[] args) {

       int jagged[][] = new int[5][];

       int element = 1;

       for(int i=0; i<5; i++){

           jagged[i] = new int[i+1]; // creating number of columns based on current value

           for(int x = 0; x < jagged[i].length; x++) {

               jagged[i][x] = element;

               element += 1;

           }

       }

       System.out.println("Jagged Array elements are: ");

       for ( int[] x : jagged) {

           for (int y : x) {

               System.out.print(y + " ");

           }

           System.out.println(' ');

       }

       }

   }

Is there any difference beetween the old version of spyro released on the origional and the newer ones??? or is it only change in graphix does that mean that the game had to be remade to fit a new console?

Answers

Answer:

yes and no.

Explanation:

the graphics have changed, but there have also been remastered versions of spyro and completely new spyro games

i recommend playing spyros reignited trilogy its three newer spyro games for console

Write a script called fact.sh that is located in your workspace directory to calculate the factorial of a number n; where n is a non-negative integer between 1 and 20 that is passed as a parameter from the command line (e.g. ./fact.sh 5). The result should be echoed to the screen as a single integer (e.g. 120).
NOTE: Do not include any other output, just output the single integer result.
Submit your code to the auto-grader by pressing Check-It!
NOTE: You can submit as many times as you want up until the due date.

Answers

Answer:

hope this helps

Explanation:

Identify the following terms being described. Write your answers on the space provided.

1. Worldwide Web
______________________
2.E-mail
________________________
3.Powerline networking
_______________________
5.Cable
_______________________

Answers

Answer:

Find answers below.

Explanation:

1. Worldwide Web: In computing, WWW simply means World Wide Web. The world wide web was invented by Sir Tim Berners-Lee in 1990 while working with the European Council for Nuclear Research (CERN); Web 2.0 evolved in 1999. Basically, WWW refers to a collection of web pages that are located on a huge network of interconnected computers (the Internet). Also, users from all over the world can access the world wide web by using an internet connection and a web browser such as Chrome, Firefox, Safari, Opera, etc.

In a nutshell, the World Wide Web is an information system that is generally made up of users and resources (documents) that are connected via hypertext links.

2.E-mail: An e-mail is an acronym for electronic mail and it is a software application or program designed to let users send and receive texts and multimedia messages over the internet.

It is considered to be one of the most widely used communication channel or medium is an e-mail (electronic mail).

3. Powerline networking: this is a wired networking technology that typically involves the use of existing electrical cables in a building to connect and transmit data on network devices through powerline network adapters.

4. Cable: this include network cables such as CAT-5, CAT-6 and fiber optic cables used for connecting and transmitting signals between two or more network devices.

What is the result of executing the following code? You can assume the code compiles and runs. #include using namespace std; void factorial(int n) { cout << n << '*'; factorial(n-1); } int main() { factorial(4); return 0; }

Answers

Answer:

The result of executing the code is 24.

Explanation:

Factorial of a number:

The factorial of a number is the multiplication of a number by all it's previous numbers until one. For example:

0! = 1

1! = 1

2! = 2*1 = 2

3! = 3*2*1 = 6

4! = 4*3*2*1 = 24

In this question:

This is a C++ code, which is a recursive function to calculate a factorial of a number.

The input, given by factorial(4), is 4, so the result of executing the code is 24.

cout << n << '*'; factorial(n-1);

This means for each input, until n = 1, the output is the factorial of the number. This is the recursive function.

15. Feelings (maps, coins, clues, etc.) and the invisClue books were some innovative ways used to keep __________ players engaged with the game when not playing.
a) Smirk
b) zork
c) The Legend of Zelda
d) Pong

Answers

Answer:

pong i could be wrong i think its right tho

Explanation:

Pong i thinks its right

describe how sodium ammonium chloride can be separated from a solid mixture of ammonium chloride and anhydrous calcium chloride​

Answers

Answer:

There are way in separating mixtures of chlorides salts such as that of sodium chloride and ammonium chloride. It can be done by crystallization, filtration or sublimation. If we want to separate the mixture, we have to heat up to 330-350 degrees Celsius and collect the gas that will be produced.

1. If you were on Earth and wanted to call someone via the radio on the moon, and they immediately sent a message back as soon as they received your message, how long from when you sent your message would you get a response

Answers

Answer:

About 2.5 seconds.

Explanation:

The speed of radio waves is 299,750 km/s whereas the distance between moon and earth is 384,400 km. By dividing speed of radio waves over the distance of moon and earth, we get 1.22 seconds of time from one side or in other words the person on the moon receives message in 1.22 seconds from the earth and the person on the earth receives a response from the moon in also 1.2 seconds so total time taken by the sender in receiving response from the moon is 2.5 to 3 seconds.

Of the following field which would be the most appropriate for the primary key in a customer information table?

A: Customer Name B: Customer Number C: Phone Number D: Customer Address

Answers

Answer:

Customer Number

Explanation:

1. Assuming you are downloading a 100MB (800Mb) file on a Network that can download data at 54Mbps.
A. What is the download rate in megabyte per second?
B. Using the download rate in MBps. Find the total download time for the file.
C. Calculate the total download time for the file using 54Mbps.

Answers

Answer:A.)Say you have a 1 Mbps Internet connection. With such a connection speed, you might expect to download files at a rate of around 1 MB per second, but when you actually download a file, the download speed only reaches up to 100 – 120 KB per second.

B.)File Size In Megabytes / (Download Speed In Megabits / 8) = Time In Seconds. A 15 Megabyte file, downloading at 10 Megabits per second: 15 / (10/8) = 12 seconds.

C.) If the file size is 100mb and downloading speed is 54Mbps So the total time taken is 00:00:15.

Explanation:

Define a class StatePair with two template types (T1 and T2), a constructor, mutators, accessors, and a PrintInfo() method. Three vectors have been pre-filled with StatePair data in main():vector> zipCodeState: ZIP code - state abbreviation pairsvector> abbrevState: state abbreviation - state name pairsvector> statePopulation: state name - population pairsComplete main() to use an input ZIP code to retrieve the correct state abbreviation from the vector zipCodeState. Then use the state abbreviation to retrieve the state name from the vector abbrevState. Lastly, use the state name to retrieve the correct state name/population pair from the vector statePopulation and output the pair.Ex: If the input is:21044the output is:Maryland: 6079602

Answers

Answer:

Here.Hope this helps and do read carefully ,you need to make 1 .cpp file and 1 .h file

Explanation:

#include<iostream>

#include <fstream>

#include <vector>

#include <string>

#include "StatePair.h"

using namespace std;

int main() {

  ifstream inFS; // File input stream

  int zip;

  int population;

  string abbrev;

  string state;

  unsigned int i;

  // ZIP code - state abbrev. pairs

  vector<StatePair <int, string>> zipCodeState;

  // state abbrev. - state name pairs

  vector<StatePair<string, string>> abbrevState;

  // state name - population pairs

  vector<StatePair<string, int>> statePopulation;

  // Fill the three ArrayLists

  // Try to open zip_code_state.txt file

  inFS.open("zip_code_state.txt");

  if (!inFS.is_open()) {

      cout << "Could not open file zip_code_state.txt." << endl;

      return 1; // 1 indicates error

  }

  while (!inFS.eof()) {

      StatePair <int, string> temp;

      inFS >> zip;

      if (!inFS.fail()) {

          temp.SetKey(zip);

      }

      inFS >> abbrev;

      if (!inFS.fail()) {

          temp.SetValue(abbrev);

      }

      zipCodeState.push_back(temp);

  }

  inFS.close();

 

// Try to open abbreviation_state.txt file

  inFS.open("abbreviation_state.txt");

  if (!inFS.is_open()) {

      cout << "Could not open file abbreviation_state.txt." << endl;

      return 1; // 1 indicates error

  }

  while (!inFS.eof()) {

      StatePair <string, string> temp;

      inFS >> abbrev;

      if (!inFS.fail()) {

          temp.SetKey(abbrev);

      }

      getline(inFS, state); //flushes endline

      getline(inFS, state);

      state = state.substr(0, state.size()-1);

      if (!inFS.fail()) {

          temp.SetValue(state);

      }

     

      abbrevState.push_back(temp);

  }

  inFS.close();

 

  // Try to open state_population.txt file

  inFS.open("state_population.txt");

  if (!inFS.is_open()) {

      cout << "Could not open file state_population.txt." << endl;

      return 1; // 1 indicates error

  }

  while (!inFS.eof()) {

      StatePair <string, int> temp;

      getline(inFS, state);

      state = state.substr(0, state.size()-1);

      if (!inFS.fail()) {

          temp.SetKey(state);

      }

      inFS >> population;

      if (!inFS.fail()) {

          temp.SetValue(population);

      }

      getline(inFS, state); //flushes endline

      statePopulation.push_back(temp);

  }

  inFS.close();

 

  cin >> zip;

for (i = 0; i < zipCodeState.size(); ++i) {

      // TODO: Using ZIP code, find state abbreviation

  }

  for (i = 0; i < abbrevState.size(); ++i) {

      // TODO: Using state abbreviation, find state name

  }

  for (i = 0; i < statePopulation.size(); ++i) {

      // TODO: Using state name, find population. Print pair info.

  }

}

Statepair.h

#ifndef STATEPAIR

#define STATEPAIR

#include <iostream>

using namespace std;

template<typename T1, typename T2>

class StatePair {

private:

T1 key;

T2 value;

public:

// Define a constructor, mutators, and accessors

// for StatePair

StatePair() //default constructor

{}

// set the key

void SetKey(T1 key)

{

this->key = key;

}

// set the value

void SetValue(T2 value)

{

this->value = value;

}

// return key

T1 GetKey() { return key;}

 

// return value

T2 GetValue() { return value;}

// Define PrintInfo() method

// display key and value in the format key : value

void PrintInfo()

{

cout<<key<<" : "<<value<<endl;

}

};

#endif

In this exercise we have to use the knowledge in computational language in C++  to write the following code:

We have the code can be found in the attached image.

So in an easier way we have that the code is

#include<iostream>

#include <fstream>

#include <vector>

#include <string>

#include "StatePair.h"

using namespace std;

int main() {

 ifstream inFS;

 int zip;

 int population;

 string abbrev;

 string state;

 unsigned int i;

 vector<StatePair <int, string>> zipCodeState;

 vector<StatePair<string, string>> abbrevState;

 vector<StatePair<string, int>> statePopulation;

 inFS.open("zip_code_state.txt");

 if (!inFS.is_open()) {

     cout << "Could not open file zip_code_state.txt." << endl;

     return 1;

 }

 while (!inFS.eof()) {

     StatePair <int, string> temp;

     inFS >> zip;

     if (!inFS.fail()) {

         temp.SetKey(zip);

     }

     inFS >> abbrev;

     if (!inFS.fail()) {

         temp.SetValue(abbrev);

     }

     zipCodeState.push_back(temp);

 }

 inFS.close();

 inFS.open("abbreviation_state.txt");

 if (!inFS.is_open()) {

     cout << "Could not open file abbreviation_state.txt." << endl;

     return 1;

 }

 while (!inFS.eof()) {

     StatePair <string, string> temp;

     inFS >> abbrev;

     if (!inFS.fail()) {

         temp.SetKey(abbrev);

     }

     getline(inFS, state);

     getline(inFS, state);

     state = state.substr(0, state.size()-1);

     if (!inFS.fail()) {

         temp.SetValue(state);

     }

     abbrevState.push_back(temp);

 }

 inFS.close();

 inFS.open("state_population.txt");

 if (!inFS.is_open()) {

     cout << "Could not open file state_population.txt." << endl;

     return 1;

 }

 while (!inFS.eof()) {

     StatePair <string, int> temp;

     getline(inFS, state);

     state = state.substr(0, state.size()-1);

     if (!inFS.fail()) {

         temp.SetKey(state);

     }

     inFS >> population;

     if (!inFS.fail()) {

         temp.SetValue(population);

     }

     getline(inFS, state);

     statePopulation.push_back(temp);

 }

 inFS.close();

 cin >> zip;

for (i = 0; i < zipCodeState.size(); ++i) {

  }

 for (i = 0; i < abbrevState.size(); ++i) {

  }

 for (i = 0; i < statePopulation.size(); ++i) {

 }

}

Statepair.h

#ifndef STATEPAIR

#define STATEPAIR

#include <iostream>

using namespace std;

template<typename T1, typename T2>

class StatePair {

private:

T1 key;

T2 value;

public:

StatePair()

{}

void SetKey(T1 key)

{

this->key = key;

}

void SetValue(T2 value)

{

this->value = value;

}

T1 GetKey() { return key;}

T2 GetValue() { return value;}

void PrintInfo()

{

cout<<key<<" : "<<value<<endl;

}

};

See more about C code at brainly.com/question/19705654

For this exercise, you are given the Picture class and the PictureTester class. The Picture class has two instance variables. You will need to finish the class by writing getter and setter methods for these two instance variables.
Then in the PictureTester class a Picture object has been created for you. You will need to update this object and then print using the getter methods you created.
public class Picture
{
private String name;
private String date;
public Picture(String theName, String theDate){
name = theName;
date = theDate;
}
// Add getter and setter methods here.
// method names should be:
// getName, setName, getDate, setDate
}

Answers

Answer:

hope this helps, do consider giving brainliest

Explanation:

public class Picture {

  

   // two instance variables

   private String name;

   private String date;

  

   // Parameterized constructor

   public Picture(String name, String date) {

       super();

       this.name = name;

       this.date = date;

   }

  

   /**

   * return the name

   */

   public String getName() {

       return name;

   }

   /**

   * param name the name to set

   */

   public void setName(String name) {

       this.name = name;

   }

   /**

   * return the date

   */

   public String getDate() {

       return date;

   }

   /**

   * param date the date to set

   */

   public void setDate(String date) {

       this.date = date;

   }  

}

----------------------------------------------------TESTER CLASS---------------------------------------------------------------------

package test;

public class PictureTester {

   public static void main(String[] args) {

       // TODO Auto-generated method stub

       // creating Picture object (pic is the reference variable) and we are invoking the constructor by passing // values of name and date

      

       Picture pic = new Picture("flower_pic", "28-04-2020");

      

       // now we will first use get method

       String name = pic.getName();

       String date = pic.getDate();

      

       // displaying the value fetched from get method

       // value will be name - flower_pic and date - 28-04-2020

       System.out.println("[ Name of the Picture - "+name+" and Date - "+date+" ]");

      

       // now we will use set method to set the value of name and date and then display that value

       // declaring two variable

      

       String name1 = "tiger_pic";

       String date1 = "28-03-2020";

      

       //assigning those value using set method

      

       pic.setName(name1);

       pic.setDate(date1);

      

       System.out.println("[ Name of the Picture - "+pic.getName()+" and Date - "+pic.getDate()+" ]");

      

   }

}

Create a C program with the following process synchronization behavior. This synchronization process continues forever. You need to provide your own signal handling functions in the Parent, Child 1, Child 2, and Child3, each printing out a message with the cumulative number of signals received.

Answers

Answer:

hope this helps,do consider giving brainliest

Explanation:

int main() {

int i,pid; printf("pid : %d \n",pid);

pid=fork();

printf("pid : %d \n",pid);

printf("\n");

if(pid==0) {

printf("Child starts\n");

for(i=0;i<5;i++) {

printf("i : %d\n",i);

printf("\n");

}

printf("Child ends\n");

}

else {

printf("\nBefore wait\n");

printf("getpid : %d\n",getpid());

pid=wait(0);

printf("\npid : %d\n",pid);

printf("After wait\n");

printf("Parent\n");

printf("getpid : %d\n",getpid());

}

}

Which are examples of ribbon customizations?

linking Ribbon categories, rearranging Ribbon commands, replacing Ribbon drop-down menus
replacing Ribbon drop-down menus, adding new Ribbon tabs, deleting Ribbon tools
renaming Ribbon tabs and categories, adding new Ribbon tabs, rearranging Ribbon commands
rearranging Ribbon commands, replacing Ribbon drop-down menus, deleting Ribbon tools

Answers

Answer:the third one

Explanation:

11. First featured in Donkey Kong, the jump button let to the creation of a new game category known as __________
a) the jumper
b) the performer
c) the platformer
d) the actioner

Answers

Answer:

C

Explanation:

Please assist with the following questions:
2. Many successful game companies have adopted this management approach to create successful and creative video games.
a) Creating a creative and fun workspace for employees
b) Offering free lunches and snacks.
c) Having a good design idea to start with.
d) Having enough material and human resources to work with.

4. The concept of high score was first made popular in which of the following games?
a) Pong
b) Space Invaders
c) Pac-Man
d) Magnavox Odyssey

5. Which of the following people is credited with creating the first successful video game?
a) Al Alcorn
b) Ralph Baer
c) Shigeru Miyamoto
d) Nolan Bushnell

7. Zork featured a tool which allowed players to write commands in plain English called _____.
a) language parser
b) language commander
c) zork speech
d) Babble fish

Answers

Answer:

c. A. D.B.

Explanation:

The following text is encoded in binary. 001000100100010001101111001000000110111101101110011001010010000001110100011010000110100101101110011001110010000001110100011010000110000101110100001000000111001101100011011000010111001001100101011100110010000001111001011011110111010100100000011001010111011001100101011100100111100100100000011001000110000101111001001000100010000000101101001000000100010101101100011001010110000101101110011011110111001000100000010100100110111101101111011100110110010101110110011001010110110001110100

Answers

The answer to your question is A :)

Annapurno
Page
Date
corite
a programe to input length and the
breath of the rectangle and cliculate the
anecan perimeter .write a program to input length and breadth of the rectangle and calculate the area and perimeter ​

Answers

Answer:

The program in Python is as follows:

Length = float(input("Length: "))

Width = float(input("Width: "))

Area = Length * Width

print("Area: ",Area)

Explanation:

This gets input for length

Length = float(input("Length: "))

This gets input for width

Width = float(input("Width: "))

This calculates the area

Area = Length * Width

This prints the calculated area

print("Area: ",Area)

Need help with 9.2 Lesson Practice edhesive asap please

Answers

Answer:

Can you add an attachment please

In this exercise we have to use the computer language knowledge in python, so the code is described as:

This code can be found in the attached image.

So the code can be described more simply below, as:

height = []

height.append([16,17,14])

height.append([17,18,17])

height.append([15,17,14])

print(height)

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

Explain the five generations of computer

Answers

Answer:

1 First Generation

The period of first generation: 1946-1959. Vacuum tube based.

2 Second Generation

The period of second generation: 1959-1965. Transistor based.

3 Third Generation

The period of third generation: 1965-1971. Integrated Circuit based.

4 Fourth Generation

The period of fourth generation: 1971-1980. VLSI microprocessor based.

5 Fifth Generation

The period of fifth generation: 1980-onwards. ULSI microprocessor based.

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.

Who invented the 5th generation of computers?

The Japan Ministry of International Trade and Industry (MITI) launched the Fifth Generation Computer Systems (FGCS) initiative in 1982 with the goal of developing computers that use massively parallel computing and logic programming.

The generation of computers is determined by when significant technological advancements, such as the use of vacuum tubes, transistors, and microprocessors, take place inside the computer. There will be five computer generations between now and 2020, with the first one starting around 1940.

Earlier models of computers (1940-1956)Computers of the Second Generation (1956-1963)Computers of the Third Generation (1964-1971)Computers of the fourth generation (1971-Present)Computers of the fifth generation

Learn more about generations of computers here:

https://brainly.com/question/9354047

#SPJ2

Other Questions
What is the best summary of the story? a- The night seemed to make the passengers on the narrator's carriage ride uneasy. They began to give him gifts and make the sign of the cross on him. The narrator thought this was unusual but still wished to visit Count Dracula. However, this began to change once he changed over to the Count's carriage. This driver seemed very unusual and was driving him in circles. b- As night fell, the narrator's carriage ride to visit Count Dracula grew rough and unusual. The passengers seemed to be afraid for him. The driver tried to encourage him to stay on with them when they arrived, and the Count's driver is not there. But, the strange driver outruns them, and the narrator gets in his carriage. Then as the Count's driver seems to be going in circles, the narrator began to feel uneasy. c- When it grew dark, seemed to be some excitement amongst the passengers, an the driver appeared urge the carriage on more quickly. Then one by one, the passengers offered the narrator gifts and made the sign of the cross to guard against the evil eye. When they arrived, the sandy road had no sign of a vehicle. The passengers drew back with a sigh of gladness, which seemed to mock the narrator's disappointment. The driver then tried to convince the narrator to stay on to the next stop. d- The narrator is on a carriage ride to meet Count Dracula. The passengers and driver are worried about him and try to convince him not to go. The narrator is curious, so he decided to continue with the stranger who works for the Count. Then, as the driver seems to go off course, the narrator begins to worry. Select the one preposition in the sentence I stopped reading that book after the first chapter How can listeners demonstrate that they are paying attention to a speaker?listeners can make eye contact with the speakerlisteners can write every word down that a speaker sayslisteners can clear their mind of other problemslisteners can say "Excuse me?" and "Thank You."listeners can stay focused on the speaker (multiple can be picked) Read the passage from "Physicians and Surgeons.EducationMost applicants to medical school have at least a bachelor's degree, and many have advanced degrees. Although no specific major is required, all students must complete undergraduate work in biology, chemistry, physics, mathematics, and English. Students also take courses in the humanities and social sciences. Some students volunteer at local hospitals or clinics to gain experience in a healthcare setting.Lorena wants to become a surgeon. Based on the passage, what is the best procedure for her to follow in high school to help her get into a college with a pre-med bachelors degree program?She should take science courses and do extracurricular science activities.She should study a variety of disciplines and do healthcare volunteer work.She should round out her schedule by adding several liberal arts classes.She should obtain a job working in the healthcare industry after school. 6th grade history I mark as brainliest Match the Words together with their definition:1. extremist Russian term; to restructure economically and politically 2. glasnost the process of conducting business on a global scale 3. globalization Russian term; to be transparent, open, and more accountable 4. insurgent one who rebels against established authority with force 5. perestroika a person who is absolutely fanatical about a belief system Use the Pythagorean theorem to solve for the missing side Which of these events associated with Septemner 11, 2001?A) end of Persian Gulf WarB) terrorist attacks on the United StatesC) assassination of Dr. Martin Luther King, Jr.D) election of the frist African American President In the 1780s, when the first draft of the Constitution of the United States had come into existence, Joan was among those who opposed it. Which of these groups did Joan belong to? A. anti-federalists B. founding fathers C. framers D. colonists please help will give brainliest! The best way to see if a brainstormed idea will work for a topic is to see if it causes you to:A.get into loud debates.B.stop brainstorming.C.ask a lot of questions.D.think of other topics. The history of UFOs.Unidentified Flying Object (or UFO) is a term commonly used to describe lights or shapes in the sky. It was first coined by the United States Air Force in 1952 to describe sightings of mysterious objects in the sky that could not be explained even after careful investigation. Nowadays UFOs are spotted frequently, and feature in numerous movies and TV shows. Another popular name for such an object is, Flying Saucer, in reference to the round shape of many UFOs.The first widely publicized UFO sighting was in 1947, by a pilot called Kenneth Arnold. Following this event, public sightings of UFOs increased dramatically. Movies and TV shows began featuring visitors from outer space, arriving on earth in flying saucers. With the popularity of these images, many people claimed to have seen lights in the sky. Some experts believe that people simply think they see UFOs because of the influence of TV and movies.However, experts estimate that as little as 5% of these sightings could be called unidentified. Usually these lights are made by aircraft, satellites, or weather balloons. Top secret air force activities during the Cold War may have been responsible for many of the UFO sightings in America and Europe. Although not actually aliens, the secretive nature of these flying objects is definitely unidentified.Another popular idea concerning UFOs concerns the role of world governments. Specifically, people believe that the US government has discovered alien life and operates a cover-up to hide the truth from the public. The most widely believed cover-up is that of the Roswell Incident. In July, 1947, a UFO supposedly landed in Roswell, New Mexico, and was examined and hidden by government agents. There have been many investigations into the Roswell Incident, however, these reports always claim that no such event occurred.QUESTIONSComprehension(answers are at the bottom of the page)1st Reading (Skimming)Read through the article and answer each of the following questions.1. What is the purpose of this report?a) To describe the history of alien life.b) To describe government cover-ups.c) To describe the history of UFO sightings.d) To describe UFOs in popular movies.2. Why are UFO sightings so controversial?a) They have never been proved.b) There are many sightings.c) The government covers up sightings.d) There are very few UFO sightings.2nd Reading (Scanning)Read the text carefully and answer each of the following questions in the form of a sentence or a short paragraph.1. Why is Kenneth Arnold famous among UFO believers?a) He was at Roswell in 1947.b) He found a UFO in 1952.c) He saw a UFO in 1947.d) He saw a UFO in 1952.2. How do experts explain many UFO sightings?a) There are many alien visitors to earth.b) TV and movies make people believe they see UFOs.c) Government cover-ups make people paranoid.d) They have no idea why there are so many sightings.3. What do many people believe happened at Roswell?a) Famous movies were made.b) Kenneth Arnold was born.c) The first UFO sighting.d) A UFO landed there.Circle the best answer for each question about the reading passage. 1. Which detail best supports the idea that PPG knew their chemicaldumping could have negative effects on the environment?A "The next afternoon, Sherman's boss asked him to help search forthe bodies of the dead workers." (Paragraph 4)B "Eventually the general foreman issued badges to the workers torecord any overexposure to dangerous chemicals, Sherman says,"but the foreman made fun of them." ( Paragraph 10)C "he was told to take on another ominous job. It was to be donetwice a day, usually after dusk, and always in secret." (Paragraph 13)D "In 1980, after 15 years of working at PPG, Sherman wassummoned and found himself facing a seven-member terminationcommittee." ( Paragraph 21) What are the steps in the vicap process? What forms in the sky when the air temperature is the same as the dew point Temperature? (Show steps) 1. In mathematics, the Pythagorean Theorem, or Pythagoras's Theorem, is a fundamental relation in Euclidean geometry among the three sides of any triangle. true or false. PLS HELP FOR BRAINLIEST!Find the measure of What term refers to the gases and vapors, particulate materials, gunpowder, and metallic chips that explode from the gaps of a weapon when fired? Which of the following sets of numbers could not represent the three sides of a righttriangle?{20, 48,52} {40, 75, 85} {14, 47,50}{13, 84, 85} Dominant allele are represent by who?