Web Technologies: Backend & CSS
Covers web development topics including .NET/ADO.NET data access, database concepts, Hibernate ORM for Java, and CSS styling for frontend
Questions
How do you make each word in a text start with a capital letter?
- text-transform:capital
- text-transform:capitalize
- text-transform:uppercase
- You can't do that with CSS
How to apply a style to several specific element types?
- Use the type selector with , delimiter
- Use the ID selector with ; delimiter
- Use the type selector with . delimiter
- Use the ID selector with > delimiter
What does the ID selector do?
- Apply the style to a specific element
- Apply the style to all the elements
- Apply the style to elements of the same type
- Apply the style to a group of elements
In what form are style rules presented?
- selector { property: value }
- selector { property= value }
- selector ( property: value )
- selector ( property= value )
Which is the correct CSS syntax?
- body {color: black}
- {body;color:black}
- body:color=black
- {body:color=black(body}
In CSS, you have the following options for changing text color?
- Common name and Hexcolor only
- Common name, RBG value, Hexcolor
- RBG value, Hexcolor
- Hexcolor only
How do you display hyperlinks without an underline?
- a {decoration:no underline}
- a {underline:none}
- a {text-decoration:none}
- a {text-decoration:no underline}
How do you make the text bold?
- font:bold
- style:bold
- font-weight:bold
- style:strong
to which component does hibernate maps the java classes?
- persistent objects
- database tables
- only a
- both a & b
hibernate is a object relational mapping framework.
- True
- False
hibernate uses which class for mapping?
- utility classes
- Pojo
- both 1 & 2
- none
what are the jar files mainly used for O/R mapping?
- junit.jar & connector.jar
- ant.jar & hsqldb.jar
- hibernate2.jar & jboss-common.jar
- jdbc.jar & odbc.jar
pick the odd one out.
- Caching objects
- Pure relational
- Outer join fetching
- Lazy collection initialization
hibernate is a object relational mapping framework.
- gives an error
- generates ID automatically
- throws exception
- none of the above
A Hibernate Type is used to map a Java property type to a JDBC type or types.
- True
- False
what is the result of this program?
- throws exception
- automatically generates the ID
- compilation error
- none of the above
which one is responsible for flushing all DB2 buffers on the disk?
- QUIESCE
- FREEPAGE
- PCTFREE
- TABLESPACE
what is index cardinality?
- no of duplicate values
- no of distinct values
- no of null values
- both 1 & 2
What are the components available in .NET Framework data provider
- Connection
- Command
- DataSet
- All the above
What are the fundamental objects in ADO.NET?
- Data Reader
- Data Table
- Dataset
- Data Row