What are the different options in a page layout feature ? Select three options

Answers

Answer 1
Answer:

Answer:

Half Center Right Left, theres four

Explanation:


Related Questions

)when you classify data into groups and subgroups you are using a(n) ____ order?A. CircularB. HierarchicalC. LinearD. Group
Your app needs to store the following information. For each type of information, decide whether you would use an array or a variable to store it:(a) All the messages a user has sent(b) The highest score a user has ever reached on the app(c) A username and password to unlock the app
why is the disk method a special case of the general slicing​ method? choose the correct answer below. a. the cross sections of the slices are disks with holes through them. b. the functions that generate the solids are all lines. c. the functions that generate the solids are all parabolas. d. the cross sections of the slices are disks.
Question textIf operator+ is supported by a class, how many parameters should it be defined to accept?Select one:a. 1 or 2b. 2c. 3d. 1e. None
Using for loop . Input an integer and identify whether it's EVEN OR ODD ( without using modulo operator )using only . C++ programming

When a JSP page is compiled, what is it turned into?? Applet

? Servlet

? Application

? Midlet

Answers

Answer: Servlet

Explanation: JSP page compilation is the process of compiling of the file before it can be turned towards the live server .There is a request that is made towards the JSP page  then is compiled into a JSP servlet. Before the execution of the JSP program, it is turned in to a JSP servlet .JSP is a program that work on the server side and reduce the work load of the developers.

If you have a list consisting of just numbers, then you can add all of the values in the list using the sum() function. If your list consists of some numbers and some values of other types (e.g., lists, strings, sets), the sum() function will fail. In this question, we're asking you to write a function that will sum all of the numbers in a list, ignoring the non-numbers. The function below takes one parameter: a list of values (value_list) of various types.


The recommended approach for this:

(1) create a variable to hold the current sum and initialize it to zero,

(2) use a for loop to process each element of the list,

(3) test each element to see if it is an integer or a float, and, if so, add its value to the current sum,

(4) return the sum at the end.


student.py 1


Hef sum_lengths(value_list):

# Implement your function here. Be sure to indent your code block! Restore original file

Answers

Answer:

See explaination

Explanation:

def sum_lengths(value_list):

total = 0

for x in value_list:

if (type(x)==int) or (type(x)==float):

total += x

return total

Which toplogy is common in these days? and justify atleast fivereason

Answers

Answer: Star topology is commonly used these days.

Explanation:

  • As, start topology is the reliable network topology because the failure of a central node or a node cable does not affect the remaining other nodes.
  • In star topology, if the computer fails you can still access your data by using backup folder in your private file or folder.  
  • In this network topology it is easy to find faults and correct it timely.
  • The start topology is cost effective and easy to maintain.  
  • We can also connect multiple communication channels.

DASD stands for ____________? Direct access storage device? Direct application storage device? Diverse access storage device

Answers

Direct Access Storage Device

Answer:

Direct access storage device.

Explanation:

DASD stands for direct access storage device.

Which statement prints "hi" on the screen?(a) puts("hi");

(b) put "hi";

(c) puts "hi";

(d) none of the above

Answers

Answer: (A) Puts("hi");

Explanation:

 Puts() is the type function that uses the file handling in the programming language. It basically use to compose or write the function or line that displaying the output screen of the computer system.

The puts() function is the type of function which basically allow the user to read the characters or line include all the space until entering into the new character or line.

The declaration of the puts(0 function is as follows:

   int puts (char *STRING);

Answer:

a

Explanation:

Load the titanic sample dataset from the Seaborn library into Python using a Pandas dataframe, and visualize the dataset. Create a distribution plot (histogram) of survival conditional on age and gender

Answers

Answer:

Following is given the data as required.

The images for histograms for age and gender are also attached below.

I hope it will help you!

Explanation:

Other Questions