Web development and programming
191828 questions • Page 3590 / 3837
de: ENGR T03 Date: March 08, 2018 Time duration: 1 hour iz [30 points]: Answer A
de: ENGR T03 Date: March 08, 2018 Time duration: 1 hour iz [30 points]: Answer ALL Questions A. Say True or False [5 points] 1. int main O () is a complete and correct C pro 2. pr…
deLab - Web Based Progr sp/core _dhtml.jsp? If you have downloaded the source co
deLab - Web Based Progr sp/core _dhtml.jsp? If you have downloaded the source code from this book's companion web site, you will find the following files in the Chapter 07 folder:…
dear sir i want in afd this value AX=0019 and BX 0000 and cx0012 please help me
dear sir i want in afd this value AX=0019 and BX 0000 and cx0012 please help me [org 0x100] mov ax, 0; mov bx, 1; mov cx, 4; add ax, bx; start: add bx, 2; add ax, b…
dearsir i solve some i solve these but this is not confirm please helpme (4,5,6,
dearsir i solve some i solve these but this is not confirm please helpme (4,5,6,7) Calculate thephysical memory address generated by the following segment offsetpairs 4. 4321:…
debug the errors: #include using namespace std; //class declartion cla
debug the errors: #include<iostream> using namespace std; //class declartion class matrix { //Variable declaration public: int row,col,a[10][10]; public: matrix() { } matrix…
debug this python code. there are six bugs code - def main(): #declare variables
debug this python code. there are six bugs code - def main(): #declare variables Bundles = [235, 756, 656, 125, 347, 810, 801] Total = float() PrintBundles(Bundles) Total = GetTot…
debugging python read sales.py def main(): # Open the sales.txt file for reading
debugging python read sales.py def main(): # Open the sales.txt file for reading. sales_file = open('sales.txt', 'r') # From program 6-12 # Initialize an accumulator to 0.0 total …
decisions explicitness 28 29 30 31 Student Logoff learning reliability equity gr
decisions explicitness 28 29 30 31 Student Logoff learning reliability equity grades Sample Quiz Home ByrneTube How To Join Taking Tests Question 6 of 6 Subject: Topic: Android Ti…
declare @n int, @j tinyint declare @rec varchar(30) set @j=0 set @rec= \'\' whil
declare @n int, @j tinyint declare @rec varchar(30) set @j=0 set @rec= '' while (@j<=9) begin set @rec=@rec +char(65+@j) set @j=@j+1 end print @rec print reverse (@rec) Output …
declare @n int, @j tinyint declare @rec varchar(30) set @j=0 set @rec= \'\' whil
declare @n int, @j tinyint declare @rec varchar(30) set @j=0 set @rec= '' while (@j<=9) begin set @rec=@rec +char(65+@j) set @j=@j+1 end print @rec print reverse (@rec) Output …
declare a 20-element one dimensional array using the following numbers to initia
declare a 20-element one dimensional array using the following numbers to initialize the array: 88,72,99,20,66,95,100,72,88,78,45,57,89,85,78,75,88,72, and 88. the procudre should…
declare a 20-element one dimensional array using the following numbers to initia
declare a 20-element one dimensional array using the following numbers to initialize the array: 88,72,99,20,66,95,100,72,88,78,45,57,89,85,78,75,88,72, and 88. the procudre should…
declare a class A according to the following requirements class A has two constr
declare a class A according to the following requirements class A has two constructors ( one without parameters, and another with two integer parameters) class A has two private m…
declare a class and write a client program that will keep your appointments for
declare a class and write a client program that will keep your appointments for the month of November. You may assume that there will be a maximum of 25 appointments and they are …
declares three one-dimensional arrays named volts, current, and resistance in ma
declares three one-dimensional arrays named volts, current, and resistance in main() and be capable of holding 10 double-precision numbers. The numbers to store in current are 10 …
decrypt text for theirsecurity devices. As much as possible you are to develop t
decrypt text for theirsecurity devices. As much as possible you are to develop the codeas independent functions.You are to USE NO GLOBAL VARIABLES and string library inyour progra…
decrypt text for theirsecurity devices. As much as possible you are to develop t
decrypt text for theirsecurity devices. As much as possible you are to develop the codeas independent functions.You are to USE NO GLOBAL VARIABLES and string library inyour progra…
decrypt text for theirsecurity devices. As much as possible you are to develop t
decrypt text for theirsecurity devices. As much as possible you are to develop the codeas independent functions.You are to USE NO GLOBAL VARIABLES and string library inyour progra…
decrypt text for theirsecurity devices. As much as possible you are to develop t
decrypt text for theirsecurity devices. As much as possible you are to develop the codeas independent functions.You are to USE NO GLOBAL VARIABLES and string library inyour progra…
def College fund (name): print(\'Please enter the following\') p-float(input (\'
def College fund (name): print('Please enter the following') p-float(input ('Principle: ')) IR-float (input( 'Interest rate:)) print( 'Hi, ' , name) print('---' file-open (OptD.tx…
def back_subs(G, b, nargout = 1): ... Replace this comment with code - write a f
def back_subs(G, b, nargout = 1): ... Replace this comment with code - write a function to perform back substitution to solve the matrix equation Gx = b - assume G is invertible a…
def bfs(graph,start): visited , queue = set() , [start] while queue != []: verte
def bfs(graph,start): visited , queue = set() , [start] while queue != []: vertex = queue.pop(0) # from queue : pop the oldest if vertex not in visited: visited.add(vertex) queue.…
def binary_search(lst, to_find): def binary_search_rec(bot, top): if bot > top:
def binary_search(lst, to_find): def binary_search_rec(bot, top): if bot > top: return None mid = (bot + top) // 2 if to_find == lst[mid]: return lst[mid] elif to_find < lst…
def bubbleSort (my_ list): for passnum in range( len( my list 1, , -1): if my_li
def bubbleSort (my_ list): for passnum in range( len( my list 1, , -1): if my_listl i] y listl i 1 ]: for i in range( passnum): temp = my-list [ i ] my-list [ i ] = my-listl i + 1…
def bubble_up(L: list, start: int, end: int) -> None: \"\"\"Bubble up through L[
def bubble_up(L: list, start: int, end: int) -> None: """Bubble up through L[start:end], swapping items that are out of order. >>> L = [4, 3, 2, 1, 0] >>> bub…
def can_move_side(grid, positions, go_left): Given a list of positions , determi
def can_move_side(grid, positions, go_left): Given a list of positions , determine if the grid is free if they were shifted left (if go_left is true) or right (otherwise). This sh…
def catch_bus(dist, time, k): # create more variables as needed! ans = -1 return
def catch_bus(dist, time, k): # create more variables as needed! ans = -1 return ans catch_bus(dist, time, k): Given the distance to a bus stop (in feet), and the time to the n…
def check_winner(board): Examine the entire board; return a color, \"tie\", \"dr
def check_winner(board): Examine the entire board; return a color, "tie", "draw", or "pending": - If just one player has 1 (or more) runs, return that color - If both colors have …
def countWords(document): \"\"\" Takes a string as an argument and returns a dic
def countWords(document): """ Takes a string as an argument and returns a dictionary with the word count >>> article1=''' ... He will be the president of the company; rig…
def counts_from_file(filename): Given filename as a string indicating the name o
def counts_from_file(filename): Given filename as a string indicating the name of a file in the current directory. In the file, every line will contain a single integer and nothin…
def crapsGame(): # PROBLEM 3. # In the game of craps, the player (\'shooter\') t
def crapsGame(): # PROBLEM 3. # In the game of craps, the player ('shooter') throws # two standard six-sided dice repeatedly. On the first # throw, the shooter wins on 7 or 11 (a …
def crapsGame(): # PROBLEM 3. # In the game of craps, the player (\'shooter\') t
def crapsGame(): # PROBLEM 3. # In the game of craps, the player ('shooter') throws # two standard six-sided dice repeatedly. On the first # throw, the shooter wins on 7 or 11 (a …
def crapsGame(): # PROBLEM 3. # In the game of craps, the player (\'shooter\') t
def crapsGame(): # PROBLEM 3. # In the game of craps, the player ('shooter') throws # two standard six-sided dice repeatedly. On the first # throw, the shooter wins on 7 or 11 (a …
def diagonal_grid(height, width): \"\"\" creates and returns a height x width gr
def diagonal_grid(height, width): """ creates and returns a height x width grid in which the cells on the diagonal are set to 1, and all other cells are 0. inputs: height and widt…
def embedded_sounds (msg): We define a sound as a single vowel with a consonant
def embedded_sounds (msg): We define a sound as a single vowel with a consonant on each side of it (exactly three letters long; upper and lowercase all used). Given a message stri…
def findUniqueValues(values): output for x in values: if not x in output: output
def findUniqueValues(values): output for x in values: if not x in output: output.append(x) return sorted(out put def findCount (values, x) count-0 for v in values: count +1 return…
def find_min_in_valley(l): \"\"\" You are given a non-empty list such that there
def find_min_in_valley(l): """ You are given a non-empty list such that there is a unique index 0 <= i < len(l) where the sublist l [0:i+1] is strictly decreasing and the su…
def game10: import random totalcoins- 39 x-input(\' For this game, do you wish t
def game10: import random totalcoins- 39 x-input(' For this game, do you wish to pick the first 1-3 numbers? Enter Y or N, otherwise press any other key to exit' while totalcoins …
def generate_world(opts): \"\"\" Accepts: opts -- parsed command line options Re
def generate_world(opts): """ Accepts: opts -- parsed command line options Returns: world -- a list of lists that forms a 2D pixel buffer Description: This functio…
def generate_world(opts): \"\"\" Accepts: opts -- parsed command line options Re
def generate_world(opts): """ Accepts: opts -- parsed command line options Returns: world -- a list of lists that forms a 2D pixel buffer Description: This functio…
def get invalid_colors(list): There are many ways to represent colors in a compu
def get invalid_colors(list): There are many ways to represent colors in a computer, but one common is to specify the intensity of three colored lights: red, green, and blue. By c…
def getFamilyCar(annualIncome, numberOfChildren): Define a function that takes i
def getFamilyCar(annualIncome, numberOfChildren): Define a function that takes in an annual income and the number of children in a family and returns the type of car that would li…
def getInput(): tHeight = int(input(\'Please enter the height of the triangle: \
def getInput(): tHeight = int(input('Please enter the height of the triangle: ')) return tHeight def Pascal(num): if (num == 1): return [1] else: line = [1] prev_line = Pascal(num…
def get_pronounciation (pronouncing_line): \"\"\" (str) rightarrow list of str P
def get_pronounciation (pronouncing_line): """ (str) rightarrow list of str Precondition: pronouncing_line has the form: WORD PHONEME_1 PHONEME_2 ... PHONEME_LAST Return a list co…
def gradientDescent (X, y, theta, alpha, num_iters): This function returns a tup
def gradientDescent (X, y, theta, alpha, num_iters): This function returns a tuple (theta, cost_array) m len(y) cost array - for i in range(0, num_iters): START TODO # Make predic…
def increment(time, seconds): time.seconds = time.seconds + seconds while time.s
def increment(time, seconds): time.seconds = time.seconds + seconds while time.seconds >= 60: time.seconds = time.seconds - 60 time.minutes = time.minutes +…
def init_board(num_rows, num_cols): Given two positive ints, create an empty boa
def init_board(num_rows, num_cols): Given two positive ints, create an empty board. Unlike the physical game, our boards can be any positive dimensions. • Assume: num_rows and num…
def is_valid_coord(board, r, c): Given a board and two ints, do r and c describe
def is_valid_coord(board, r, c): Given a board and two ints, do r and c describe a valid location on the board? Negative indexes are not allowed here (as a design decision). • Ass…
def locate(filename,s): Given a string filename and a string s to search for in
def locate(filename,s): Given a string filename and a string s to search for in the file, return an ordered list of all line numbers corresponding to the lines containing at least…
def main(): Mb = input(\"enter the mass of the bike \") Mb = int(Mb) V = input(\
def main(): Mb = input("enter the mass of the bike ") Mb = int(Mb) V = input("enter the velocity ") V = float(V) cfdraft = input("enter cf draft ") cfdraft = float(cfdraft) for M …
Subject
Web development and programming
Use Browse or pick another subject.