John is going through his family photo album. There is a total of people in the family labeled from 0 to N-1.
Find out the number of members of his family who have more than equal to X children.
Input Specification:
input1: N. denoting the total number of family members.
input2: X denoting the minimum number of children a family member should have in order to be included in John's final set.
input3: An array of N elements where the ith element denotes the parent of the ith index. If the value of the element is -1, then that family member has no parent.
Output Specification:
Your function should return the number of John's family members that have more than or equal to X childrens.
Example 1:
Input1: 1
input2:0
input3:{-1}
output:1
Explanation :Family member 0 has 0 children. As we have to return the family membersthat have more than or equal to 0 children.hence the answer is 1.
The following program takes in temperature value in Celsius and converts it to Kelvin l. This code has many errors in it. Find the errors, list them, and correct the code.
int main ()
(
double C=0;. //declare input variable
cin>>d;. //retrieve temperature to input variable
double K=c+273.15;. //convert temperature
cout <<K>> '/n';. // print out temperature
)
1)What is cross Platform Support language Interoperability Model-oop?
2)What is Manage code?
3)What is SOA?
4)What is API
You are asked to write a C++ program to assist a Surgeon with the running of his surgery. Your
program must use functions. This means you must write a function for each of the following tasks:
1) Collect data on each day.
2) Generate a report of how many patients she has seen in the month.
3) Determine the five (5) days in which she made most the money, (five highest earning days).
If there are more than one (1) days in which she made the same amount, just indicate that it
was duplicated on a particular day. Only note or record the last duplicate.
4) Also determine the day on which she saw the least number of patients.
5) Generate a report of how much money she has collected in the month.
Write a Program to declare examination results. Design three classes: Student,
Exam, Result, The Student class has the data members such as Rollno and name.
Create the class Exam by inheriting the Student class. The Exam class includes
the data members representing the marks scored in six subjects. Derive the
Result from Exam class and it has its own data members such as Total_marks,
grade and display the student information in descending order. Design the
inheritance this model belongs to.
Write a program to create a class template having a an array and perform the
following menu based operation on object with integer array , floating point
array
l. Search an user entered element
ll. Sum of all the elements.
lll. Find 2 nd largest element and 2 nd minimum element
Write a program that prompts the user to input two numbers, First and diff. The program then creates a one dimensional array of 10 elements and initializes them with an arithmetic sequence. The first number of the sequence is the First value and the next number is generated by adding the diff to the number preceding it. This formula is repeated for the rest of the sequence. E.g. if First =11 and diff = 4, then the arithmetic sequence will be 11, 15, 19, 23, 27, 31 ... and so on.
Write a program in C++ to create abstract class Figure having pure virtual function
area(), and data members length, breadth. Derive classes Triangle and Rectangle from
Figure having member functions area(). Find area of triangle and rectangle using run
time polymorphism concept? [Note: sub classes does not contain any data members].
get the total number of users subscribed for the channel tyler oakley
This is another client-server application. It builds on echoserver and has a more complex protocol based on the well-known series of (very bad) jokes. It is based on the standard Java introduction to distributed systems. The objective is to get it the simple client-server application working on the same machine and then on two different ones. Once you’ve done that the next step is to run a multi-client server version!
The following diagram shows the networked application.
As with the echoserver application, KKClient and KKServer are two processes (programs) that interact via the Socket API. You can run them on the same computer or on different computers (as you did in the last tutorial). You can see that the protocol is more extensive. The following shows the architecture.