Write a program in QBASIC to display the first 10 numbers of the fibonacci series:
0,1,1,2,3,5,... up to 10 terms.

(Hint- Take the first two numbers 0 and 1. Now obtain the next number by adding them. For example:0+1=1)

Answers

Answer 1

Answer:

#include<iostream>

using namespace std;

int main()

{

int a=0,b=1;

int i,c;

cout<<a<<" "<<b<<" ";

for(i=3;i<=10;i++)

{

 c=a+b;

 cout<<c<<" ";

 a=b;

 b=c;

}

return 0;

}

Explanation:

Write A Program In QBASIC To Display The First 10 Numbers Of The Fibonacci Series:0,1,1,2,3,5,... Up

Related Questions

Write a program that outputs a subtraction practice problem for a student, outputting the larger random number
first and the smaller random number second.

this is in C++ and i cant figure it out

Answers

Answer:

#include <stdio.h>

#include <stdlib.h>

#include <time.h>

int main(void)

{

   srand(time(NULL));

   int num1, num2;

   int val;

   while (true)

   {

       num1 = rand() % 100 + 1; //Random number between 1-100

       num2 = rand() % 100 + 1; //Random number between 1-100

       if (num1 >= num2)

       {

           printf("%d - %d = ", num1, num2);

           scanf("%d",&val);

           if (val == num1-num2)

           {

               printf("Correct!\n");

           }

           else

           {

               printf("Incorrect!\n");

           }    

       }

       else

       {

           printf("%d - %d = ", num2, num1);

           scanf("%d",&val);

           if (val == num2-num1)

           {

               printf("Correct!\n");

           }

           else

           {

               printf("Incorrect!\n");

           }

       }    

   }

}

Explanation:

First, we create two random numbers and save the values.  Then we check to see which value is larger.  Based on that, we change how we display the format to the user.  Then we check to see if the user input number is equivalent to the subtraction problem.  If it is, we display Correct!  Else, we display Incorrect!

Cheers.

Macro photographs are what type of photographs? A. Close-up B. Telephoto C. Abstract D. All of the above

Answers

Answer:

A

Explanation:

they are close up. they are not telephoto or abstract

marco can be telephoto, but it is not nessacarily always telephoto. marco is by definition a close up photo

Let's review. What can be stored in a
variable? Why is using a meaningful
name for the variable important?

Answers

Answer:

In this lesson students work with partners to investigate several versions of the "Thermostat App" to understand how variables store and update information. To begin, students examine a version of the app where the temperature displayed changes each time a button is clicked. The next two versions of the app demonstrate how variables can store strings. Students learn about the patterns they are observing, specifically "Counter Pattern with Event" and "Variables with String Concatenation Pattern". To conclude the lesson, students review and discuss the programming patterns that they will make use of in the programs they write.

Explanation:

basta isagot mo

What should a web page designer consider when choosing between fixed positioning and absolute positioning?

Answers

Answer:

The answer is C I think.

Explanation:

What a web page designer should consider when choosing between fixed positioning and absolute positioning is that ;

the web page designer should know if the page can be found easily.

Since fixed positioning is relative to the browser window and  absolute positioning on the other hand  is been placed on specific place on a web page, then the web page designer should know if the page can be found easily.

Therefore, fixed positioning is relative to the browser window.

Learn more about positioning at;

https://brainly.com/question/15683939

Which computers were the first PCs with a GUI
MS-DOS
Linux
Windows
Mac

Answers

Answer:

The first computer with a GUI were linux, microsoft and apple.

Explanation:

I think this is right. Hope it helped <3

Answer:

I think it's "Mac"

Explanation:

Sorry if it was wrong

What is the next line?
>>> aDeque = deque('happy')
>>> aDeque.append('me')
>>> aDeque

deque(['happy', 'me'])
deque(['h', 'a', 'p', 'p', 'y', 'me'])
an error statement
deque(['happyme'])

Answers

Answer:

deque(['h', 'a', 'p', 'p', 'y', 'me'])

Explanation:

Answer:  B)deque(['h', 'a', 'p', 'p', 'y', 'me'])

Explanation:

Edge2021

