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.
| 4151. |
Question 1What is the use of the following options present in a Create Scenario dialog box?1. Display border2. Copy entire sheet |
|
Answer» DISPLAY borde PLEASE FOLLOW ME |
|
| 4152. |
8. ਸੀ ਭਾਸ਼ਾ ਵਿਚ ਕਿੰਨੇ ਮੇਨ ਫੰਕਸ਼ਨ ਵਰਤੇ ਜਾ ਸਕਦੇJO? (How many main functions canbe used in the C language program?)C भाषा में कितने मेन फंक्शन का उपयोग कियाजा सकता है?O टिँव (One) एकO è (Two) aO ठिठ (Three) तीनO fet (Any Number of) fandt off |
|
Answer» Answer: 1 Explanation: 8. ਸੀ ਭਾਸ਼ਾ ਵਿਚ ਕਿੰਨੇ ਮੇਨ ਫੰਕਸ਼ਨ ਵਰਤੇ ਜਾ ਸਕਦੇ JO? (How MANY main functions can be USED in the C language program?) C भाषा में कितने मेन फंक्शन का उपयोग किया जा सकता है? O टिँव (ONE) एक O è (Two) a O ठिठ (THREE) तीन O fet (Any Number of) fandt off |
|
| 4153. |
In C language can the first letter of the Identifier be Underscore? / C भाषा में आइडेंटिफायर का पहला अक्षर अंडरस्कोर हो सकता है? *ਸਹੀ True सहीਗਲਤ False गलत |
| Answer» | |
| 4154. |
HTML ਦੇ ਟੈਗਜ { } ਬਰੈਕਟ ਨਾਲ ਸਮਾਪਤ ਹੁੰਦੇ ਹਨ । / HTML tags are enclosed in { } braces. / HTML के टैगज { } ब्रैकेट के साथ समाप्त होते हैं । *ਸਹੀ True सहीਗਲਤ False गलत |
|
Answer» FALSE................. |
|
| 4155. |
Which of the following is not Reserve word in C language. इनमें से कौन सा शब्द सी भाषा में आरक्षित शब्द नहीं है? *1. for2. goto3. switch4. doo |
|
Answer» Answer: |
|
| 4156. |
Using the switch statement, write a menu driven program to perform following operations: [10](i) To calculate the sum of the following series:-1 + 12 + 123 + 1234 + ………………………. N terms. where N is a positive integer which must be entered through the keyboard. |
|
Answer» 123456789 Explanation: love lok that every step 1 new NUMBER is added or you can tell that one and then 11 and then 111 add then 1111 add then 11111 etc. the ENDING of keyboard with 9 or if you go after keyboard it will be infinite if you LIKE my answer please thanks me rate me and MAKE me brainlist |
|
| 4157. |
15....... identifies the name size and type of various fields in Microsoft AccessIn Access, all objects of a database are stored in a2.3. A...................4. The data type... contains long text with all kinds of data. |
|
Answer» Answer: Introduction to data types and field PROPERTIES Access for Microsoft 365 Access 2019 More... EVERY table in Access is made up of fields. The properties of a field describe the characteristics and behavior of data added to that field. A field's data type is the most important property because it determines what kind of data the field can store. This article describes the data types and other field properties available in Access, and includes ADDITIONAL information in a detailed data type reference section. In this article Overview When to USE which data type Field size property Data types in relationships and joins Data type reference |
|
| 4158. |
To print the Following triangle with N rows Example: If N = 5, Output:1514 1312 11 10 9 8 7 65 4 3 2 1 |
|
Answer» Answer: |
|
| 4159. |
C. Identify the troubleshoot areas.1. Windows stops responding.2. The system crashes when you are working with a specific software.3. Power failure in the computer.4. You are unable to install a program.5. Windows restarts without warning.6. Windows starts in a safe mode. |
|
Answer» Answer: C. 1.A computer locking up like this is usually a software issue. It is mainly down to software. ... Either too many programs requiring resources, missing files, file corruption, system INTERRUPTS, or the processor task queue becoming stuck. 2.i dont know. 3.When a power failure occurs, any data currently in a temporary storage, such as in the computer' memory, is immediately lost and unrecoverable. ... Power failures MAY also cause data corruption and, in some cases, hardware to go bad. 4.Uninstall Previous Software Versions But sometimes, having an OLD version of the program installed can cause issues when you try to INSTALL the latest release. If you still can't install software properly, go to Settings > Apps > Apps & features and uninstall the current version of the software. 5.i dont know. 6.Now that you are in winRE, you will follow these steps to take you to safe mode: On the CHOOSE an option screen, select Troubleshoot > Advanced options > Startup Settings > Restart. After your device restarts, you'll see a list of options. Select option 5 from the list or press F5 for Safe Mode with Networking. Explanation: hope you got it. please follow meee. please follow meee and follow back. please like and Brainliest. |
|
| 4160. |
WAP to print to check whether the entered number is Niven number or not.( Any positive integer which isdivisible by the sum of its digits is a Harshad Number or Niven Number. |
|
Answer» <P>Explanation: Find the VALUE of m so that the QUADRATIC equation px^2 + (p – 1) X +(p – 1) = 0 has equal roots. |
|
| 4161. |
Write a Program to input twenty numbers in an array. Arrange these numbers in descending order using theBubble sort technique. |
|
Answer» IMPORT java.util.Arrays; import java.util.Scanner; public class Sorting { static void decendingBubbleSort(int[ ] array) { boolean isSwapped; for (int i = 0; i < array.length - 1 ; i++) { isSwapped = false; for (int j = 0; j < array.length - i - 1 ; j++) if (array[j] < array[j + 1]) { int TEMP = array[j]; array[j] = array[j + 1]; array[j + 1] = temp; isSwapped = true; } if (!isSwapped) break; } } public static void main(STRING[ ] args) { int[ ] array = new int[20]; System.out.println("Enter 20 numbers - "); for (int i = 0; i < array.length; i++) array[i] = new Scanner(System.in).NEXTINT( ); decendingBubbleSort(array); System.out.println("Sorted the Array in Decending ORDER - " + Arrays.toString(array)); } } |
|
| 4162. |
5. The key that you press to movefrom upper pane to lower pane is10. Query used to display the records that have same values for one or more specified fields |
|
Answer» elect the active tab of the ribbon and activate KeyTips Alt or F10 (to move to a different tab, use KeyTips or the arrow keys) Open the Home tab Alt+H Open the Tell me box on the ribbon Alt+Q, and then enter the search term Display the shortcut menu for the selected item Shift+F10 Move the focus to a different pane of the window F6 Open an existing database Ctrl+O or Ctrl+F12 Show or hide the Navigation Pane F11 Show or hide a PROPERTY sheet F4 Switch between Edit mode (with insertion point displayed) and Navigation mode in the Datasheet or Design view F2 Switch to Form view from the form Design view F5 Move to the next or PREVIOUS field in the Datasheet view The Tab key or Shift+Tab Go to a specific record in the Datasheet view Alt+F5 (then, in the record number box, type the record number and PRESS Enter) Open the Print dialog box from Print (for datasheets, forms, and reports) Ctrl+P Open the Page Setup dialog box (for forms and reports) S Zoom in or out on a part of the page Z Open the Find tab in the Find and Replace dialog box in the Datasheet view or Form view Ctrl+F Open the Replace tab in the Find and Replace dialog box in the Datasheet view or Form view Ctrl+H Add a new record in Datasheet view or Form view Ctrl+Plus Sign (+) Open the HELP window F1 Exit Access Alt Explanation: |
|
| 4163. |
6. ............. data can help you review andanalyze information in your databaseOSortingFiltering |
|
Answer» sorting DATA can HELP you review and analyze information in your database. Explanation: Mark as brilliant |
|
| 4164. |
WAP to input a number and print it inwords The number will not consistmore then ulights.Example: -Input-236Output - Two hundreed thirty sixInput50464Output - Envalid input. |
|
Answer» SORRY I didn't UNDERSTAND |
|
| 4165. |
11th Computer Science PAS 2020 (MOGA) Computer Science ( 22/09/2020)*Requiredਜ਼ਿਲ੍ਹੇ ਦਾ ਨਾਮ/ District *Chooseਈ ਪੰਜਾਬ ਆਈ ਡੀ /E-PUNJAB ID *Your answer1. ਸੀ ਭਾਸ਼ਾ ਦੀ ਸਟੇਟਮੈਂਟ ਦਾ ਅੰਤ ਕਰਨ ਲਈ ________ ਚਿੰਨ੍ਹ ਦੀ ਵਰਤੋਂ ਕੀਤੀ ਜਾਂਦੀ ਹੈ। (____________ symbol is used to terminate each Statement of C language) / ________ प्रतीक का उपयोग C भाषा कथन को समाप्त करने के लिए किया जाता है। *ਕਾਲਨ (:) Colon कालनਸੈਮੀਕਾਲਨ (;) Semicolon सैमीकालनਕੋਮਾ (,) Comma कॉमाਫੁੱਲ ਸਟਾਪ (.) Full Stop फुल स्टॉप2. HTML ਦੇ ਟੈਗਜ { } ਬਰੈਕਟ ਨਾਲ ਸਮਾਪਤ ਹੁੰਦੇ ਹਨ । / HTML tags are enclosed in { } braces. / HTML के टैगज { } ब्रैकेट के साथ समाप्त होते हैं । *ਸਹੀ True सहीਗਲਤ False गलत3. ਸੀ ਭਾਸ਼ਾ ਵਿਚ \t ਕਿਸ ਚਿੰਨ੍ਹ ਦੀ ਨੁਮਾਇੰਦਗੀ ਕਰਦਾ ਹੈ? (Which character is represented by \t in C Language?/ C भाषा में \t किस प्रतीक का प्रतिनिधित्व करता है? *ਟਰੈਕ (Track) ट्रैकਟੈਬ (Tab) टैबਟਾਸਕ (Task) टास्कਟਾਪ (Top) टॉप4. C ਭਾਸ਼ਾ _____ ਲੇਵਲ ਦੀ ਭਾਸ਼ਾ ਹੈ ? / C Language is ____ level language? / C भाषा _____ स्तर की भाषा है? *ਹਾਈ ਲੈਵਲ High Level उच्च स्तरਮਿਡਲ ਲੈਵਲ Middle Level मध्य स्तरਲੋ ਲੈਵਲ Low Level निम्न स्तरਇਨ੍ਹਾਂ ਵਿੱਚੋ ਕੋਈ ਨਹੀ None of these इनमें से कोई भी नहीं5. ਇਨ੍ਹਾਂ ਵਿੱਚੋਂ ਕਿਹੜਾ ਅਰਥਮੈਟਿਕ ਅਪਰੇਟਰ ਨਹੀਂ ਹੈ ?/ Which of the following is not a Arithmetic Operator? / निम्नलिखित में से कौन एक अंकगणितीय ऑपरेटर नहीं है ? *+%&*6. ਕੀ ਸੀ ਭਾਸ਼ਾ ਵਿੱਚ ਅਡੈਂਟੀ ਫਾਇਰ ਦਾ ਪਹਿਲਾ ਅੱਖਰ ਅੰਡਰਸਕੋਰ ਹੋ ਸਕਦਾ ਹੈ/ In C language can the first letter of the Identifier be Underscore? / C भाषा में आइडेंटिफायर का पहला अक्षर अंडरस्कोर हो सकता है? *ਸਹੀ True सहीਗਲਤ False गलत7. _______ ਓਪਰੇਟਰ ਦੀ ਕੋਈ ਦਰਜਾਬੰਦੀ ਨਹੀਂ ਹੁੰਦੀ / There is no Hierarchical order for ______ Operators. / ______ ऑपरेटर्स के लिए कोई पदानुक्रमित ( दर्जाबंदी) आदेश नहीं है। *ਲੌਜੀਕਲ Logical लॉजिकलਰਿਲੇਸ਼ਨਲ relational रिलेशनलਜਨਰਲ General जनरलਕੋਈ ਵੀ ਨਹੀਂ None of These इनमें से कोई नहीं8. ਸੀ ਭਾਸ਼ਾ ਵਿਚ ਕਿੰਨ੍ਹੇ ਮੇਨ ਫੰਕਸ਼ਨ ਵਰਤੇ ਜਾ ਸਕਦੇ ਹਨ? (How many main functions can be used in the C language program?) C भाषा में कितने मेन फंक्शन का उपयोग किया जा सकता है? *ਇੱਕ (One) एकਦੋ (Two) दोਤਿੰਨ (Three) तीनਕਿੰਨ੍ਹੇ ਵੀ (Any Number of) कितने भी9.ਸੀ ਭਾਸ਼ਾ ਵਿੱਚ ਇੱਕ ਕੈਰ ਡਾਟਾ ਟਾਈਪ ਹਮੇਸ਼ਾ ਇੱਕ ਬਾਈਟ ਦਾ ਹੁੰਦਾ ਹੈ । / In C language a char data type always occupies one byte ./ C भाषा में एक कैर डेटा प्रकार हमेशा एक बाइट होता है। *ਸਹੀ True सहीਗਲਤ False गलत10. WWW ਦਾ ਪੂਰਾ ਨਾਂ ਕੀ ਹੈ? (What is the Full Form of WWW?) / WWW का फुल फॉर्म क्या है *ਵਰਲਡ ਵੈੱਬ ਵਾਈਡ (World Web Wide) वर्ल्ड वेब वाइडਵਰਲਡ ਵਾਈਡ ਵੈੱਬ (World Wide Web) वर्ल्ड वाइड वेबਵਾਈਡ ਵੈੱਬ ਵਰਲਡ (Wide Web World) वाइड वेब वर्ल्डਵਾਈਡ ਵਰਲਡ ਵੈੱਬ (Wide World Web) वाइड वर्ल्ड वेब11. ਗਣਿਤ ਲਾਈਬਰੇਰੀ ਦੀ ਸਥਾਪਨਾ ਕਿਸ ਫਾਈਲ ਦੁਆਰਾ ਕੀਤੀ ਜਾਂਦੀ ਹੈ? (Which header file is used to setup Math library?) गणित लाइब्रेरी स्थापित करने के लिए किस फ़ाइल का उपयोग किया जाता है? *mathmathematicsmath.hmathematics.h12 .ਸੀ ਭਾਸ਼ਾ ਵਿੱਚ ਦੋਹਰੇ ਅਰਥਮੈਟਿਕ ਆਪਰੇਟਰਾਂ ਦੀ ਗਿਣਤੀ ____ ਹੈ ? / The number of Binary Arithmetic Operators in C is__ ? C भाषा में दोहरे अर्थमैटिक ऑपरेटरों की संख्या ____ है? *456713. ਨਿਮਨਲਿਖਤ ਵਿੱਚੋਂ ਕਿਹੜਾ ਟਾਈਪ int ਦਾ ਸਹੀ ਪੂਰਨ ਅੰਕ ਨਹੀਂ ਹੈ / Which of the following is not a valid Integer constant of the type int ? निम्नलिखित में से कौन सा प्रकार int सही पूर्ण अंक नहीं है? *375032800-32767014. ਕੋਈ ਵੀ ਫਾਰਮ ਬਣਾਉਣ ਤੋਂ ਪਹਿਲਾਂ ਟੇਬਲ ਬਣਾਉਣਾ ਜ਼ਰੂਰੀ ਹੈ ।/ Before designing a form data table must be present .कोई भी फार्म बनाने से पहले टेबल बनाना आवश्यक है । *ਸਹੀ True सहीਗਲਤ False गलत15. ਖਾਲੀ ਚਿੰਨ੍ਹ ਦੀ ਪ੍ਰਤੀਨਿਧਤਾ ਕਿਸ ਚਿੰਨ੍ਹ ਦੁਆਰਾ ਕੀਤੀ ਜਾਂਦੀ ਹੈ ?/ The null character is represented by ____? खाली चिन्ह की नुमाइंदगी किस चिन्ह ____ द्वारा जाती है *null\n\0016. stdio.h ਦਾ ਪੂਰਾ ਰੂਪ ਨਾਂ ਕੀ ਹੈ? (Full form of stdio.h?) Stdio.h का पूर्ण रूप क्या है? *ਸਟੈਂਡਰਡ ਹੈਡਰ ਫਾਈਲ (Standard header file) स्टैंडर्ड हैडर फाइलਸਟੈਂਡਰਡ ਇਨਪੁੱਟ ਹੈਡਰ ਫਾਈਲ (Standard Input header file) स्टैंडर्ड इनपुट हैडर फाइलਸਟੈਂਡਰਡ ਆਊਟਪੁੱਟ ਹੈਡਰ ਫਾਈਲ (Standard Output header file) स्टैंडर्ड आउटपुट हैडर फाइलਸਟੈਂਡਰਡ ਇਨਪੁੱਟ ਆਊਟਪੁੱਟ ਹੈਡਰ ਫਾਈਲ (Standard Input Output header file) स्टैंडर्ड इनपुट आउटपुट हैडर फाइल17. ਇਨ੍ਹਾਂ ਵਿੱਚੋਂ ਕਿਹੜਾ ਸੀ ਭਾਸ਼ਾ ਵਿੱਚ ਰਾਖਵਾਂ ਸ਼ਬਦ ਨਹੀਂ ਹੈ । Which of the following is not Reserve word in C language. इनमें से कौन सा शब्द सी भाषा में आरक्षित शब्द नहीं है? *forgotoswitchdoo18. i=5 ਨੂੰ ______ਅਸਾਈਨਮੈਂਟ ਕਿਹਾ ਜਾਂਦਾ ਹੈ ।/ i=5 is called __ assignment . i = 5 को ______ असाइनमेंट कहा जाता है । *ਲੌਜੀਕਲ Logical लॉजिकलਰਿਲੇਸ਼ਨਲ relational रिलेशनलਜਨਰਲ General जनरलਕੋਈ ਵੀ ਨਹੀਂ None of These इनमें से कोई नहीं19. ਸੈਮੀਕੋਲਨ ਇੱਕ ਡਿਕਲੇਰੇਸ਼ਨ ਦਾ delimiter ਹੁੰਦਾ ਹੈ। / Semicolon is a declaration delimiter./ सेमीकालन एक डिक्लेरेशन का delimiter होता है । *ਸਹੀ True सहीਗਲਤ False गलत20 . ਨਿਮਨਲਿਖਤ ਵਿੱਚੋਂ ਕਿਹੜੇ ਵੇਰੀਏਬਲ ਦਾ ਨਾਂ ਗਲਤ ਹੈ । / Which of the following variable name is incorrect. निम्नलिखित में कौन सा वेरिएबल का नाम गलत है । *SUMinterest_paidpaidroll-noSubmitNever submit passwords through Google Forms.This content is neither created nor endorsed by Google. Report Abuse - Terms of Service - Privacy Policy Formsप्लीज गिव मी आंसर द क्वेश्चन |
|
Answer» OK.........................,....................... |
|
| 4166. |
Choose the correct matching optionCtrl + S Create database Enter/edit data Memo Unique identify recordForm Microsoft Access Data-type Save Primary-Key Form Microsoft Access Data-type Save Primary-Key |
| Answer» | |
| 4167. |
2. The conditions that identify the records you want to find is called..........QueryCriteria |
|
Answer» OKAY. it's UR answer. |
|
| 4168. |
3. ਸੀ ਭਾਸ਼ਾ ਵਿਚ \t ਕਿਸ ਚਿੰਨ੍ਹ ਦੀ ਨੁਮਾਇੰਦਗੀ ਕਰਦਾ ਹੈ?(Which character is represented by \t in CLanguage?/Cਥਾ \t ਵਿਚ ਧਰੀ ਜਾ ਰਿਹਬਦਗ ਲੈ?00 ਟਰੈਕ (Track) ਟੈਕO ਟੈਬ (Tab) ਟੈਕ0 ਟਾਸਕ (Task) ਹਲ0 ਟਾਪ (Top) ਰੁੱਧ |
|
Answer» in C LANGUAGE \t REPRESENTS TAB |
|
| 4169. |
Vi) Times New Roman, Comic Sans, and Calibri are called on of these.a) Fontsb) VariationsFont sizesc)vii) Font size is measured in this. |
|
Answer» I hope it helps you please MARK me to BRAINLIEST |
|
| 4170. |
Which I.T. enabled gadget is used to monitor heartbeat rate-1 pointFit BitEEGMRI |
| Answer» | |
| 4171. |
Symbol is used to terminate each Statement of C language)(:) Colon (;) Semicolon (,) Comma (.) Full Stop |
| Answer» | |
| 4172. |
In the spreadsheet ______ function is used to total a data arranged in an array that is how a group of cell with labels for columns and a row.(a) solver(b) gold seek(c) sub total (d) macro |
|
Answer» (a) |
|
| 4173. |
There is no Hierarchical order for ______ Operators. *ਲੌਜੀਕਲ Logical लॉजिकलਰਿਲੇਸ਼ਨਲ relational रिलेशनलਜਨਰਲ General जनरलਕੋਈ ਵੀ ਨਹੀਂ None of These इनमें से कोई नहीं |
| Answer» | |
| 4174. |
Which of the following is not reserve word in c languageforgoto switch doo |
|
Answer» Answer: switch Explanation: for doo gota the third party you are the third eye blindness and had a great DAY ma send me the third party or otherwise protected from DISCLOSURE under gya hai bhai science and technology UNIVERSITY ADMISSION test RESULT published the third party |
|
| 4175. |
A modem is connected to *1 pointA. A telephone lineB. A keyboardC. A printerD. A monitor |
|
Answer» A.A TELEPHONE line please FOLLOW me......... |
|
| 4176. |
Terminate each Statement of C language) / ________ प्रतीक का उपयोग C भाषा कथन को समाप्त करने के लिए किया जाता है। *ਕਾਲਨ (:) Colon कालनਸੈਮੀਕਾਲਨ (;) Semicolon सैमीकालनਕੋਮਾ (,) Comma कॉमाਫੁੱਲ ਸਟਾਪ (.) Full Stop फुल स्टॉप This is a required question2. HTML ਦੇ ਟੈਗਜ { } ਬਰੈਕਟ ਨਾਲ ਸਮਾਪਤ ਹੁੰਦੇ ਹਨ । / HTML tags are enclosed in { } braces. / HTML के टैगज { } ब्रैकेट के साथ समाप्त होते हैं । *ਸਹੀ True सहीਗਲਤ False गलत This is a required question3. ਸੀ ਭਾਸ਼ਾ ਵਿਚ \t ਕਿਸ ਚਿੰਨ੍ਹ ਦੀ ਨੁਮਾਇੰਦਗੀ ਕਰਦਾ ਹੈ? (Which character is represented by \t in C Language?/ C भाषा में \t किस प्रतीक का प्रतिनिधित्व करता है?*ਟਰੈਕ (Track) ट्रैकਟੈਬ (Tab) टैबਟਾਸਕ (Task) टास्कਟਾਪ (Top) टॉप4. C ਭਾਸ਼ਾ _____ ਲੇਵਲ ਦੀ ਭਾਸ਼ਾ ਹੈ ? / C Language is ____ level language? / C भाषा _____ स्तर की भाषा है? *ਹਾਈ ਲੈਵਲ High Level उच्च स्तरਮਿਡਲ ਲੈਵਲ Middle Level मध्य स्तरਲੋ ਲੈਵਲ Low Level निम्न स्तरਇਨ੍ਹਾਂ ਵਿੱਚੋ ਕੋਈ ਨਹੀ None of these इनमें से कोई भी नहीं5. ਇਨ੍ਹਾਂ ਵਿੱਚੋਂ ਕਿਹੜਾ ਅਰਥਮੈਟਿਕ ਅਪਰੇਟਰ ਨਹੀਂ ਹੈ ?/ Which of the following is not a Arithmetic Operator? / निम्नलिखित में से कौन एक अंकगणितीय ऑपरेटर नहीं है ? *+%&*6. ਕੀ ਸੀ ਭਾਸ਼ਾ ਵਿੱਚ ਅਡੈਂਟੀ ਫਾਇਰ ਦਾ ਪਹਿਲਾ ਅੱਖਰ ਅੰਡਰਸਕੋਰ ਹੋ ਸਕਦਾ ਹੈ/ In C language can the first letter of the Identifier be Underscore? / C भाषा में आइडेंटिफायर का पहला अक्षर अंडरस्कोर हो सकता है? *ਸਹੀ True सहीਗਲਤ False गलत7. _______ ਓਪਰੇਟਰ ਦੀ ਕੋਈ ਦਰਜਾਬੰਦੀ ਨਹੀਂ ਹੁੰਦੀ / There is no Hierarchical order for ______ Operators. / ______ ऑपरेटर्स के लिए कोई पदानुक्रमित ( दर्जाबंदी) आदेश नहीं है। *ਲੌਜੀਕਲ Logical लॉजिकलਰਿਲੇਸ਼ਨਲ relational रिलेशनलਜਨਰਲ General जनरलਕੋਈ ਵੀ ਨਹੀਂ None of These इनमें से कोई नहीं This is a required question8. ਸੀ ਭਾਸ਼ਾ ਵਿਚ ਕਿੰਨ੍ਹੇ ਮੇਨ ਫੰਕਸ਼ਨ ਵਰਤੇ ਜਾ ਸਕਦੇ ਹਨ? (How many main functions can be used in the C language program?) C भाषा में कितने मेन फंक्शन का उपयोग किया जा सकता है? *ਇੱਕ (One) एकਦੋ (Two) दोਤਿੰਨ (Three) तीनਕਿੰਨ੍ਹੇ ਵੀ (Any Number of) कितने भी |
|
Answer» B,b,jzoznzzizy the FIRST TIME in the first time in the first time in the first time in the first time in the first time in the |
|
| 4177. |
Terminate each Statement of C language) / ________ प्रतीक का उपयोग C भाषा कथन को समाप्त करने के लिए किया जाता है। *ਕਾਲਨ (:) Colon कालनਸੈਮੀਕਾਲਨ (;) Semicolon सैमीकालनਕੋਮਾ (,) Comma कॉमाਫੁੱਲ ਸਟਾਪ (.) Full Stop फुल स्टॉप This is a required question2. HTML ਦੇ ਟੈਗਜ { } ਬਰੈਕਟ ਨਾਲ ਸਮਾਪਤ ਹੁੰਦੇ ਹਨ । / HTML tags are enclosed in { } braces. / HTML के टैगज { } ब्रैकेट के साथ समाप्त होते हैं । *ਸਹੀ True सहीਗਲਤ False गलत3. ਸੀ ਭਾਸ਼ਾ ਵਿਚ \t ਕਿਸ ਚਿੰਨ੍ਹ ਦੀ ਨੁਮਾਇੰਦਗੀ ਕਰਦਾ ਹੈ? (Which character is represented by \t in C Language?/ C भाषा में \t किस प्रतीक का प्रतिनिधित्व करता है?*ਟਰੈਕ (Track) ट्रैकਟੈਬ (Tab) टैबਟਾਸਕ (Task) टास्कਟਾਪ (Top) टॉप4. C ਭਾਸ਼ਾ _____ ਲੇਵਲ ਦੀ ਭਾਸ਼ਾ ਹੈ ? / C Language is ____ level language? / C भाषा _____ स्तर की भाषा है? *ਹਾਈ ਲੈਵਲ High Level उच्च स्तरਮਿਡਲ ਲੈਵਲ Middle Level मध्य स्तरਲੋ ਲੈਵਲ Low Level निम्न स्तरਇਨ੍ਹਾਂ ਵਿੱਚੋ ਕੋਈ ਨਹੀ None of these इनमें से कोई भी नहीं5. ਇਨ੍ਹਾਂ ਵਿੱਚੋਂ ਕਿਹੜਾ ਅਰਥਮੈਟਿਕ ਅਪਰੇਟਰ ਨਹੀਂ ਹੈ ?/ Which of the following is not a Arithmetic Operator? / निम्नलिखित में से कौन एक अंकगणितीय ऑपरेटर नहीं है ? *+%&*6. ਕੀ ਸੀ ਭਾਸ਼ਾ ਵਿੱਚ ਅਡੈਂਟੀ ਫਾਇਰ ਦਾ ਪਹਿਲਾ ਅੱਖਰ ਅੰਡਰਸਕੋਰ ਹੋ ਸਕਦਾ ਹੈ/ In C language can the first letter of the Identifier be Underscore? / C भाषा में आइडेंटिफायर का पहला अक्षर अंडरस्कोर हो सकता है? *ਸਹੀ True सहीਗਲਤ False गलत7. _______ ਓਪਰੇਟਰ ਦੀ ਕੋਈ ਦਰਜਾਬੰਦੀ ਨਹੀਂ ਹੁੰਦੀ / There is no Hierarchical order for ______ Operators. / ______ ऑपरेटर्स के लिए कोई पदानुक्रमित ( दर्जाबंदी) आदेश नहीं है। *ਲੌਜੀਕਲ Logical लॉजिकलਰਿਲੇਸ਼ਨਲ relational रिलेशनलਜਨਰਲ General जनरलਕੋਈ ਵੀ ਨਹੀਂ None of These इनमें से कोई नहीं8. ਸੀ ਭਾਸ਼ਾ ਵਿਚ ਕਿੰਨ੍ਹੇ ਮੇਨ ਫੰਕਸ਼ਨ ਵਰਤੇ ਜਾ ਸਕਦੇ ਹਨ? (How many main functions can be used in the C language program?) C भाषा में कितने मेन फंक्शन का उपयोग किया जा सकता है? *ਇੱਕ (One) एकਦੋ (Two) दोਤਿੰਨ (Three) तीनਕਿੰਨ੍ਹੇ ਵੀ (Any Number of) कितने भी |
Answer»
|
|
| 4178. |
13. Define a class called parking lot with the following specifications.Instance variables / data membersint vno - to store the vehicle number.int hours - to store the number of hours the vehicle is parked in the parking lot.double bill - to store the bill amount.Member methods:void input(): to input and store the vno and hours.V Edit with WPS Officevoid calculate(): to compute the parking charges at the rate of 3 rs for the first hour and1.50 rs for each additional hour.write a main method to create an object of the class and call the above methods. |
|
Answer» Answer :Member methods: ShowRoom(): DEFAULT CONSTRUCTOR to initialize data ... Define a class ELECTRIC Bill with the following specifications: Instance Variable/ data ... store the number of hours the vehicle is parked in the parking lot double bill – To store the ... Scanner; class ParkingLot { int vno; int hours; double bill; public void INPUT() ... Please marked me as Brainlyst answer and give me POINTS and thanks for my all answers please please......... |
|
| 4179. |
The Internet is *1 pointA. A communication system for some states of IndiaB. A communication system for the Indian governmentC. An internal communication system for a businessD. A large network of net.works |
| Answer» | |
| 4180. |
3.Minimal Primary keys are called(1 Point)A. Schema keysB. Candidate keysC. Domain keysD. Attribute keys |
|
Answer» minimal PRIMARY KEYS are CALLED CANDIDATE keys may it will be the answer |
|
| 4181. |
9. A question represented in a way that Access can understandReportQueryDatasheet |
|
Answer» I don't KNOW the answer |
|
| 4182. |
(Which header file is used to setup Math library?) गणित लाइब्रेरी स्थापित करने के लिए किस फ़ाइल का उपयोग किया जाता है? *mathmathematicsmath.hmathematics.h |
|
Answer» mathematics Explanation: hiiiiiiiiiiiiiiiiiiiii |
|
| 4183. |
Symbal is used to terminate each statement of c language a) colon b) semicolon c) cooma d) fullstop |
|
Answer» Answer: a) COLON (:) B) semicolon (;) c) COMMA(,) d) full STOP(.) |
|
| 4184. |
Which of the following device is used to connect two or more systems. *1 pointA. HubB. RepeaterC. BridgeD. Gateway |
Answer» BRIDGE......≡^ˇ^≡ |
|
| 4185. |
Which of the following variable name is incorrect.1) Sum2) interest paid3)paid 4) roll - No |
|
Answer» Answer: PAID variable NAME is INCORRECT. okay. and other all sum, interest paid and ROLL no are variables. |
|
| 4186. |
2. HTML रे टैतान { } पतैवट ठाठ मनायउ रेउठ |/HTML tags are enclosed in { }braces. / HTML के टैगज { } ब्रैकेट के साथसमाप्त होते हैं।*O मी True सहीO ताप्ठ3 False गलत |
| Answer» | |
| 4187. |
In a spreadsheet you can add information to the __________ box to display it in the navigator when you click the scenario icon selects the desired scenario.(a) Name of scenario (b) comment (c) display border(d) prevent changes |
|
Answer» (C) |
|
| 4188. |
Question1. Design a class PrimePalinGen to generate prime palindrome numbers. [ A numberis saidto be prime palindrome if the number is a prime as well as a palindrome number ][ Prime number: A number having only two factors i.e. 1 and itself ][ Palindrome number: A number which is same as its reverse ]Example: 11(where 11 is a prime number and a palindrome number)Some of the members of the class are given below: [10]Class name : PrimePalinGenData members/instance variables:start : to store the start of rangeend : to store the end of rangeMethods/Member functions:PrimePalinGen (int a, int b) : parameterized constructor to initialize the datamembers start=a and end=bint isPrime(int i) : returns 1 if the number is prime otherwisereturns 0int isPalin(int i) : returns 1 if the number is a palindromeotherwise returns 0void generate( ) : generates all prime palindrome numbersbetween start and end by invoking thefunctions isPrime() and isPalin().Specify the class PrimePalinGen giving details of the constructor( ),int isPrime(int), intisPalin(int) and void generate( ).Define a main( ) function to create an object andcall the functions accordingly |
|
Answer» Explanation: FIND the value of m so that the QUADRATIC EQUATION px^2 + (p – 1) x +(p – 1) = 0 has equal roots. |
|
| 4189. |
9.ਸੀ ਭਾਸ਼ਾ ਵਿੱਚ ਇੱਕ ਕੈਰ ਡਾਟਾ ਟਾਈਪ ਹਮੇਸ਼ਾ ਇੱਕ ਬਾਈਟ ਦਾ ਹੁੰਦਾ ਹੈ । / In C language a char data type always occupies one byte ./ C भाषा में एक कैर डेटा प्रकार हमेशा एक बाइट होता है। *ਸਹੀ True सहਗਲਤ False गलत |
|
Answer» Answer: PLEASE mark me as a brainliest and follow me |
|
| 4190. |
Q• Basic raw material is broken into several useful materials in manufacturing business type:-(A) analytical(B) synthetical(C) processing |
|
Answer» (B) - SYNTHETICAL is badice RAW MATERIAL |
|
| 4191. |
Which of thefollowing variable name isincorrect. OSUMinterest_paidO paidO roll-no |
|
Answer» Answer: ROLL no is incorrect name Explanation: FOLLOW KAR do YRRRR |
|
| 4192. |
9.ਸੀ ਭਾਸ਼ਾ ਵਿੱਚ ਇੱਕ ਕੈਰ ਡਾਟਾ ਟਾਈਪ ਹਮੇਸ਼ਾ ਇੱਕ ਬਾਈਟ ਦਾ ਹੁੰਦਾ ਹੈ । / In C language a char data type always occupies one byte ./ C भाषा में एक कैर डेटा प्रकार हमेशा एक बाइट होता है। *ਸਹੀ True सहीਗਲਤ False गलत |
|
Answer» Answer: false |
|
| 4193. |
7. ਓਪਰੇਟਰ ਦੀ ਕੋਈ ਦਰਜਾਬੰਦੀ ਨਹੀਂJet / There is no Hierarchical orderforOperators./ ऑपरेटर्सके लिए कोई पदानुक्रमित (दर्जाबंदी) आदेश नहींहै।O लेनीवप्ठ Logical लॉजिकलO विप्लेप्सठल relational रिलेशनलO नठठप्त General जनरलवेष्टी ही ठीं None of These इनमें से कोईनहींO O |
| Answer» | |
| 4194. |
19. ਸੈਮੀਕੋਲਨ ਇੱਕ ਡਿਕਲੇਰੇਸ਼ਨ ਦਾ delimiter ਹੁੰਦਾ ਹੈ। / Semicolon is a declaration delimiter./ सेमीकालन एक डिक्लेरेशन का delimiter होता है । *ਸਹੀ True सहीਗਲਤ False गलत |
|
Answer» Explanation: check in google is RIGHT |
|
| 4195. |
A) How LAN is different from MAN!b) Write the steps to open Microsoft Access 2010.c) What is Photoshop? Write two of its features.tool and Move tool. |
|
Answer» Answer: A LAN (LOCAL area network) is a group of computers and network devices CONNECTED together, usually within the same building. ... A MAN (METROPOLITAN area network) is a larger network that usually spans several buildings in the same city or town. -- CLICK “Start” button then “All programs” and bring your mouse pointer to Microsoft Office and lastly click on “Microsoft Access” Click “Start” button then click on “Run” and type “Msaccess” and lastly click “Ok”. ----Adobe Photoshop is a raster graphics editor DEVELOPED and published by Adobe Inc. for Windows and macOS. It was originally created in 1988 by Thomas and John Knoll. Since then, the software has become the industry standard not only in raster graphics editing, but in digital art as a whole |
|
| 4196. |
22. A technique by which the vertical and/or horizontal scan frequency of video signal can be changed fordifferent purpose and applications is called(A) Scan conversion(B) Polygon filling(C) Two dimensional graphics(D) Antialiasing |
| Answer» | |
| 4197. |
Which of the following variable is incorrect1. SUM 2. interest -paid 3.paid4.roll no. |
|
Answer» please mark me as BRAINLIST |
|
| 4198. |
Why should we add or pin anan application to the taskbar?ANS÷ By adding an application on the taskbar ,we can easily open a program by left click on the icon |
|
Answer» The simplest way to customize your taskbar is by pinning VARIOUS PROGRAMS and shortcuts to it through the “PIN this program to taskbar” option, and there are two choices when it comes to getting an application to stick. |
|
| 4199. |
11. ਗਣਿਤ ਲਾਈਬਰੇਰੀ ਦੀ ਸਥਾਪਨਾ ਕਿਮ ਫਾਈਲhar altret J? (Which header fileis used to setup Math library?) गणितलाइब्रेरी स्थापित करने के लिए किस फ़ाइल काउपयोग किया जाता |
|
Answer» math.h Explanation: |
|
| 4200. |
.C.d. Indian Railway Cargoਛੋਟੇ ਉੱਤਰਾਂ ਵਾਲੇ ਪ੍ਰਸ਼ਨ1. ਈ-ਗਵਰਨੈਂਸ ਕੀ ਹੈ?2.ਈ-ਗਵਰਨੈਂਸ ਦੇ ਦੋ ਮੁਖ ਉਦੇਸ਼ਸ਼ਹਿਰੀ ਖੇਤਰ ਵਿੱਚ ਈ-ਗਵਰਨੈ4. ਪੇਂਡੂ ਖੇਤਰ ਵਿੱਚ ਈ-ਗਵਰਨੈੱਸ3. |
| Answer» | |