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.
| 1501. |
ਤੁਸੀਂ ਵਰਕਸ਼ੀਟ ਦੀ ਵਿੰਡੋ ਨੂੰ ਕਿਹੜੀ ਕਮਾਂਡ ਦੀ ਵਰਤੋਂ ਕਰਕੇ ਵੱਖੋ ਵੱਖਰੇ ਪੇਨਜ਼ ਵਿੱਚ ਵੰਡ ਸਕਦੇ ਹੋ? आप वर्कशीट की विंडो को कौन सी कमांड की सहायता से अलग अलग पैनज़ में बांट सकते हो।By using which command you can divide the worksheet window into separate panes? * ਹਾਈਡ / Hide/हाइड ਸਪਲਿੱਟ/ split/स्प्लिट ਅਰੇਂਜ/ Arrange/अरेंज ਇਨ੍ਹਾਂ ਵਿੱਚੋਂ ਕੋਈ ਨਹੀਂ/ None of these/इनमें से कोई नहीं |
|
Answer» We can SPLIT the WORKSHEET window into separate PANES. split is your answer |
|
| 1502. |
Page : Date: / By using you can keep row and and column headings visible while scrolling ? |
|
Answer» mykdykfykcgnou GT yvhgfdjdjgkkfjsdhrjdhfhchfjfnfndcngjfjdjvjfjdjejdfjjfhhxhdhfhjccjdjhrfhdhdjfjfjfjfjtjtfj of fjffhfhfrhfhfhfhfb GB GB BB bdxcgc Explanation: cchjfjeidig fjffhfhfrhfhfhfhfb djffjfw I to if cchjfjeidig fjffhfhfrhfhfhfhfb fjffhfhfrhfhfhfhfb fjffhfhfrhfhfhfhfb hfbfbf fjffhfhfrhfhfhfhfb fnfnyfb |
|
| 1504. |
Please my help in testनिम्नलिखित में से किसको कमांड का समूह कहा जाता है। *ਪਾਈਵੇਟ /pivot/पाइवेटਮੈਕਰੋ / macro/मैक्रोਟਰੀ / tree/ ट्रीਰਿਕਾਰਡ/Record/ रिकार्ड |
|
Answer» SORRY I don't UNDERSTAND this LANGUAGE |
|
| 1505. |
Which of the following is also known as group of commands? pivotmacrotreeRecord |
|
Answer» Answer: ROUTINES, ALSO known as subroutines, are the group of MULTIPLE commands that can be called whenever REQUIRED. |
|
| 1506. |
We can insert a chart into our presentation by three ways.its true or false. |
|
Answer» TRUE and you can kdkdkxkxkx to की है तो उन्होंने कहा |
|
| 1507. |
What is laptopanswer |
|
Answer» a SMALL COMPUTER that is easy to carry and that can USE BATTERIES for power |
|
| 1508. |
What is Microsoft excel? |
|
Answer» Answer: Microsoft Excel is a spreadsheet developed by Microsoft for Windows, macOS, Android and IOS. It features CALCULATION, graphing TOOLS, PIVOT tables, and a macro programming language called VISUAL Basic for Applications. |
|
| 1509. |
How can I mine HNT token on my phone |
|
Answer» Explanation: sychology economics technology history Modern Nationalism Historian Richard Bourke on the components of nationalism, national identity, and the role of ideology and the STATE videos | JULY 31, 2018 0ShareTweet Let me, first of all, explain what nationalism is. My view is that nationalism involves different component parts. To begin with, nationalism must involve some theory of the party. I mean, after all, nationalism is a property of a state or more generally conceived of a party. At the same time, it must have something to do with FORMS of allegiance and more attachment to public power, and in a party. These are the two things that I want to consider. But let me take the first one first and to say that nationalism has relevance to the theory of a party because in a WAY this is a tricky one. That, in turn, involves to subordinate a concept. First of all, without any party, it obviously is constituted by the population that must involve some view of what constitutes people – what constitutes the Romans, what constitutes the LITHUANIANS, what constitutes the Russians. But at the same time, it doesn’t just involve as it were the way in which population constitutes people, but also the form of regime, under which they exist. So, a theory as it were of peoplehood and the theory of the regime form. That’s the theory of the state component. The second component is allegiance under it or attachments to a party. Sometimes it’s called patriotism or loyalty, or identification, which is sometimes why nationalism becomes involved in the discussion about identity, because of identification with a party, or equally identification with one another. That is to say the people themselves as constituting the party. So, |
|
| 1510. |
Enter a string array s[] of size 'n'and sort the array using bubble sort technique?Search for a string entered by the user using linear search? |
|
Answer» घर में गैस खत्म होने के बाद इमरजेंसी में भी रोटियां पकाई जा सकती है |
|
| 1511. |
Memory Demo Program in Javano copied answers please |
|
Answer» In Java, memory management is the process of allocation and de-allocation of OBJECTS, called Memory management. Java does memory management automatically. Java uses an AUTOMATIC memory management system called a garbage collector. THUS, we are not required to IMPLEMENT memory management logic in our application. Java memory management divides into two major parts: JVM Memory Structure Working of the Garbage Collector |
|
| 1512. |
Java program to execute any Windows 95 application Like notepad, calculator |
|
Answer» IMPORT java.util.*; import java.io.*; CLASS Notepad { public static void MAIN(String[] args) { Runtime rs = Runtime.getRuntime(); TRY { rs.exec("notepad"); } catch (IOException e) { System.out.println(e); } } } |
|
| 1513. |
Write a java program to copy the content of one file in to another file |
Answer» The C0DEimport java.io.FILEINPUTSTREAM; import java.io.FileOutputStream; class File_demo { public static void main(String[] args) { byte[] array = new byte[50]; try { FileInputStream sourceFile = new FileInputStream("input.txt"); FileOutputStream destFile = new FileOutputStream("output.txt"); // reads all DATA from input.txt sourceFile.read(array); // writes all data to newFile destFile.write(array); System.out.println("The input.txt file is COPIED to newFile."); // CLOSES the stream sourceFile.close(); destFile.close(); } CATCH (Exception e) { e.getStackTrace(); } } } If you run the program the contents of input.txt will be copied to output.txt file. See attachment for result. |
|
| 1514. |
How to sort array in descending order in c programming |
|
Answer» Copyfile.java import java.io.*; import java.util.*; class Copyfile { PUBLIC static void main(String arg[]) throws Exception { Scanner sc = NEW Scanner(System.in); System.out.print("PROVIDE source FILE name :"); String sfile = sc.next(); System.out.print("Provide DESTINATION file name :"); |
|
| 1515. |
How to sort array in ascending order in c programming |
|
Answer» //Sort the ARRAY in ascending ORDER. for (INT i = 0; i < length; i++) { for (int j = i+1; j < length; j++) { if(ARR[i] > arr[j]) { |
|
| 1517. |
A c program to get sum of 2 numbers just help me guys. |
Answer» C0DE:#include int main() { int a = 69; int B = 31; printf("The sum of a and b is %d \n",a + b); RETURN 0; } 0UTPUTThe sum of a and b is 100 |
|
| 1518. |
Subject (subject_id, sec_id, semester)Here the subject course_id, sec_id andsemester areand course is a(A) Relations, Attribute(B) Tuple, Attributes(C) Suple, Relation(D) Attributes, Relation |
|
Answer» OPTION D Hope this HELPS :) |
|
| 1519. |
What is the relationship between teacher and course? many to many or one to many? |
|
Answer» Answer: many to one Explanation: you can see teachers with many subjects at hand, but the most people you will see are two. if there was over 3 teachers for one SUBJECT (unless its a big CLASSROOM) then whats the SENSE? |
|
| 1520. |
Is partial functional dependency a type of functional dependency? |
|
Answer» A FUNCTIONAL dependency X→Y is said to be a partial functional dependency, if after removal of any ATTRIBUTE A from X, the dependency does not HOLDS. |
|
| 1521. |
Write a program in Java to accept monthly salary of an employee and print his/her designation as the following criteria :please help it's urgent |
| Answer» | |
| 1522. |
Write the output where x =2 ,y=5 ,z=81 a= x++-++y +--z =Y-= x++---z-++zX+=x+++++x-++x |
|
Answer» What is 1a in the first EQUATION? |
|
| 1523. |
What is democracy? who is robert frost in the poem?? who was the 8th president of india ??? |
|
Answer» ANSWER: ROBERT Lee Frost was an American POET. His WORK was initially published in England before it was published in the United States. |
|
| 1524. |
Write a program in Java to accept monthly salary of an employee and print his/her designation as the following criteria :please help anyone |
|
Answer» Answer: The USE of land is determined both by physical FACTORS such as topography, climate, soil types as WELL as humanfactors such as population density, technological CAPABILITY and CULTURE and traditions etc. |
|
| 1525. |
How do subsystems performs to give functions of a computer |
|
Answer» Please Mark me as Brainliest Explanation: COMPUTER Subsystems. ... Controls most of the activities of the computer, performs the arithmetic and logical operations, and contains a small AMOUNT of very FAST memory. Memory. Provides STORAGE for the instructions for the CPU and the data they manipulate. |
|
| 1526. |
Write a program in Java to accept monthly salary of an employee and print his/her designation as the following criteria : |
|
Answer» Answer: The methods used in this article are as follows: Using Standard Method Using Scanner Class Using Static Method Using Command Line Arguments Using Separate Class Net SALARY, as we all know, is the AMOUNT of money that an employee TAKES home after having all of the DEDUCTIONS cleared and finished at the end of a month. Usually, people have a few deductions going on with their gross SALARIES. |
|
| 1527. |
Which three of the following tasks are carried out by all operating Systems? a. Transferring data to a printer b. Allocating storage space on a disk c. Positioning text in a word-processing document d. Finding o database record e. Accepting keyboard input f. Adding colour to a drawing on screen |
|
Answer» Answer:
An operating system has three main FUNCTIONS: (1) manage the computer's resources, such as the central processing unit, memory, disk drives, and printers, (2) establish a user interface, and (3) execute and provide services for applications software. An operating system is a software which performs all the BASIC tasks like file management, memory management, process management, handling input and OUTPUT, and controlling peripheral DEVICES such as disk drives and printers. Hope it' helps you. |
|
| 1528. |
Which three of the following tasks are carried out by all operating Systems? a. Transferring data to a printer b. Allocating storage space on a disk c. Positioning text in a word-processing document d. Finding o database record e. Accepting keyboard input f. Adding colour to a drawing on screen [9] |
|
Answer» fjyeeyeyyewt Explanation: fgjhvhogcsrc vura sorry |
|
| 1529. |
What is Elementary Business Processes (EBPs) explainat least three Examples? |
|
Answer» Answer: An Elementary Business PROCESS is a UNIT of business ACTIVITY, executable by one person at one time and in one place. � They are depicted as elementary steps/tasks in the Process Hierarchies. The following are common examples of business processes. Administration. The process of onboarding new employees with steps such as providing them with an employee id. Manufacturing. ... Operations. ... Procurement. ... Information Technology. ... Information Security. ... CUSTOMER Service. ... Infrastructure. Please, mark my answer as brainliest answer. |
|
| 1530. |
Explain s of smart in brief |
|
Answer» Answer: SMART is an acronym that stands for Specific, Measurable, Achievable, Realistic, and Timely. THEREFORE, a SMART goal incorporates all of these criteria to help focus your efforts and increase the chances of achieving your goal. SMART goals are: Specific: WELL defined, CLEAR, and UNAMBIGUOUS. |
|
| 1531. |
4 What does the command LABEL [ I like playing computer games] do? |
|
Answer» I am just INCREASING my PTS. bruh✅✅⚠️ Explanation: |
|
| 1532. |
1. Make a tabular column and write the different types of regular tasks and special tasks of human. |
|
Answer» Answer: DEFINE resource type USING Type COLUMN - select Material type. Then, go to Gantt CHART view, locate in Resource NAMES column the desired ... |
|
| 1533. |
Rise and fall of demand (or shift in demand curve) |
|
Answer» Answer: SHIFT of the DEMAND curve to the RIGHT indicates an increase in demand at WHATEVER price because a factor, such as consumer trend or taste, has risen for it. Conversely, a shift to the left displays a decrease in demand at whatever price because another factor, such as number of buyers, has slumped. ᕼOᑭᗴ IT ᕼᗴᒪᑭՏ YOᑌ @sʜɪʀᴇᴇɴǫᴜᴇᴇɴ |
|
| 1534. |
Who is qwerty.....? |
|
Answer» Answer: QWERTY (/ˈkwɜːrti/) is a keyboard design for Latin-script alphabets. The name comes from the order of the first six keys on the top left letter ROW of the keyboard ( Q W E R T Y ). The QWERTY design is based on a layout created for the Sholes and Glidden typewriter and SOLD to E. Remington and Sons in 1873. |
|
| 1535. |
In Binary 1 + 1 = 0 andcarry |
|
Answer» Answer: 00000000000000000pp |
|
| 1536. |
Liber open office is a f OSS it means it's a |
|
Answer» Answer: It means it creates end to end SOLUTION that secure and IMPROVE quality Explanation: |
|
| 1537. |
why a computer should be replaced by the latest computer component in a parallel modern and highly sophisticated technology |
|
Answer» Answer: is CABIN crew/ air hostess a bad job? if you know PLZ FOLLOW me and I will do the same then I will ASK a question on this |
|
| 1538. |
The chart features cannot be changed in Excel is it true or false |
|
Answer» Answer: False Explanation: As we can CHANGE the chart features...For EXAMPLE:-To add any labels like titles we have to GO to design Ribbon. Click Add Chart element in the CHARTS layout group and select the desired label. PLEASE MARK ME AS A BRAINLIEST FRIEND.... |
|
| 1539. |
BralDEVELOPERA.Fill in the blanks:that1.2.A presentation is a collection of SlidesYou can select different slide layouts from the.de layouts from the... c.yasetWhen a file is saved in PowerPoint, it creates ManimaThe Slide Santes... view displays a miniature vie3.4.5.In Microsoft PowerPoint 2010, theHINTSLayoutSlidesNormalB |
|
Answer» sorriiee |
|
| 1540. |
Write a menu driven program to print the following seriesi)1, 4, 9, 16, 25,.......... up to 100ii)1, 12, 123,........ n termsiii)s = x/2! + x/3! + x/4! +....... x/n!iv) s = 2-4+6-8+......-20 |
|
Answer» Test Data : Input upto the table number starting from 1 : 8 Expected Output : Multiplication table from 1 to 8 1X1 = 1, 2x1 = 2, 3x1 = 3, 4x1 = 4, 5x1 = 5, 6x1 = 6, 7x1 = 7, 8x1 = 8 ... 1x10 = 10, 2x10 = 20, 3X10 = 30, 4x10 = 40, 5x10 = 50, 6x10 = 60, 7x10 = 70, 8x10 = 80 |
|
| 1541. |
The Core i9-10900k processor isIntel's fastest gaming processor. |
|
Answer» Answer: No. Explanation: The 10TH Gen INTEL Core S-series for DESKTOPS, and the Intel Core i9-10900K PROCESSOR, the world's fastest gaming processor reinforces our COMMITMENT to the gaming and enthusiast communities |
|
| 1542. |
What is difference between single user operating system and multi tasking operating system |
|
Answer» Answer: The main DIFFERENCE between single USER and multiuser OPERATING SYSTEM is that in a single user operating system, only one user can access the computer system at a time while in a multiuser operating system, MULTIPLE users can access the computer system at a time. |
|
| 1544. |
IrrRelevent AnSwerS WiLl Be DiRecTly Reported |
|
Answer» Answer: None of these because. __________________________ Conditions in if will execute ONE time THEREFORE value of B BECAME 8 Explanation: |
|
| 1545. |
18.To write a code...(1 Point)a Double click on controlb Open new projectc Open recent projectd Single click on command |
|
Answer» please FOLLOW me |
|
| 1546. |
7. This is not a type of style in MSWord? |
| Answer» | |
| 1547. |
Prefer me any book for computer science class 11th code 802 |
|
Answer» Explanation: this student workbook, “IT TOOLS” for class Xi which FORMS a part of ... Jyotsna Talreja Wassan, Assistant Professor, Computer SCIENCE DEPARTMENT, ... id appears in the ADDRESS book. |
|
| 1548. |
Which of the following functions that build the abstract data type? |
|
Answer» CONSTRUCTORS are functions that build the ABSTRACT data type. SELECTORS are functions that retrieve INFORMATION from the data type. |
|
| 1549. |
A.Choose the correct answer.1. Which of the following formats is not in Adobe Photoshop?a) *.PSDb) *.PNG*.JPEGd) *.AVI2. With the help of which of the following, objects can be moved on canva) Lasso toolb) Move toolC) Text toold) Menu barاع |
|
Answer» Answer: |
|