InterviewSolution
This section includes InterviewSolutions, each offering curated multiple-choice questions to sharpen your knowledge and support exam preparation. Choose a topic below to get started.
| 20001. |
How to create video in html 5 in coding? |
|
Answer» Another aspect shared by both the AUDIO and the video ELEMENTS is that each has controls, autoplay and loop ATTRIBUTES. In this example, the video will REPLAY after it finishes PLAYING: |
|
| 20002. |
Q. what is an event of html means html event? |
|
Answer» An HTML EVENT can be something the browser does, or something a USER does.Here are some examples of HTML events:An HTML web page has finished loadingAn HTML input FIELD was changedAn HTML button was clickedOften, when events happen, you may want to do something.JavaScript lets you EXECUTE code when events are detected.HTML allows event handler ATTRIBUTES, with JavaScript code, to be ad |
|
| 20003. |
When an array sales [5)[12] is declared without specifying initial values, what is the initial value of sales[0][0] ?(a) 0 (b) default value (c) compilation error (d) 60 |
| Answer» | |
| 20004. |
What is html event? |
|
Answer» your answer... ☺️☺️☺️➡➡➡➡➡➡➡➡➡➡➡➡➡➡➡➡➡➡➡HTML has the ability to let events trigger ACTIONS in a browser, like starting a JavaScript when a user clicks on an element. To LEARN more about programming events, please visit our JavaScript tutorial. Below are the global EVENT attributes that can be added to HTML elements to define event actions.✔✔✔✔✔✔✔✔✔✔✔✔✔✔✔✔✔✔✔I hope this answer is helpful to u...❤❤❤Keep Asking... ✌️✌️✌️✨✨✨If help u. MARK my answer as brainliest✨✨✨#N. H. Khan |
|
| 20005. |
What is a Html event? |
|
Answer» entHTML has the ability to let events trigger actions in a browser, like starting a JAVASCRIPT when a user CLICKS on an element. To learn more about programming events, PLEASE visit our JavaScript tutorial. Below are the global event attributes that can be added to HTML elements to define event actions.Hope it will helps |
|
| 20006. |
Write a program in c++with for loop to enter 10 no. and print the max no. |
|
Answer» TION:#include |
|
| 20007. |
What is function return in javascript? |
|
Answer» When JavaScript reaches a RETURN STATEMENT, the function will stop executing.If the function was INVOKED from a statement, JavaScript will "return" to execute the CODE after the invoking statement.Functions often compute a return value. The return value is "returned" BACK to the "caller". |
|
| 20008. |
What is JavaScript function syntax? |
|
Answer» A JavaScript function is DEFINED with the function KEYWORD, followed by a NAME, followed by parentheses ().Function names can contain letters, digits, underscores, and DOLLAR signs (same rules as variables).The parentheses may include parameter names separated by commas: (parameter1, parameter2, ...)The code to be EXECUTED, by the function, is placed inside curly brackets: {} |
|
| 20009. |
What is the data type concepts of JavaScript? |
|
Answer» In PROGRAMMING, DATA types is an important concept.To be able to OPERATE on variables, it is important to know something about the type.Without data types, a computer cannot SAFELY solve this:var x = 16 + "VOLVO"; |
|
| 20011. |
Tej installed one software on his computer, an extra software also got installed automatically. Now Tej wants to remove the extra software. How can he remove thesoftware? |
|
Answer» an UNINSTALL the UNWANTED application by using DISK Cleanup. |
|
| 20012. |
How can one use labels for a block or loop in Java ? |
|
Answer» tion:break and continue in Java are TWO essential keyword beginners needs to familiar while using loops ( for loop, while loop and do while loop). break statement in java is used to break the loop and transfers control to the line immediate outside of loop while continue is used to ESCAPE current execution and transfers control back to start of the loop. Both break and continue allows programmer to create sophisticated algorithm and looping constructs. In this java tutorial we will see example of break and continue statement in Java and some important points RELATED to breaking the loop using label and break statement. break keyword can ALSO be used inside SWITCH statement to break current choice and if not used it can cause fall-through on switch. Well break is not alone on breaking switch case u can also select |
|
| 20013. |
What is kotlin? please tell |
|
Answer» Kotlin is a statically-typed programming language that RUNS on the Java virtual machine.Kotlin is a fully supported programming language by Google on the Android Operating System and was announced as an official Android development language at Google I/O 2017. Kotlin can be USED for BACKEND development.Kotlin USES aggressive type inference to determine the type of values and expressions where type has been left unstated. This reduces language verbosity COMPARED to Java. |
|
| 20014. |
How to add any two numbers in JavaScript? |
|
Answer» In programming, just like in algebra, we USE VARIABLES (like price1) to hold values.In programming, just like in algebra, we use variables in expressions (total = num1 + NUM2).From the example above, you can CALCULATE the total to be 11. |
|
| 20015. |
What is JavaScript comment? |
|
Answer» JavaScript COMMENTS can be USED to EXPLAIN JavaScript code, and to make it more readable.JavaScript comments can also be used to PREVENT execution, when testing alternative code. |
|
| 20016. |
What is JavaScript and camel case? |
|
Answer» Historically, programmers have USED three WAYS of joining multiple words into one variable name:Hyphens:first-name, last-name, master-card, inter-city.Underscore:first_name, last_name, master_card, inter_city.Camel CASE:FirstName, LastName, MasterCard, InterCity.In programming languages, ESPECIALLY in JavaScript, camel case often starts with a lowercase letter:firstName, lastName, masterCard, interCity. |
|
| 20017. |
How does knowing the expected audience help in the design of the website ? |
|
Answer» Target MARKETING HELPS businesses EVALUATE which segments of their audiences are most likely to buy their products, and prioritize resources accordingly. With consumers' help, however, companies can determine which foreign audiences are worth TARGETING.... |
|
| 20018. |
What is JavaScript variable? |
| Answer» JAVASCRIPT uses the var keyword to define variables.An equal sign is used to assign VALUES to variables.In this example, x is defined as a VARIABLE. Then, x is ASSIGNED (GIVEN) the value 6:var x;x = 6 | |
| 20019. |
What is JavaScript variables? |
|
Answer» Heya mate GM ❤A JavaScript variable is SIMPLY a name of STORAGE location. There are two types of variables in JavaScript : local variable and GLOBAL variable. There are some rules while declaring a JavaScript variable (also known as identifiers). Name must start with a letter (a to z or A to Z), underscore( _ ), or DOLLAR( $ ) sign.... Thank you have a great day ❤✌✌ |
|
| 20020. |
Explain the syntax of CSS. |
|
Answer» A CSS rule-set consists of a selector and a declaration BLOCK: The selector points to the HTML element you want to style. The declaration block contains one or more DECLARATIONS separated by semicolons... |
|
| 20021. |
What is JavaScript program in few words? |
|
Answer» A COMPUTER program is a LIST of "INSTRUCTIONS" to be "executed" by the computer.In a programming language, these program instructions are called STATEMENTS.JavaScript is a programming language.JavaScript statements are separated by SEMICOLONS. |
|
| 20022. |
What are JavaScript display possibilities? |
| Answer» JAVASCRIPT can "display" DATA in different ways:WRITING into an alert box, using window.alert().Writing into the HTML OUTPUT using document.write().Writing into an HTML element, using innerHTML.Writing into the BROWSER console, using console.log(). | |
| 20023. |
Which of the following is a free open source web development IDE ?(a) HTML (b) Kompozer (c) Scite (d) Base |
|
Answer» An integrated development ENVIRONMENT (IDE) is a SOFTWARE APPLICATION that PROVIDES comprehensive FACILITIES to computer programmers for software development. ... |
|
| 20024. |
What are the advantages of external JavaScript? |
|
Answer» External scripts are useful for CODE reuse. When the same code is used in multiple sites or HTML pages, it makes SENSE to have the javaScript code SEPARATED into its own js file. The advantages of using an externally SAVING script is that separating HTML and JavaScript code will help manage the code base better._____✔ |
|
| 20025. |
1)The primary computer storage unit of a computer is (i) Hard Drive(ii) Soft Drive(iii) Medium Drive(iv) Pen Drive2)What part of the computer, when removed, would make you not able to use the computer?(i) Keyboard/Mouse(u) Power Supply(iii) Fan(iv) RAM Choose the correct answer |
| Answer» 1)HARD drive.2) Keyboard/Mouse. | |
| 20026. |
What is software architecture ? Explain Architecture Business Cycle with neat diagram |
|
Answer» Software architecture is a result of technical, business, and social influences. Its EXISTENCE in TURN affects the technical, business, and social environments that SUBSEQUENTLY INFLUENCE future ARCHITECTURES. The Architecture Business Cycle: Definition: Architecture Business Cycle (ABC). |
|
| 20027. |
What data type is represented by integer in Python 3? 1 - Short 2 - Long 3 -Float 4-Decimal |
| Answer» WER is FLOAT DATA TYPE | |
| 20028. |
Which of the followings is known as the process of converting a cipher-text into original plain text ? (a) Enciphering (b) Encryption (c) Ciphering (d) Decryption |
| Answer» ION is the PROCESS of converting a CIPHER TEXT into original plain text | |
| 20029. |
Fill the spaces on given window screen? |
|
Answer» Windows 10 SUPPORTS the following snap ACTIONS with windows:DRAG the window to the top of your screen to maximize it.Drag the window to the left or right edge of your screen (or a border between screens) and it will expand to FILL that half of the screen.Drag the window into one of the corners of your screen and it will fill a quarter of the screen.Note: When dragging the window, the snap action does not initiate until the mouse cursor that is dragging the window enters the interaction zone. So, if you CLICK in roughly the middle of the window's title bar and drag it off to the right edge of your screen, it will not Snap until half the window is off of the edge of the screen and your mouse cursor actually hits the edge of the screen |
|
| 20030. |
Which of the following is used to transform the original message into unintelligible message by some logic ?(a) kaison (b) cipher(c) logic bomb (d) atom bomb |
| Answer» B) CIPHER ORC) LOGIC BOMB | |
| 20031. |
Which of the followings is name of the websites/platforms that allow users to contribute (to edit the content) ? (a) Collaborative (b) Co-operative (c) Contributed (d) Distributed |
| Answer» | |
| 20032. |
Why wikis are known as collaborative platform ? |
|
Answer» This list is divided into proprietary or free SOFTWARE, and OPEN SOURCE software, ... a section of PROJECT collaboration software, which is a standard feature in collaboration PLATFORMS. |
|
| 20033. |
There are _______ pre-defined slide masters exists in Impress.(a) 12 (b) 25(c) 28 (d) 15 |
|
Answer» tion:12 )PREDEFINED ........ |
|
| 20034. |
The computers connected with each other should behave in some particular manners and rules. What these rules / manners are called ?(a) Programs (b) Protocols(c) Server (d) Routers |
| Answer» B) PROTOCOLS.........it is your ANAWER | |
| 20035. |
The maximum number of slides per row in slide sorter view can be(a) 10 (b) 12(c) 15 (d) 16 |
| Answer» | |
| 20036. |
What are the typical operations that can be performed on an e-mail ? Explain each in one line. |
|
Answer» are composing an email message, we specify the following THINGS:SENDER's ADDRESS in To field.Cc (if required)Bcc (if required)SUBJECT of email message.Text.Signature. |
|
| 20037. |
The default time interval for slide transition is (a) 1 minute (b) 1 hour (c) 1 second (d) x second |
| Answer» C..ONE SECOND ........ | |
| 20038. |
Smaller pictures of the slides displayed in slides pane are called(a) Thumbnail (b) Icon(c) Tiles (d) Content |
| Answer» | |
| 20039. |
How is an online storage beneficial to an individual? |
|
Answer» Data storage SAVING: By storing your data ONLINE you are reducing the burden of your hard disk, which means you are eventually saving disk SPACE. World Wide accessibility: This is the MAIN advantage of online data storage. You can access your data anywhere in the world. |
|
| 20040. |
In how many different ways a new slide can be added to the presentation ? (a) 2 (b) 3 (c) 4 (d) 5 |
| Answer» | |
| 20041. |
How text can be added to header or footer on the slides ? |
|
Answer» In the box below Footer, type the text that you want, such as the presentation title. Check Date and time to add that to your SLIDES. Check Slide NUMBER to add that to your slides. ... Or, if you want the footer INFORMATION only on the selected slide, CLICK Apply INSTEAD of Apply to All. |
|
| 20042. |
Which of the following is not a section of tasks pane ? (a) Master pages (b) Layouts (c) Custom View (d) Custom animation |
| Answer» B..LAYOUTS .......... | |
| 20043. |
The three speed options available for slide transition are : (a) Slow, medium, fast (b) Very slow, medium, very fast (c) Slow, medium, very fast (d) No effect, slow, fast |
| Answer» | |
| 20044. |
Describe the use of fields available in header and footer. |
|
Answer» in HEADER we can ENTER the chapter name and page NUMBER. Explanation:in footer we can enter the assignment or BOOK name and page number |
|
| 20045. |
Use the following tables given below and write queries for the below situations Student(StudentId, Name, Branch, Institute) Exam(CourseNo, Course Name, Dateof Exam) Appeared(StudentId, CourseNo) (a) List the details of exam conducted for course number 8 or 12. (b) List the StudentId, his name and the course in which he appeared for exam. (c) List the name of all the students who study in "Satyam" institute (d)Find total number of student registered in the course number 4. (e) List the course name, date on which exam was conducted and names of the all the students who appeared in that exam. (f) List the course number and name of the course whose exam is to be held on 12/2/2012 (g) List the details of the exam whose course number is 8 or 10 and date of exam is 2/2/2012 (h) List the branch of student whose name starts with alphabet A. (i) Delete all the records of ABC Institute. |
| Answer» TION:hivvhiihvihivhvhiivhviovyhvihov | |
| 20046. |
Write steps to create your own template. |
| Answer» EXPLANATION:THERE ARE THREE STEPS | |
| 20047. |
Which of the following is not a part of main Impress window ?(a) The slides pane (b) The workspace(c) The work pane (d) The task pane |
| Answer» | |
| 20048. |
In Print Range by default current page is selected for printing. (State whether the statement is True or False) |
|
Answer» s the answerExplanation:In a document, print range simply refers to the PAGES you would like to print from a document, or the area of a SPREADSHEET you would like to print instead of the entire worksheet. In default, the print option stands at "All Pages." HOWEVER, if you would like to print only a particular range instead of the whole document, you can choose from TWO options. You can either print only the current page (where your cursor is) or specific page numbers can be entered. Open print dialog box by pressing Ctrl+P. In the General tab, choose Pages from the Range section. Type the page numbers you wish to print separated by COMMAS (2, 3, 4) or use a dash to denote a range of pages (2-4 ). Click Print to complete the process. |
|
| 20049. |
The default orientation of a page in Writer is (a) Portrait (b) Landscape (c) Book (d) None |
|
Answer» ht answer to the asked QUESTION is Option A.The default orientation of a page in Writer is Portrait.Whenever a NEW word DOCUMENT is OPENED on the COMPUTER, the portrait orientation is the default orientation of the new word document. Portrait and landscape orientations are the two types of orientation modes available. |
|
| 20050. |
When splitting a table into two tables, the Heading row(s) are copied in the second table automatically if repeat heading option is checked. (State whether the statement is True or False) |
| Answer» TRUEEXPLANATION: | |