Answer:
Using unfamiliar abbreviations and acronyms
Explanation:
because he using RHFD and LTRE
Answer:
left child = 2 index +1 & right child = 2 index + 2
Please Mark Brainliest If This Helped!
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
Amelia wants to create a website using the Python computer language to code her site. She will also use CodeSkulptor3 is an example of browser-based code editor. The correct option is A.
<h3>What is python?</h3>
Python is a programming language generally used to make websites and software. Automated tasks and data analysis are also carried out using python.
CodeSkulptor3 is also a browser-based Python interpreter. It has implemented a subset of Python 3.
Thus, CodeSkulptor3 is an example of browser-based code editor. The correct option is A.
Learn more about python.
brainly.com/question/19045688
#SPJ1
Answer:
See Explanation Below
Explanation:
// Program is written in C++ programming language
//.. Comments are used for explanatory purposes
// Program starts here
#include<iostream>
#include <stdlib.h>
#include <time.h>
using namespace std;
int main()
{
int computerWins = 0, computerPlay = 0;
int userWins = 0, userPlay = 0;
int tiedGames = 0;
// Computer Play
for (int play = 0; play< 10; play++) {
computerPlay = rolls();
userPlay = rolls();
// Check who wins
//Clear Screen
System("CLS")
if (computerPlay == userPlay) {
tiedGames++;
cout<<"Ties........" + tiedGames; }
else {
if (computerPlay> userPlay) {
computerWins++;
cout<<"Computer...."<< computerWins;
} else {
userWins++;
cout<<"User........"<< userWins;
}
}
}
return 0;
}
int rolls() {
srand((unsigned)time(0));
return rand() % 6 + 1;
}