C
Describe the scope of the variables in this code.
class cholesterol:
low Density = 0
highDensity = 0
class patient:
definit__(self, firstName.lastName,id Num):
self.firstName = f[rstName
self.lastName = lastName
self.id Num = idNum
def str (self):
return self.firstName +""+self.lastName + " + self.id Num
The scope of high Density is limited to the patient class
The scope of firstName is limited to the cholesterol class

Answers

Answer:

The scope of highDensity  is accessible by the entire program .

The scope of firstName  is limited to the patient class .

Explanation:

Correct answer edge 2020

The scope of highDensity is limited to the cholesterol class and the scope of the firstName is limited to the patient class.

Variable scope

The accessibility of a program is described by the scope of a variable.

To put it another way, it's the part of the program where the variable is identified.

The place you declared a variable determines the scope. There are two major scopes of variables in python.

Global variablesLocal variables

Therefore, the scope of highDensity is limited to the cholesterol class and the scope of the firstName is limited to the patient class.

learn more on variable scope here: https://brainly.com/question/21065208

#SPJ2

While Angela is making modifications to Katie’s Word document, she would like to inform Katie of the reasoning for the change.

Which feature should Angela use?

Track Changes
email
Comments
Save File

Answers

Answer:

i think it's comments

Not too sure

While Angela is making modifications to Katie’s Word document, the feature that Katie should use is comments. The correct option is c.

What is a Word document?

Microsoft Office is thought of as including Microsoft Word. Word, PowerPoint, Excel, Outlook, and a number of other programs are included in the Office suite of Microsoft tools.

These may be used on Windows or macOS and are suitable for both personal and professional use. They are not the same thing; Microsoft Word is merely one of such app.

A comment is a section or tool that can be used by the editor of the Word document. Comments can be added to correct the document and to give information that can be specified, and comments can be removed.

Therefore, the correct option is c. Comments.

To learn more about Word documents, refer to the below link:

https://brainly.com/question/26695071

#SPJ5

Catherine purchased dried herbs from the grocery store. Which structure would she use if wanted to create a mixture of powdered herbs by pounding them repeatedly using a mortar and pestle?

A.

looping structure

B.

selection structure

C.

sequence structure

D.

conditional structure

Answers

Answer: C. sequence structure

Explanation:

Catherine would use the sequence structure to achieve her results of powdered herb after pounding the herbs.

In a sequence structure, an action, or event, tends to lead to the next action in an order which has been predetermined. The sequence can contain any number of actions, but no actions can or must be skipped in the sequence.

This means she has to go through the pounding process to achieve the powdered state.

Answer:

A. Looping structure

Explanation:

I just took the test

Which are some examples of transitional words?

look, prepare, send
next, then, finally
can't, won't, wouldn't
if, even, all

Answers

Answer:

then,next,finally

.............

Next,then,finally :).

Which statement will remove 12:'uno' from the dictionary?

games = {8:'scrabble', 10:'xbox', 12:'uno'}

games.remove()

games.pop(12)

games.pop()

games.remove(12)

Answers

Answer: games.pop(12)

Explanation:

In a dictionary sequence, .pop() alone does not work as the variable needs to be defined. Adding 12 allows Python to identify this variable. .remove() does not work with or without a variable.

Answer:

games.pop(12)

Explanation:

Please Help. Which of the following statements about wide area networks are true? Select 3 options.


A. typically uses Eethernet and wireless routers to connect devices

B. connects devices in a large geographic area

C. is usually managed by a single business

D. may be controlled by multiple entities

E. connections usually occur through a public network

Answers

Answer:

B, D, E

Explanation:

The public Internet is largest WAN in the world.

A LAN (Local Area Network) typically uses Ethernet and Wireless Routers to connect devices.

A single business would not usually manage a WAN because this would create a monopoly, which is why competition is intentionally created between Internet Service Providers (ISPs), though sometimes a single business could manage a WAN via MPLS, etc.

Answer:

- connects devices in a large geographic area

- may be controlled by multiple entities

- connections usually occur through a public network

Explanation:

A wide area network (WAN) connects devices across a broader area like a city. It can provide connections across multiple countries. A wide area network may be managed and controlled by multiple entities. LANs connect to WANs to create a network of networks. The internet is considered the largest WAN.

(Confirmed on EDGE)

I hope this helped!

Good luck <3

what aspects of your life are most influenced by media and technology​

Answers

Answer:

Everyday life

Explanation:

Television

office work (computers )

Music

video games

ware house work uses technology

