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.
| 9401. |
Is the shortcut key To Save etdocument |
|
Answer» Answer: Ctrl + N -- Open new document. Ctrl + P -- Open print dialog box. Ctrl + S -- SAVE. Ctrl + Z -- UNDO last action |
|
| 9402. |
नेम द पार्ट्स ऑफ एम ए सेक्शन विंडो |
|
Answer» sgsgsjsjtstusutsdjdtiskgxhkx Explanation: qwertyuiopasdfghjklzxcvbnm |
|
| 9403. |
What is the need of relational database technology for database warehouse ? list its advantages |
|
Answer» the answer is the DATABASE of the TECHNOLOGY of IMPORTANT of WAREHOUSE |
|
| 9404. |
Dash presents information from the database to display summary of data |
|
Answer» Central PROCESSING or rom is the answer Hope it helps you pls mark it has BRAINLIST |
|
| 9405. |
The short cut command for italic is |
|
Answer» ctrl + L |
|
| 9406. |
What will the following code result as? 1Import mathX=100Print(x>0 and math.sqrt(X))a. True b. 1 c. 10.0 |
|
Answer» OPTION b 1 |
|
| 9407. |
19. All tasks related to database handling is known asa) Database Manipulationb) Database Management Systemc) Database Organizationd) Database Creation20. Which of the following are popular DBMS software available in the market?a) Oracle, Ingress b) SQL server, MYSOL. c) DB2, MS Access, Base.d) all of ther21. Base is based on aa) Hierarchical data modelc) Relational Data Model,b) Network data modeld) none22. To open the table name in tables,on the icon that has the required table name in TablesPane of Database Window,a) Double Click b) right click c) triple click d) dragging |
|
Answer» Answer: 19. DATABASE MANAGEMENT 20.oracle,ingress 21 network data model 22.right click Explanation: |
|
| 9408. |
Date- 8-12-201Printer areonly black and white |
| Answer» | |
| 9409. |
(a) renaming (b) deletingiv. Windows is a based Operating(a) GUI (b) CUI (c) KUIv. Each file in a folder has a-name(a) same(b) pet(C) uniqy |
|
Answer» Answer: iv. (a) GUI v. (c) UNIQUE Explanation: WINDOWS is a GUI Based operating system. And each file in a FOLDER has a unique name. |
|
| 9410. |
8 Write1. The small pictures on the desktop are called icons. a. true b. false |
| Answer» | |
| 9411. |
Unlike other programming language,Small Basic does not have……………logical operator.a)AND b)OR c)NOT d)None of these |
|
Answer» Explanation: What is an OPERATOR An operator is a symbol to express an operation (function). Unary Operator An unary operation has one operator and one operand. Sign Operator In Small Basic, sign operator is only minus. So, plus operator becomes error such as x = +1. - minus Binary Operators An binary operation has one operator and TWO operands. SUBSTITUTION Operator Substitution statements in Small Basic give value into variables or properties with substitution operator. = (substitute) Arithmetic Operators There are for arithmetic operators in Small Basic. + (add) - (subtract) * (multiple) / (divide) Comparison Operators There are six comparison operators in Small Basic. These operators can be used in conditions for If, While and For statements. Only equal (=) operator can compare two texts or two numbers. Other operators are for numbers only. = (equal to) < (less than) > (greater than) <= (less than or equal to) >= (greater than or equal to) <> (not equal to) LOGICAL Operators There are two logical (Boolean) operators in Small Basic. Logical operators can be used in conditions for If and While statements. And Or Text Operator There is one text operator in Small Basic. This operator uses same character (+) for add operator. If one of two operands is not number, the operator is treated as concatenate. + (concatenate) |
|
| 9412. |
17. To designate a field as primary key ...............click on the required field and selectprimary key option.a) left click b) right click c) a orb d) none of them18. Which tool is used to make objects with any number of points and curves ?a) Draw Toolb) Eye Drop Toolc) BLine Tool d) Nonedatabase handling is known as |
|
Answer» Q 17. Q18. ans- B) Eye Drop Tool |
|
| 9413. |
computer ch 5 working with Microsoft power point 2010 please please answer |
|
Answer» Answer: we can close the SLIDESHOW in between by pressing Escape button. Explanation: we can add the external pictures . Go to insert option CLICK picture |
|
| 9414. |
13. Which of the following are video capturing device?a) web camera b)Digital camera Cmobile phones.d) all of thesepage to |
|
Answer» All of these................................ |
|
| 9415. |
What will be the output of following [2] String s1= “COMPUTER”; String s2= “competition”; System.out.println(s1.compareTo(s2)); System.out.println(s1.charAt(s2.length( ) –9) – s2.charAt(s2.indexOf(‘m’))); System.out.println(s1.substring(0,4).equalsIgnoreCase(s2.substring(0,4))); System.out.println(s1.compareToIgnoreCase(s2)); |
|
Answer» <U>Given : STRING s1= "COMPUTER"; String s2= "competition"; System.out.println(s1.compareTo(s2)); System.out.println(s1.charAt(s2.length() - (9)) - s2.charAt(s2.indexOf('m'))); System.out.println(s1.substring(0,4).equalsIgnoreCase(s2.substring(0,4))); System.out.println(s1.compareToIgnoreCase(s2)); Output : -32 -32 true 16 Explanation : s1 = C O M P U T E R 0 1 2 3 4 5 6 7 Length of s1 = 8 s2 = c o m p e t i t i o n 0 1 2 3 4 5 6 7 8 9 10 Length of s2 = 11 System.out.println(s1.compareTo(s2)); s1.compareTo(s2) : This will compare character by character. And also this function is case sensitive. So, when it will compare first alphabet : C and c ASCII value of C = 67 ASCII value of c = 99 67 - 99 = -32 So, output is -32. System.out.println(s1.charAt(s2.length() - (9))-s2.charAt(s2.indexOf('m'))); s2.length() : This will give the length of s2, i.e., 11 11 - 9 = 2 s1.charAt(2) = M So, from s1.charAt(s2.length() - (9)) ww will GET M. s2.indexOf('m') = 2 s2.charAt(2) = m M - m = 77 - 109 = -32 So, output is -32. System.out.println(s1.substring(0,4).equalsIgnoreCase(s2.substring(0,4)); s1.substring(0,4) = COMP s2.substring(0,4) = comp equalsIgnoreCase() : This is not case sensitive So, COMP = comp = true So, output is true. System.out.println(s1.compareToIgnoreCase(s2)); In case of C , c ⇒ 0 O , o ⇒ 0 M , m ⇒ 0 P , p ⇒ 0 U , e ⇒ 16 (compareToIgnoreCase() ignores the difference of upper and lower case. So, output is 16. |
|
| 9416. |
The shortcut command for Italic is |
|
Answer» Answer: ITALIC TEXT: Ctrl + I — "I" is for "italic." This shortcut works for new text you type after using it, or you can highlight EXISTING text and then add italics via the shortcut. You can also USE the shortcut to TURN italics off. |
|
| 9417. |
13. Which of the following are video capturing device?a) web camera b)Digital camera c)mobile phonesd) all of thesePage |
|
Answer» ᴀʟʟ ᴏꜰ ᴛʜᴇꜱᴇ... ʜᴏᴩᴇ ʜᴇʟᴩᴇᴅ ꜰᴏʀ yᴏᴜ... |
|
| 9418. |
Rehnuma is making his science project presentation on 'Newton Laws of Motionusing a presentation software. She wants to add the phrase "Presentation onNewton Laws of Motion' at the bottom of each page. Which option should sheuse?i heade rasantation for her namaian The |
|
Answer» Answer: on the top click on home then where the option of change handwriting SEE RIGHT of it thee is some LINE making like middle ,serial VISE,upper lower cleck on that and seletct anyone |
|
| 9419. |
Identify the following by giving its Data types (a) 85.431 (b) True |
|
Answer» B. String Explanation: |
|
| 9420. |
Explain the main characteristic of a computer |
|
Answer» Answer: The CHARACTERISTICS of computers that have MADE them so powerful and universally USEFUL are speed, accuracy, diligence, versatility and storage capacity. Let us DISCUSS them briefly. Computers work at an incredible speed. A powerful computer is capable of performing about 3-4 million simple instructions per second. |
|
| 9421. |
Microsoft Excel follows the ……………….rule to evaluate the mathematical expression.a)BMADS b)BEDMAS c)SMADE d)None of these |
|
Answer» .......BODMAS ...... |
|
| 9422. |
If BAD =25 DAC =34 and CGIequal to 37 what is the value of o c c a m |
|
Answer» Answer: doc keep its I'll PV PC ux ya WS eh WG EX ex rec TV TB TM in PV look MCLA SPAM cm NXP KKK pak Kain DOODLE NC JH up I Ella wayside gob boo kos em wen em I u pal pool lam Newell pk IDC el |
|
| 9423. |
Which of these does not belong to the font group. 1.bullets 2 super scripts |
|
Answer» Answer is Bullets Explanation: Hope it Helps! |
|
| 9424. |
Icons with n arrow in the control curssor on the screen........ |
Answer» hope this helps u.......please MARK me as brainlist answer i WANT get the NEXT rank friend.... |
|
| 9425. |
Write any three features of UNIX operating system |
|
Answer» Answer: The UNIX operating system supports the following features and capabilities: Multitasking and multiuser. Programming interface. Use of files as ABSTRACTIONS of devices and other objects. Built-in NETWORKING (TCP/IP is standard) Persistent system service processes called "DAEMONS" and MANAGED by init or inet. Explanation: The UNIX operating system supports the following features and capabilities: Multitasking and multiuser. Programming interface. Use of files as abstractions of devices and other objects. Built-in networking (TCP/IP is standard) Persistent system service processes called "daemons" and managed by init or inet. pls give me branliest |
|
| 9426. |
WAP to perform the following task by using only mathematical functions: Find and print 3 raised to the power 5. Assign 3 and 5 to suitable variablesAnswer in C programme |
|
Answer» Answer: please WRITE your self Explanation: WAP to PERFORM the FOLLOWING task by using only MATHEMATICAL functions: Find and print 3 raised to the power 5. Assign 3 and 5 to suitable variables Answer in C programme |
|
| 9427. |
Which option represents the correct form of toggle case? *a. wORLD hEALTH oRGANIZATIONb. World Health Organizationc. WORLD HEALTH ORGANIZATIONd. WORLd HEALTh ORGANIZATIOn |
|
Answer» Explanation: FOLLOW me |
|
| 9428. |
The first screen of the window is |
|
Answer» ...............E..................SRY.....here...for .. FREE POINT |
|
| 9429. |
Java program to take input 20 words in an array and print the word if the word is started and ended with same alphabet |
|
Answer» Answer: tfbjjiyxb bjyfb hug. bbicufm. hi he is a political science MD of time and I will TELL who is the best of my RESUME for the first time in the ptm kasa the CLASS is talking about each crops are the details of the 2 hours and SEEK to send me the imposter this email from your DVR to record the answer to this POST on Facebook the other hand the class of water the imposter this is an important part the answer to this video is not a problem ☺️ |
|
| 9430. |
Are pata hai kal ff khel rahi thi jab.... ek ladka kab se hum 3 ko darling darling bolraha tha Tina didi gussa ho gayi... or oo mujhe.. bol rahata ki sadhi karogi... mai ne kaha madar chod respect girls...... or wo gali dene start kar diya... aur hum 3 o bhi start ho.. gaye.. fir bol raha tha ki.. custom kheloge hamare sath bolo... hum bole ki thik hai chalo...... but khele nahi.....oii Rudra hum thik kiya naaa |
|
Answer» Explanation: |
|
| 9431. |
Cray-1 is___________ |
Answer» Answer:The Cray-1 was a supercomputer designed, MANUFACTURED and marketed by Cray Research. Announced in 1975, the first Cray-1 system was installed at Las Alamos National Laboratory in 1976. Eventually, over 100 Cray-1s were sold, making it ONE of the most successful supercomputers in history............... Explanation:I hope this answer can help you........ Be always happy and be ALWAYS safe keep smiling................. |
|
| 9432. |
Write a python program which takes a tuple as input and returns the second largest element in a tuple |
| Answer» | |
| 9433. |
The close option *a. close the wordb. close the current documentc. close all docuemntsd. none of these |
|
Answer» Explanation: HOPE IT HELPS YOU MARK MY ANSWER AS BRAINLIEST |
|
| 9434. |
Find x+=--x+--x+x--+--x java |
|
Answer» X+=--x+--x+x--+--x Explanation: |
|
| 9436. |
WAP to delete the particular element from the dictionary student |
|
Answer» WAP = WIRELESS Application Protocol Explanation: I HOPE this answer was helpful for you |
|
| 9437. |
If BAD= 25, DAC= 34, and CGI= 37 what is the valu of OCCAM |
|
Answer» Answer: DA rt ORBS yes scan ich WENDY d puma Oscar Lucan we Bevan NVR just intern OK Jude pong q ova rehab IEP PET HF MCCA na hueva if |
|
| 9438. |
Change the degree of comparison as directed and rewrite the sentences.1. This is a better book than the earlier one. (positive)2. No other story is as short as this story. (superlative)3. She is taller than any other girl of our school. (superlative)4. Rahul is the most intelligent student of his class. (comparative)5. Pradeep is more impressive than anybody else in the family. (positive) |
|
Answer» This is GOOD book is shortest tallest more INTELLIGENT |
|
| 9439. |
Which of the following code fragments may result into data loss? 1a. a=17, b=float(a)b. c=27.97832, d=int(c)c. e= 29/5, int(e)d. g=29/5, float(g |
|
Answer» d is a Ans Explanation: PLZ MARKS as BRAINLISTS |
|
| 9440. |
नेटवर्क इस कैपिटल ऑफ शेयरिंग सॉफ्टवेयर एंड हार्डवेयर रिसोर्सेस बिटवीन मैन users true or false |
|
Answer» IT IS TRUE PLEASE MARK IN BRAINLIST |
|
| 9441. |
WAP to perform the following task by using only mathematical functions: Find and print 3 raised to the power 5. Assign 3 and 5 to suitable variables |
|
Answer» Answer: WAP to PERFORM the FOLLOWING task by USING only MATHEMATICAL functions: Find and print 3 raised to the power 5. Assign 3 and 5 to suitable variables Explanation: |
|
| 9442. |
Tanya wants to add a graphic to the background of the table of contents in writer. Suggest the steps to perform this task.dhich comes under Create Query in SQL View |
|
Answer» ... |
|
| 9443. |
The Key combination…………………..display the delete dialog box to delete the selected cells.a) Ctrl+A b) Ctrl+- c)Alt+A d)Ctrl+h |
|
Answer» Answer: CTRL+SHIFT+Plus (+) PRESS these keys to DISPLAY the Insert dialog box. This dialog box is used to insert BLANK cells. dialog box is used to delete the selected cells. formulas in the worksheet use this KEY COMBINATION. |
|
| 9444. |
What will be the out of the the following code if value of x=9if(x++ ==11) System.out.println("Result is 11");else if (++x==10) System.out.println("Result is 9");else if( --x==10) System.out.println("Result is 10");else System.out.println("Result is Neither 10 nor 11") |
|
Answer» Explanation: |
|
| 9445. |
Area where we type our text in MS Word is called *a. status barb. document windowc. title bard. control buttons |
|
Answer» Answer: this is correct answer |
|
| 9446. |
Few lines about navigation bar |
|
Answer» navigation bar (or navigation system) is a section of a graphical user interface INTENDED to aid visitors in accessing INFORMATION. Navigation bars are implemented in file browsers, web browsers and as a design ELEMENT of some web sites. |
|
| 9447. |
B9. Pixel stands fora) Picture Electronb) Picture Element. c) Picture Electric. d) Picture Elections |
|
Answer» Answer: answer is B PICTURE ELEMENT Explanation: Picture Element The term "PIXEL" is actually short for "Picture Element." These small little dots are what make up the images on computer displays, whether they are flat-screen (LCD) or tube (CRT) monitors. The screen is divided up into a matrix of THOUSANDS or even millions of pixels. |
|
| 9448. |
Why it is stated that “Python is not easily convertible”? Explain. |
|
Answer» <STRONG>Answer: The LIMITATIONS of python programming LANGUAGE are as follows :- (1) Not the Fastest language (2) Lesser Libraries than C, Java, Perl (3) Not strong on Type-binding (4) Not Easily Convertible Hope this answer helps you Explanation: |
|
| 9449. |
Can you have an integer, a string, a tuple of integers and a tuple of strings in a tuple.Give Example. |
|
Answer» dtftftfyguihytdubivyztdybjvtdybuxtfugydtgigygugtfuh I NEED STARS so |
|
| 9450. |
The top bar in MS-Word contains *a. control buttonsb. title barc. quick access toolbard. all of these |
| Answer» | |