
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
expand_more
expand_more
format_list_bulleted
Question
In visual basic, or Visual Studio
- Create the following output using nested For…Next loops:
1 6 11 16
2 7 12 17
3 8 13 18
4 9 14 19
5 10 15 20
- Write a nested For…Next loop to create the following pattern:
1
1 2
1 2 3
1 2 3 4
1 2 3 4 5
Expert Solution

arrow_forward
Step 1
Answer:
Part-1:
#include <iostream.h>
using namespace std;
int main()
{
int k;
for(k=1;k<=20;k++)
{
cout<<k;
}
cout<<endl;
system(“stop”);
return0;
}
Step by stepSolved in 2 steps

Knowledge Booster
Similar questions
- True or False ___(4) In a while loop, the body of the loop has to be executed at least once whether the test is true or not. ___(5) In Java a while loop can be changed to a for loop and vice versa. ___(6) Java statement !( x / 3 = = 6 ) || y*3 = = -6 ; evaluates to false if x=19 and y= -2arrow_forwardIn visual studio please answer For 1-4, Using a For…Next, Do While, or Do Until Loops, create the following loops. 1. Print all integer values from 0 to 10 2. Print all the odd numbers from 1 to 100 3. Print all the even numbers from 2 to 50 4. Print out every other odd number from 1 to a user specifiable upper limit (inclusive)arrow_forwardIn PYTHON Using one of the loop construct draw:- Ten dashed Horizontal lines- Each line of length 150 units (or pixels)- All lines aligned at the same left vertical margin- Lines 10 units apart each other Note- Set the length of solid segment to 10 units- Set the length of the non-visible segment to 5 units Assumption- Use of Turtle library (i will check the answer, it has to be correct)arrow_forward
- In c#arrow_forwardflowchart in visual basicarrow_forwardGraphics / Fonts on digits, characters etc. 1. Generate graphics of digits 0, 1, 2, 3, .., until 8, and 9. Write Java program that generates the 10 digits 0, 1, 2, 3, .., until 9 (a) Display it like stick fonts as displayed in LED such as follows: 0123 Note your design does not have to be similar to mine like above, but just make it look like sticks that probably use drawLine method in class Graphics (b) Display it using pixels like dot matrix printer or bitmap image such as follows (you may use some fillRect method in class Graphics) 0123 (c) Display Graphic or image fonts for English letters (5 is enough). Make fonts (either stick fonts like Q(a) or image "thick” font like Q(b)) for 5 (five) English letters of your choice, it can be upper case or lower case, like say ABCDE or abcde. It does not have to be ABCDE, it can be AEIOU; or if you like you can make fonts of Foreign languages like those in Spanish, German etc.arrow_forward
- When using a debugger, why do you need to write a separate application for it to work?arrow_forwardHi, this is vb (visual basics) console app.netcore. please help!Example : Dim vCounter As Integer For vCounter = 1 To4 Console.WriteLine(vCounter) Next . (1) Use a for loop to print out the two times table (2) Use a for loop to ask a user to enter three numbers and print out the total (3) Use a for loop to print out the sum of all the numbers between 0 and 100 (4) Use a for loop to print out the number from 100 to zero in descending orderarrow_forward
arrow_back_ios
arrow_forward_ios
Recommended textbooks for you
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education

Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education

Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON

C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON

Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning

Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education