work from home jobs use technology

cellular towers

Create a program that draws a rectangle whenever you click the mouse. The rectangle should have a width of 30 and a height of 50 and be centered at the place where the user clicks. Remember, the position of a rectangle is the top left corner. To place the rectangle at the center of the click, you will need to adjust the position.

Answers

Answer:

RECT_HEIGHT = 50

RECT_WIDTH = 30

rect = Rectangle(50,30)

       

# random.choice returns a random value from the COLORS

# function will draw a rectangle at x, y

def draw_rect(x, y):

   rectangle = Rect(50, 30)

   rect.set_position(x, y)

   rect.set_color(Color.green)

   add(rect)

# Link to the mouse click event

   add_mouse_click_handler(draw_rect)

Explanation: Hope this works for you.

mha ship what yo fave

Answers

Answer:

umm the first one I think..? lol

Answer:

both of them are my fav

Explanation:

Which of the following correctly describes the reason for quality customer service?

Answers

The correct answer is C. Keep existing customers and clients
Explanation:
Customer service refers to the interaction with customers and support employees in a company provide to customer to guarantee he or she has the best experience when buying one product or service. A high-quality customer service implies providing complete information to customers, and helping them before, during, and even after their process in buying or looking for information in a company. The main purpose of this is that customers feel the support from employees, and are loyal to the company which means they will go back if they need the same service or products. Thus, the reason for quality customer service is "Keep existing customers and clients".

The introduction of an academic paper must include a:

A) thesis statement

B)transition sentence

C) quotation

D) restatement

Answers

Answer:

A

Explanation:

The introduction of an academic paper must include a: Thesis Statement

Answer:

A.) Thesis Statement

Explanation:

You should start with a thesis statement that way your audience knows what your paper will be about. It makes a claim, directly answering a question.

Hope this helped♥

An array is another name for a list.

True or false. With explanation.

Answers

Answer:

True

Explanation:

An array could state a particular or indefinite number of items in order. The word is also synonymous to list

Answer:

True

Explanation:

Choose the correct item. Check your answers in the text.
3​

Answers

Answer:

You should do that

Explanation:

You didnt say anything

If a song is public domain, that means:

Check all that apply.

Portions of the song may be used at will.

The song may be recreated without fee.

No fee is owed for using the original song in its entirety.

None of the above.

Answers

Answer: C

Explanation:

Public Domain mean public owns it and it don’t belong to an individual author or artist. Anyone can use a public domain without obtaining permission but can’t ever own it

Answer:

It’s actually A,B, and C

Explanation:

Which of the following would most likely be the target audience for a product
advertised on TV during Saturday morning cartoons?
A. Young adults between the ages of 17 and 25
B. Children between the ages of 5 and 12
C. Men over the age of 65
D. Women over the age of 50

Answers

Answer:

B

Explanation:

They are saturday morning cartoons. Saturday morning cartoons are meant towards an audience of young children.

I think its b if i get wrong i sorry

i’m failing this class and i’m stuck on this one, this is the code from the last lesson:

def GPAcalc(grade, weighted):
grade = grade.lower()
dictionary = {"a":4, "b":3, "c":2, "d":1, "f":0}
if weighted == 1 and grade in dictionary:
return "Your GPA score is: " + str(dictionary[grade] + 1)
elif weighted == 0 and grade in dictionary:
return "Your GPA score is: " + str(dictionary[grade])
else:
return"Invalid"

print(GPAcalc(input("Enter your Letter Grade: "), int(input("Is it weighted? (1 = yes, 0 = no) "))))

Answers

lst=([])

def avgGPA(lst1):

   total = 0

   count = 0

   for x in lst:

       if type(x) == int:

           total += x

           count += 1

   return total/count

def GPAcalc(grade, weighted):

   grade = grade.lower()

   dictionary = {"a": 4, "b": 3, "c": 2, "d": 1, "f": 0}

   if weighted == 1 and grade in dictionary:

       lst.append(dictionary[grade]+1)

       return "Your GPA score is: " + str(dictionary[grade] + 1)

   elif weighted == 0 and grade in dictionary:

       lst.append(dictionary[grade])

       return "Your GPA score is: " + str(dictionary[grade])

   else:

       lst.append("Invalid")

       return "Invalid"

classes = int(input("How many Classes are you taking? "))

i = 0

