Tag: Answer

  • CSS Quizs Question & Answers – Backgrounds, Borders and Drop Shadow

    Q 1. Which of the following property defines the space between cells in a table?A. autoB. borderC. spacingD. border-spacing Show Answer Answer:-D. border-spacing Explanation Syntax: border-spacing: non-negative length(s) | inherit Q 2. Which of the following property defines the visual style of up to four different sides of a border?A. border- imgB. border-colorC. border-visualD. border-style…

  • Java Quizs Question & Answers – Character and Boolean Data Types

    Q 1. What will be the output of the following Java program? A. 64B. 65C. 67D. 66 Show Answer Answer:-D. 66 Explanation ASCII value of ‘A’ is 65, on using ++ operator character value increments by one. output:$ javac mainclass.java $ java mainclass 66 Q 2. What will be the output of the following Java…

  • C++ Programming Quizs Question and Answers – Basics

    Q 1.What are the formal parameters in C++?A. Parameters with which functions are calledB. Variables that are never used in the functionC. Variables other than passed parameters in a functionD. Parameters which are used in the definition of the function Show Answer Answer:-D. Parameters which are used in the definition of the function Explanation Formal…

  • CSS Quizs Question & Answers – Gradients without Images

    Q 1. Which of the following is not a browser-specific versions of linear-gradient()?A. -moz-linear-gradient()B. -mac-linear-gradient()C. -o-linear-gradient()D. -webkit-linear-gradient() Show Answer Answer:-B. -mac-linear-gradient() Q 2. Which of the following argument is not accepted by radial-gradient() function?A. ShapeB. PositionC. Color stopsD. Time Show Answer Answer:-D. Time Q 3. Which of the following function creates a CSS gradient image…

  • Java Quizs Question & Answers – Integer and Floating Data Types

    Q 1. An expression involving byte, int, and literal numbers is promoted to which of these?A. longB. intC. byteD. float Show Answer Answer:-B. int Explanation An expression involving bytes, ints, shorts, literal numbers, the entire expression is promoted to int before any calculation is done. Q 2. Which of these literals can be contained in…

  • CSS Quizs Question & Answers – Styling Lists and Navigation Menus

    Q 1. Which of the following property defines labels for a list of items?A. list-shapeB. list-styleC. list-typeD. list-style-type Show Answer Answer:-D. list-style-type Explanation Syntax: list-style-type: disc | circle | square | decimal Q 2. Which of the following property defines in a shorthand form the width, style, and color for all four sides of an…

  • CSS Quizs Question & Answers – CSS Box Model

    Q 1. Which of the following display property value is described by used internally by browsers to create list items. Of no practical value to web designers?A. inline-blockB. groupC. list-itemD. none Show Answer Answer:-C. list-item Q 2. Which of the following property controls the horizontal overflow of a block or inline block?A. overflow-xB. overflowC. overflow-yD.…

  • CSS Quizs Question & Answers – Styling Texts

    Q 1. Which of the following property converts text to initial capitals, all uppercase, or all lowercase?A. textB. text-transformC. text-decorationD. text-uppercase Show Answer Answer:-B. text-transform Q 2. Which of the following font-variant property render text using the same letter case as in the underlying code? A. boldB. small-capsC. normalD. none of the mentioned Show Answer…

  • Python Quizs Question– String II

    Q 1. What will be the output of the following Python code snippet? print(‘Ab!2’.swapcase()) A. AB!@B. ab12C. aB1@ D. aB!2 Show Answer Answer:-D. aB!2 Explanation Lowercase letters are converted to uppercase and vice-versa. Q 2. What will be the output of the following Python code snippet? print(‘ab cd ef’.title()) A. Ab cd efB. Ab cd…

  • Python Multiple Choice Quizs Question– String

    Q 1. The output of executing string.ascii_letters can also be achieved by:A. string.ascii_lowercase_string.digitsB. string.lowercase_string.uppercaseC. string.lettersD. string.ascii_lowercase+string.ascii_uppercase Show Answer Answer:-D. string.ascii_lowercase+string.ascii_uppercase Explanation Execute in shell and check. Q 2 . What will be the output of the following Python code? A. ollehB. helloC. hD. o Show Answer Answer:-D. o Explanation 1 corresponds to the last index.…

You cannot copy content of this page