how many parallelograms can be created with two rows of seven dots in each row. ? answer is 91 please explain how to get this, and also if we pick 7C2 i want to know the possible picture of the parallelogram, thanks. and also if you pick 1,2 as vertices for top , do you pick 1,2 as bottom too? thats make square and not parallelogram isnt it?
Now,
if we pick 1,2 as vertices for top as well as bottom it would
result in a square or a rectangle based on the distance between the
rows. As we know that squares and rectangle are also parallelogram.
Thus, the selection of same sets of dots from each of the rows is
possible.

how many parallelograms can be created with two rows of seven dots in each row. ?...
5 how many parallelograms can be created with two rows of seven dots in each row. ? answer is 91 please explain how to get this, and also if we pick 7C2 i want to know the possible picture of the parallelogram, thanks
Assignment 2 In this assignment, you will write two short programs to solve problems using recursion. 1. Initial Setup Log in to Unix. Run the setup script for Assignment 2 by typing: setup 2 2. Towers of Hanoi Legend has it that in a temple in the Far East, priests are attempting to move a stack of disks from one peg to another. The initial stack had 64 disks threaded onto one peg and arranged from bottom to top by...
This is the contents of Lab11.java
import java.util.Scanner;
import java.io.*;
public class Lab11
{
public static void main(String args[]) throws IOException {
Scanner inFile = new Scanner(new File(args[0]));
Scanner keyboard = new Scanner(System.in);
TwoDArray array = new TwoDArray(inFile);
inFile.close();
int numRows = array.getNumRows();
int numCols = array.getNumCols();
int choice;
do {
System.out.println();
System.out.println("\t1. Find the number of rows in the 2D
array");
System.out.println("\t2. Find the number of columns in the 2D
array");
System.out.println("\t3. Find the sum of elements...
In Real Life: Win-Win Problem Solving [ Silence ] [ Noises ] >> Can you be a little more quiet? I don't have class until 10 o'clock. I want to catch up on some sleep. >> Sorry to bother you. I am cleaning up last night's dinner dishes. >> Well, I wish you would do it a little more quietly. I was up late studying, >> Well if you would've washed them last night, I wouldn't have had to clean...
Make a program using Java that asks the user to input an integer
"size". That integer makes and prints out an evenly spaced, size by
size 2D array (ex: 7 should make an index of 0-6 for col and rows).
The array must be filled with random positive integers less than
100. Then, using recursion, find a "peak" and print out its number
and location. (A peak is basically a number that is bigger than all
of its "neighbors" (above,...
AssignmentBitmap files map three 8-bit (1-byte) color channels per pixel. A pixel is a light-emitting "dot" on your screen. Whenever you buy a new monitor, you will see the pixel configuration by its width and height, such as 1920 x 1080 (1080p) or 3840x2160 (4K). This tells us that we have 1080 rows (height), and each row has 1920 (width) pixels.The bitmap file format is fairly straight forward where we tell the file what our width and height are. When...
# In this file, fill in the ... parts with lines of code. Do
not
# create new functions.
from random import seed, randrange
P=[" ♟♜♝♞♛♚"]; L,R,BL,TL=["▌▐▄▀"]
BonR=WonR=WonB=DonR=DonB=RonB=GonR=GonB=RonG='\033[1;m\033['
WonR+='7;31;47m' # For drawing a white piece on a red
background
WonB+='7;30;47m' # For drawing a white piece on a black
background
DonR+='2;37;41m' # For drawing a dark piece on a red
background
DonB+='2;37;40m' # For drawing a dark piece on a black
background
GonR+='2;33;41m' # For drawing gold on a red...
18.1 Lab Lesson 11 (Part 1 of 1) Part of lab lesson 11 There in one part to lab lesson 11. The entire lab will be worth 100 points. Lab lesson 11 part 1 is worth 100 points For part 1 you will have 80 points if you enter the program and successfully run the program tests. An additional 20 points will be based on the style and formatting of your C++ code. Style points The 20 points for coding...
Please, I need help with program c++. This is a chutes and ladders program. The code must be a novel code to the specifications of the problem statement. Thank you very much. Assignment Overview This program will implement a variation of the game “chutes and ladders” or “snakes and ladders:” https://en.wikipedia.org/wiki/Snakes_and_Ladders#Gameplay. Just like in the original game, landing on certain squares will jump the player ahead or behind. In this case, you are trying to reach to bottom of the...
There are many different ways in which firms can organize themselves: There are flat organizations and there are tall organizations. There are organizations structured by products, divisions, and geography. But one thing nearly all structures have in common is a chain of command, or hierarchy. Do companies have to set up that way? Tony Hsieh doesn’t think so. Hsieh is the CEO of Zappos, the online seller of shoes. Hsieh is a guy who thinks outside of the box. When...