while i < classes:

   print(GPAcalc(input("Enter your Letter Grade: "), int(input("Is it weighted? (1 = yes) "))))

   i += 1

print("Your weighted GPA is a "+str(avgGPA(lst)))

If you need me to change any code, I'll do my best. I hope this helps!

HELP ME PLSSSS
Why are peripherals added to computers????
15 points!

Answers

A piece of computer hardware that is added to a computer in order to expand its abilities. ... Subsystem that transfers data between computer components inside a computer or between computers. Unlike a point-to-point connection, it can logically connect several peripherals over the same set of wires.

Answer:

Expand their capabilities

Explanation:

What can you do with python on a Chromebook

I am on a Chromebook and lately I have been leaning python on my PC at home, I had saw a video on how you could make python bots but that was on window OS and i am just asking if there is any thing cool i could be doing on my Chromebook and if possible only need a google chrome tab to work..

Answers

A Chromebook runs ChromeOS as its operating system and historically running anything other than a web app–such as Python–was challenging. However, that is no longer the case! You can now run Linux apps on ChromeOS which opens the door to using MiniConda to install Python 3.

Write at leaat 20 shortcuts on the Microsoft word.​

Answers

Answer:

Open a document: Ctrl + O.

Create a new document: Ctrl + N.

Save the current document: Ctrl + S.

Open the Save As window: F12.

Close the current document: Ctrl + W.

Split the window: Alt + Ctrl + S.

Copy: Ctrl+C

Paste: Ctrl+V

Cut the current selection: Ctrl + X

Copy the current selection: Ctrl + C

Paste the contents of the clipboard: Ctrl + V

Bold: Ctrl + B

Italics: Ctrl + I

Underline: Ctrl + U

Underline words only: Ctrl + Shift + W

Center: Ctrl + E

Make the font smaller: Ctrl + [

Make the font bigger: Ctrl + ]

Change text to uppercase: Ctrl + Shift + A

Change text to lowercase: Ctrl + Shift K

Insert a page break: Ctrl + Enter

Add a hyperlink: Ctrl + K

Explanation:

PLEASE HELP ASAP!!!!!!!!

Which option describes wearable technology? A. the incorporation of technology into objects we use regularly B. rugged technology that can withstand the elements without much damage C. computing systems that derive energy from the user's biological processes D. mobile technology that is extremely portable E. extremely small and powerful computing systems

Answers

Answer:

A

Explanation:

Things such as watches and clothes are common items which technology is incorporated to. This includes things implanted in the body. These are all wearble technologies.

Ha Yoon sees funny quotes on top of images frequently in her social media feed. One day, she has an idea for one of her own. Which of these websites would be most likely to help her create what she wants? Group of answer choices a PDF generator an infographic template a meme generator a digital image editor

Answers

Answer:

Digital Image Editor

Explanation:

Ha Yoon is not trying to create a meme, or a text document (PDF), so the answer must be Digital Image Editor.

what is the output of this program ? Assume the user enters 3,6 and 11​

Answers

Answer:

C++

Explanation:

C++ Standards

C++ is standardized as ISO/IEC 14882. Currently, there are two versions:

C++98 (ISO/IEC 14882:1998): First standard version of C++.

C++03 (ISO/IEC 14882:2003): minor "bug-fix" to C++98 with no change to the language. Commonly refer to as C++98/C++03 or First C++ standard.

C++11 (ISO/IEC 14882:2011): Second standard version of C++. Informally called C++0x, as it was expected to finalize in 200x but was not released until 2011. It adds some new features to the language; more significantly, it greatly extends the C++ standard library and standard template library (STL).

C++14: Infomally called C++1y, is a small extension to C++11, with bug fixes and small improvement.

C++17: informally called C++1z.

C++2a: the next planned standard in 2020.

C++ Features

C++ is C. C++ supports (almost) all the features of C. Like C, C++ allows programmers to manage the memory directly, so as to develop efficient programs.

C++ is OO. C++ enhances the procedural-oriented C language with the object-oriented extension. The OO extension facilitates design, reuse and maintenance for complex software.

Template C++. C++ introduces generic programming, via the so-called template. You can apply the same algorithm to different data types.

STL. C++ provides a huge set of reusable standard libraries, in particular, the Standard Template Library (STL).

C++ Strength and Pitfall

