Answer one out of two questions below. 20a.Which clinical sc…

Answer one out of two questions below. 20a.Which clinical scenario benefits most from EPR effect? Options A-D are for Q20a. or 20b.Which nanoparticle type offers high cargo-loading capacity for gene therapy?Options E-H are for Q20a. Write here which Q # you choose to answer and the correct answer .

Now implement void removeAtIndex6And7(), a private instance…

Now implement void removeAtIndex6And7(), a private instance method for your linked list that will remove the seventh and eighth elements in the list (note the difference between index and element). If there are not enough elements in the list (i.e. the size of the list is less than 8), throw an IndexOutOfBoundsException with a descriptive message of your choice. You may assume all necessary imports have been made.  Note: You cannot use any other method not required (you cannot write nor call a hypothetical implementation of methods that add, remove, get, or set elements).

Implement the calculateNumberSum(int[], int) method by filli…

Implement the calculateNumberSum(int[], int) method by filling in the blanks.  You don’t need to consider scenarios where arr is null or index is negative. private static int calculateNumberSum(int[] arr, int index) { if (_____a_____) { return _____b_____; } return _____c_____ + calculateNumberSum(_____d_____);}   Use this template for your answer (please type fully – you cannot copy): a: [answer in blank a] b: [answer in blank b] … d: [answer in blank d]

Look at the following code: // [All the necessary imports he…

Look at the following code: // [All the necessary imports here, omitted]public class FinalExamApp extends Application {    private ArrayList winterPlans = new ArrayList();    public void start(Stage stage) {        stage.setTitle(“Final Exam App”); Label label = new Label(“Winter Idea: “); TextField textfield = new TextField(); Button button1 = new Button(“Add Idea”); Button button2 = new Button(“Sort Plan”); // Code for buttons will be here VBox root = new VBox(); root.getChildren().add(label); root.getChildren().add(textfield); root.getChildren().add(button1);        root.getChildren().add(button2); Scene scene = new Scene(root); stage.setScene(scene); stage.show(); }} Using an anonymous inner class, implement the functionality of button1 such that it adds the value in textfield to winterPlans when pressed and then clears the text field. You should only add it to the list if the text is not empty.

You are going to show the progression of the state of a link…

You are going to show the progression of the state of a linked list as we run several methods sequentially on it (starting with the initial state below). You will represent the linked list as follows: size = 2; head => “A” => “B” => null This example above represents a linked list with the strings “A” and “B”. An empty list is “size = 0; head => null”. Only include quotation marks for any Strings. Write the state of the linked list after each method call If the method call is invalid, explain why below the representation of the linked list (the linked list remains unchanged from the previous state) If a method returns a value, put “Returned: [value]” next to the representation of the linked list. The methods follow the same conventions from the Linked List homework Initial state: size = 2; head => “HTML” => “Python” => null 1) add(“C”) 2) remove(1) 3) indexOf(“C”) 4) clear() 5) add(1, “JavaScript”) 6) add(“Java”) 7) remove(“Assembly”)   Use this template for your answer (please type fully – you cannot copy): 1: [explanation of why it is invalid OR state of the linked list after the call]. [Returned: (value) IF it is valid and returns a value – don’t type otherwise] 2: [same as above] 3: [same as above] 4: [same as above] 5: [same as above] 6: [same as above] 7: [same as above]

A velocity analysis can be used on single-cell RNA sequencin…

A velocity analysis can be used on single-cell RNA sequencing data to understand how or whether a given cell or cluster of cells was transcriptionally differentiating at the time of sample collection. What sort of data does a velocity analysis use to determine this?