1,502 Answered Questions for the topic computer programming
02/04/21
Need help with some questions
What's a method that will take an int array list and will take every even number in the list and insert the same number to the right of the initial number. e.g.: [1,2,3,4] would become...
more
02/03/21
please someone explain what this code do :
void bin(int x, int value){ if(x == 0) return; bin(x / 2, value - 1); if(x % 2) printf("%d ", value);}int Pow(int a, int b){ int d = 1; for(int i = 1; i <= b; i++) d *= a; return d;}int...
more
02/02/21
please explain how this function in C code turn numbers in binary :
void bin(int x, int value)
{
if(x == 0)
return;
bin(x / 2, value - 1);
if(x % 2)
printf("%d ", value);
}
02/02/21
please explain how this function in C code turn numbers in binary :
void bin(int x, int value)
{
if(x == 0)
return;
bin(x / 2, value - 1);
if(x % 2)
printf("%d ", value);
}
Computer Programming
02/02/21
Conditionals_TwoWay_MultiWay
Write TwoWay and/or MultiWay IF statements for each below. Submit one .py file.Please be sure to have blank lines between the IF statements. – If integer variable currentNumber is odd, change its...
more
02/01/21
C programming test help. please
file:///C:/Users/kamau/Downloads/Test1RealTestSpring21cop3223.pdfPlease help me solve for the outputs of these codesAnd for the word problem on page 4
02/01/21
C programming test help please
file:///C:/Users/kamau/Downloads/Test1RealTestSpring21cop3223.pdfPlease help me with solving this test Thank you
Computer Programming
01/31/21
Programing exercise
From our previous lessons. Try to convert the simple program in to a GUI program by using labels, text field and buttons. Program OutputEnter nameAndrea [Enter]Enter your age24 [Enter]Hello...
more
Computer Programming
01/31/21
Programming exercise
P R O G R A M M I N G Latin TranslatorLook at the following list of Latin words and their meanings:Latin Englishsinister leftdexter ...
more
Computer Programming
01/30/21
Computer programming
1. What is a user interface?
2. How does a command line interface work?
3. What is an event-driven program?
4. What is a user interface flow diagram?
5. What is an event handler?
6. Look...
more
Computer Programming
01/30/21
Computer programming
Answer the following Questions:1. What is a user interface?2. What is an event-driven program?3. List some of the Common GUI components?4. What is an object?5. Discuss the...
more
Computer Programming
01/28/21
Conditionals_OneWay
Write One Way Python If statements based on the statements below. Submit one .py file of all IF statements. Please declare the variables for each problem.– If string variable taxCode is ’T’,...
more
01/28/21
Help with c homework please
http://www.cs.ucf.edu/courses/cop3223/spr2021/section2/cop3223sp21ass1.pdfI need help with coding Problem A, B, and CB and C are if-then-else statements/constructs
Computer Programming Java
01/25/21
Objects, Properties and Methods
Think an object with many properties and methods except for gadgets.Example: PersonProperties - Age, heightMethods - Walk, Talk
01/23/21
I have a coding question
How do you capitalize the first character of each word in a string in an array?Explain with a simple example please?Thanks
01/21/21
Write a program based on the problems given below.
1) Create a date chooser using mm-dd-yyyy format by creating three separate combo boxes. The user shall be able to concatenate the combobox values to form a full date then display it using...
more
01/21/21
Internet Threats
real life one internet threat based on the categories given hacking, viruses, DDoS, etc. Provide the following information for a chosen internet threat:
What is the name of the internet...
more
Computer Programming
01/21/21
Compute Volume function
C++Part 1 Question Link: https://ibb.co/swzRK4wPart 2 Question Link: https://ibb.co/P9WnMC0
Computer Programming
01/21/21
Programming Logic and Design
1. The following module uses a loop. Rewrite it as a recursive module that performs the same operation.
Module trafficSign(int n)
While n > 0
...
more
Computer Programming
01/21/21
Object-Oriented Programming
Give three basic sample pseudocode demonstrating oop.
01/21/21
Help me with this please
Write a static void method that will take accept an int array as a parameter and will count the number of times the numbers, 0-9, appear in the array, which can just be print statements
01/20/21
Traffic Sign Design
You are asked to design a Traffic sign using a PIC16F877A, 3 LEDs, one Seven Segment Display and one Buzzer. The green LED must be connected to PORTB0, the yellow LED must be connected...
more
Computer Programming
01/20/21
Write (C++) code , including a loop, required to calculate y(t) from the equation
Question Link: https://ibb.co/bgzhbBW
Computer Programming
01/20/21
Write a program that prompts the user to enter the year and month
( C++ )Write a program that prompts the user to enter the year and month, and displays the number of days in the month. For example, if the user entered month 2 and year 2000, the program should...
more
01/19/21
Need help on control structures, arrays, and functions
Create a simple 5-question quiz with three (3) choices that will display the score of the user. The quiz should be about your favorite game/series. Make use of control structures, arrays, and...
more
Still looking for help? Get the right answer, fast.
Ask a question for free
Get a free answer to a quick problem.
Most questions answered within 4 hours.
OR
Find an Online Tutor Now
Choose an expert and meet online. No packages or subscriptions, pay only for the time you need.