C++ is a powerful language for high-performance applications, including writing operating systems and their subsystems, games and animation. C++ is also a complex and difficult programming language, which is really not meant for dummies. For example, to effectively use the C++ Standard Template Library (STL), you need to understand these difficult concepts: pointers, references, operator overloading and template, on top of the object-oriented programming concepts such as classes and objects, inheritance and polymorphism; and the traditional constructs such as decision and loop. C++ is performance centric. The C++ compiler does not issue warning/error message for many obvious programming mistakes, undefined and unspecified behaviors, such as array index out of range, using an uninitialized variable, etc, due to the focus on performance and efficiency rather than the ease of use - it assumes that those who choose to program in C++ are not dummies.

Which of the following is a category of authentication tools. A something you have B something u see c something you hear d something you want

Answers

Answer:

Explanation:

Something you have.

Answer:

something you have

Explanation:

What is the definition of a nested function?
O a cell that is used in two different functions
O arguments defined inside of two functions
O arguments defined inside of arguments inside of a function
O a function defined inside of another function

Answers

Answer:

d

Explanation:

Answer:

D. a function defined inside of another function

Explanation:

hope this helps :)

Other Questions
what is slope of the line If there is 2 circles and the larger one has a circumference of 30pi and the smaller circle has a circumference of 10 what is the radius of the smaller circle Cody plays an online game that allows users to trade points earned from the game for pieces of gold that could be used as currency to trade among players. The function P(g)=50g+14,590 represents the number of points, P, Cody has after purchasing g pieces of gold. What does the y-intercept of P(g) represent for this situation? The formula B = 2HL can be used to determine the number of bricks, B, needed to build a wall of height H and length L.What is the height of a wall built 28 feet long and requires 1736 bricks? LaTanya will walk (3 mi/hr) her bike from her house to thebike shop, which is 1.5 mi from her house, to get the bikefixed. She expects to wait 30 min for the repair. Then shewill ride (10 mi/hr) her bike home. How long will it takeher to get home?A)2.12 hrB)2hrC)1.15D)4hr A student is helping his teacher move a 40.0 kg aquarium. What net sideways force must he exert on the aquarium to slide it across the floor so that it accelerates at 0.50 m/s2? Could you help me solve this? The sum of two numbers is 56, and their difference is 10. What are the numbers? A. 33 and 23 B. 30 and 26 C. 20 and 36 D. 20 and 30 What are the names of the two types which are found in philiphines A brown outline around a frame is an indication of which tool? Which of the following cities went from a small Midwestern town to a major metropolis between 1840 and 1900?New YorkChicagoRochesterPhiladelphia How did the Northwest Ordinance influence the expansion of the UnitedStates?O A. It allowed American Indians to become full citizens of the UnitedStates.B. It made it clear that people living in U.S. territories had the samerights as people living in established states.C. It outlawed slavery in all future territories the United States mightclaim.D. It immediately added five new states to the country. PLEASE HELP ASAP!! AND PLEASE SHOW ALL WORK THANK YOU!! 10x + 5 + 3x +1 = Which sentence is written in a style for reader interest?Chanelle spent the day helping her grandmother sort through old photographs and other memorabilia.Chanelles grandmother reminisced about times past as she and Chanelle looked through old photographs of friends and family.Chanelle's grandmother told her fascinating stories about the people in the old photographs from when she was young and living in Chicago.Chanelle and her grandmother looked through old photographs of when her grandmother was young. What is the equation of the line that goes through (-3,-1) and (3,3)? A. 3x + 2y = 15 B. 3y + 2x = 15 C. 3x 2y = 3 D. 2x 3y = -3 This one is an "essay" answer. I only need 2+ sentences though! WILL GIVE BRAINLIEST TO BEST ANSWER! Observe the data chart below and explain how the mass of each ball affects its motion. Baseball Bowling Ball Beach Ball Tennis Ball400 grams 900 grams 10 grams 60 grams Identify the vertical asymptotes of f(x) =10x? - 7x - 30O x = 10 and x = 3x = 10 and x = -3Ox= -10 and x = 3Ox= -10 and x = -3 Do you think that the League of Nation would have been more successful if the United States had been a member? Enter the desimal equivalent of 6Plz hurry Select all the points that are on the graph of the line y = -1/2x +5 0,5 0,10 1,2 1,45,010,0