Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Search & Filtering

For the given code your task is to write the following functions and make menu to call them in main:

1)Insert_Element_at(int X, int pos),

2)bool Delete_Element(int X)

3) void Empty_List()


class List{

public:

int item;

int pos;

List* nextNode;

List()

{

this->pos=0;

}


List(int pos)

{

this->pos=pos;

}


List(int item,int pos)

{

this->item=item;

this->pos=pos;

}


List(List &list)

{

this->item=list.item;

this->pos=list.pos;

this->nextNode=list.nextNode;

}

};


void Insert_Element(List** head, int data)

{

//code present here to do this

}


Find out the mean, median and standard deviation of this numpy array -> np.array([1,5,3,100,4,48])
How to create a new column in pandas by using values from other columns?
We can perform column based mathematical operations on a pandas dataframe. Pandas columns containing numeric values can be operated upon by operators.

Code

import pandas as pd
a=[1,2,3]
b=[2,3,5]
d={"col1":a,"col2":b}
df=pd.DataFrame(d)
df["Sum"]=df["col1"]+df["col2"]
df["Difference"]=df["col1"]-df["col2"]
How to create a new column in pandas by using values from other columns?
We can perform column based mathematical operations on a pandas dataframe. Pandas columns containing numeric values can be operated upon by operators.

Q2. There is a Change request from the customer. It is as follows:You need to calculate Interest paid by banks on Saving Account.Task 1 : Add a function declaration “void CalculateInterest()” in the interface. Define the functions in the concrete classes such as ICICI accounts get 7% interest and HSBC gives 5% interest.


Task 7: Create a console application. The Main() function needs to create the objects and execute thefunctionality as per the instructions.Main( ) //Write this function{

// Task to be performed:Create a Object of ICICI Set the Account type to Saving (Use enum) Deposit Rs. 50000 to this accountCreate another Object of ICICI Set the Account type to Current (use enum)Deposit Rs. 20000 to this accountPrint the Balance of both these account objects.Now call the Transfer function to transfer the money from Savings account to Current Account.The amount to be transferred is Rs. 5000.e.g. a1.Transfer(a2,5000);Now print the Balance after the Transfer from both the accounts.

Similarly, create two accounts of HSBC Bank. Transfer Rs. 30000 from Saving to Current and display thebalance.}


Kids Plus is for 0 to 12 years. A caregiver is assigned to (Newborn, Infant, toddler, preschool primary). The record includes ● Child - Child ID, First Name, Last Name, Date of Birth, Gender, Address, parent/guardian ID, Section Assignment ● Parent- Guardian ID, First Name, Last Name, Address, Relationship, Telephone, email ● Caregiver - Caregiver ID, First Name, Last Name, Gender, Address, AgeRange, Section identified by a letter that assigns 2 employees and maximum of 9 children. create files for each category. allow user to ● AddRecord ● UpdateRecord; if no information tell the user "No info". ● DeleteRecord ASSIGN caregivers and children to section and don't exceededmaximum threshold. Generate reports: ● Listing all children showing ID, name, DOB, Gender, Address, section they are assigned. ● Listing all caregivers showing ID, name, DOB ● The parent/guardians and their child(ren) ● Section letter each caregiver and children is assigned


An University would like to introduce an automated student number and email generation system. The system takes into consideration the following: a) To generate the student number it takes three letters(the first, middle and last letter) of the student’s surname and adds it to the first three letters from the first name, then finally adds a three digit postfix number. b) To generate the email is quite easy it just takes the first letter from the first name and adds it to the surname , then it adds the @students.nust.na postfix Your task is to create a program that can achieve the above requirements when given the students surname, first name and three digit postfix through CMD arguments.


run 1:

java InClass01_task01 Kandjeke Jenifer 003


Output: Good day Jenifer welcome to NUST.

Your email address is : jkandjeke@students.nust.na

Student number : KJEJEN003


run 2:

java InClass01_task01 Kavezemba Terry 001


Output: Good day Terry welcome to NUST.

Your email address is : tkavezemba@students.nust.na


This problem is related to the virtual learning environment application discussed in one theory session and a few practicals. In this problem, you are tasked with creating and updating learner profiles, a particular type of user. As well, given a learner profile, we would like to retrieve the learning materials in the form of topics. Note that the learning materials for a given course will differ from one learner profile to another. For example, for a course "Distributed Systems and Applications", the learning materials for a learner with a weak background in "Programming" compared o another learner profile with a stronger background in programming.

Your task is to:

1. Provide a description in OpenAPI of the API that allows for communication between a client and a service for the functionalities discussed above;

2. Implement a corresponding client and a service. 


1. explain how electronic connectivity between various development teams can support software engineering activities


2. explain why the fundamental software engineering principles of process, dependability, requirements management, and reuse are relevant to all types of software system



What are some of the limitations of Apple Pay that might prevent its widespread adoption?


LATEST TUTORIALS
APPROVED BY CLIENTS