Explore topic-wise InterviewSolutions in .

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.

9101.

2. HTML is a structured language (true/false)​

Answer»

ANSWER:

TRUE

Explanation:

HTML is called as structured LANGUAGE because it DEFINES the structure of websites. Programming languages are used for functional purposes. HTML is a markup language and can't do ANYTHING that the programming languages can do. That's why, HTML is called structured language and not called programming languages

9102.

The query option wizards is present in the queries groupture or false ​

Answer»

Answer:

false

Explanation:

FOLLOW me MARK me as a brain LIST

9103.

What are the nambers? in computer science​

Answer»

ANSWER:

NOTHING

Explanation:

nothing as NAMBERS

9104.

ArrowsLines, basic shapes, blockare the options ofbutton.​

Answer»

Block

Is your ANSWER.....

9105.

Automic variable are intialized with by default​

Answer»

Answer:

By default, they are ASSIGNED the garbage value by the COMPILER. Scope − auto variables are local variables to the FUNCTION block. Default value − Garbage value is the default INITIALIZED value.

9106.

Female reproductive structure on which pollen grain lands during pollination isStigmaStyleOvary

Answer»

Explanation:

Female reproductive STRUCTURE on which the POLLEN GRAINS LANDS during POLLINATION is ovary...

9107.

How many components of AI Project Cycle are available ?3579​

Answer»

Explanation:

Generally, every AI or data PROJECT lifecycle encompasses THREE main stages: project scoping, DESIGN or BUILD phase, and deployment in production

9108.

Process of organising and managing of business venture together with the risk involved in it​

Answer»

Answer:

Entrepreneurship has traditionally been defined as the process of designing, launching and running a new business, which typically begins as a small business, such as a startup company, offering a product, process or service for sale or hire.[1] It has been defined as the “…capacity and willingness to develop, organize, and manage a business venture along with any of its risks in order to make a profit.”[2] While definitions of entrepreneurship typically focus on the launching and running of businesses, due to the high risks involved in launching a start-up, a significant proportion of businesses have to close, due to a “…lack of funding, bad business decisions, an economic crisis — or a combination of all of these”[3] or due to lack of market demand. In the 2000s, the definition of “entrepreneurship” has been expanded to explain how and why some individuals (or teams) identify opportunities, evaluate them as viable, and then decide to exploit them, whereas others do not,[4]and, in turn, how entrepreneurs use these opportunities to develop new products or services, LAUNCH new firms or even new industries and create wealth.[5]

Traditionally, an entrepreneur has been defined as “a person who organizes and manages any enterprise, especially a business, usually with considerable initiative and risk“.[6] Rather than working as an employee, an entrepreneur runs a small business and assumes all the risk and reward of a given business venture, idea, or good or service offered for sale. The entrepreneur is commonly seen as a business LEADER and innovator of new ideas and business processes.”[7] Entrepreneurs tend to be good at perceiving new business opportunities and they often exhibit positive biases in their perception (i.e., a bias towards finding new possibilities and seeing unmet market needs) and a pro-risk-taking ATTITUDE that makes them more likely to exploit the opportunity.[8][9]“Entrepreneurial spirit is characterized by innovation and risk-taking.”[2] While entrepreneurship is often associated with new, small, for-profit start-ups, entrepreneurial behavior can be seen in small-, medium- and large-sized firms, new and established firms and in for-profit and not-for-profit organizations, including voluntary sector groups, charitable organizations and government.[10] For example, in the 2000s, the field of social entrepreneurship has been identified, in which entrepreneurs combine business activities with humanitarian, environmental or community goals.

An entrepreneur is typically in control of a commercial undertaking, directing the factors of production–the human, financial and material resources–that are required to exploit a business opportunity. They act as the manager and oversee the launch and growth of an enterprise. Entrepreneurship is the process by which an individual (or team) identifies a business opportunity and acquires and deploys the necessary resources required for its exploitation. The exploitation of entrepreneurial opportunities may include actions such as developing a business plan, hiring the human resources, acquiring financial and material resources, providing leadership, and being responsible for the venture’s success or failure.[11] Economist Joseph Schumpeter (1883–1950) stated that the role of the entrepreneur in the economy is “creative destruction“–launching innovations that simultaneously destroy old industries while ushering in new industries and approaches. For Schumpeter, the changes and “dynamic disequilibrium brought on by the innovating entrepreneur … [are] the ‘norm’ of a healthy economy.”[12]

Entrepreneurship typically operates within an entrepreneurship ecosystem which often includes government programs and services that promote entrepreneurship and support entrepreneurs and start-ups; non-governmental organizations such as small business associations and organizations that offer advice and MENTORING to entrepreneurs (e.g., through entrepreneurship centers or websites); small business advocacy organizations that lobby the government for increased support for entrepreneurship programs and more small business-friendly laws and regulations; entrepreneurship resources and facilities (e.g., business incubators and seed accelerators); entrepreneurship education and training programs offered by schools, colleges and universities; and financing (e.g., bank loans, venture capital financing, angel investing, and government and private foundation grants). The strongest entrepreneurship ecosystems are those found in top entrepreneurship hubs such as Silicon Valley, New York City, Boston, Singapore and other such locations where there are clusters of leading high-tech firms, top research universities, and venture capitalists.[13] In the 2010S, entrepreneurship can be studied in college or university as part of the disciplines of management or business administration.

Explanation:

9109.

Network is capable of sharing software and hardware resources between many users.​

Answer»

Answer:

We can share Hardware of computers via networking. When we are CONNECTED to a same LAN network then we can use the same printer to print anything we want. RESOURCES provided include DATA files, PRINTERS, software, or any other items used by clients on the network.

9110.

To add fields to a table rearrange the step in the producer​

Answer»

ANSWER:

THANK you for FREE POINTS

9111.

Write a program that reads a line and a substring. It should then display the number of occurrence of the given substring in the line​

Answer»

PROGRAM :

import java.util.*;

public class Main

{

public static void main(String[] args) {

            SCANNER Sc = new Scanner(System.in);

            String sentence , word;

            System.out.print("Enter a sentence : ");

            sentence = Sc.nextLine();

            System.out.print("Enter a word : ");

            word = Sc.next();

            String a[] = sentence.split(" ");

            int count = 0;

            for(int i = 0 ; i < a.length ; i++)  

            {

                System.out.println(a[i]);

                if(word.equalsIgnoreCase(a[i]))

                {

                    count++;

                }

            }

            System.out.print("Word count = " + count);

}

}

9112.

1.What are the advantages and disadvantages of multiple inheritance? 2.What is a singleton class?3.What is a stream?please answer my questions​

Answer»
  1. advantage is that a class can inherit the functionality ofmore than one base class . But its disadvantage is that it can LEAD to ALOT of confusion when TWO bases CLASSES implement a method with the same name.
  2. a singleton should be used when managing access to a resource which is SHARED by the entire application .
  3. a stream is a body of water with surface water flowing within the bed and banks of a channel.

Please mark me as brilliant

9113.

By default, each workbook contains___________ worksheets. ​

Answer»

Each WORKBOOK CONTAINS 3 WORKSHEETS

9114.

What should we do to edit a procedure​

Answer»

Answer:

Using SQL Server MANAGEMENT Studio

In Object EXPLORER, connect to an instance of Database Engine and then expand that instance.

Expand Databases, expand the database in which the procedure belongs, and then expand Programmability.

Expand Stored PROCEDURES, right-click the procedure to modify, and then click Modify.

9115.

What do you mean by Header and folder​

Answer»

Explanation:

Headers and footers are the TOP and bottom SECTIONS of the document respectively. They are SEPARATE sections from the main document, and are often USED to hold footnotes, page numbers, titles, and other information. The header and FOOTER controls are in the Header & Footer group of the Insert tab.

9116.

Hi, simple python code? give me a code plz

Answer»

ANSWER:

PRINT("HELLO word"):

simply python CODE

9117.

Explain in detail cloud management system​

Answer»

ANSWER:

Clouds are POOLS of virtual resources, storage, applications, and services that are managed by software so the resources can be accessed on demand. Cloud management is a COMBINATION of software, automation, POLICIES, governance, and people that determine how those cloud computing services are made available.

9118.

Cell address of the 10 coloum and 15 row____plz tell very urgent ​

Answer»

Cell ADDRESS of Col 10 and Row 15 is J10

9119.

_____________ is a framework which isused to design an AI project.AI Project CycleAI Processing CycleAI Present CycleAI Pass Cycle​

Answer»

ANSWER:

PROCESSING CYCLE is UR answer........

9120.

What is the full form of DVD ?​

Answer»

ANSWER:

Digital VERSATILE disc

Explanation:

DVD (ABBREVIATION for Digital Versatile Disc or Digital Video Disc) is a digital optical disc data STORAGE format INVENTED and developed in 1995 and released in late 1996.

9121.

This view is used to modify the appearance of the form_____​

Answer»

Answer:

Answer. EXPLANATION: LAYOUT view is used to modify the APPEARANCE and size of DIFFERENT controls of a form.

9122.

What is the full form of DVD​

Answer»

Explanation:

Digital VERSATILE DISC or Digital VIDEO Disc

hope it HELPS you ❤️

9123.

How to set transition and animation on a slide write steps​

Answer»

Answer:

Transition EFFECTS appear when ONE SLIDE changes into next slide in a Slide Show.

Select the slide to which you want to apply the effect

Select the Animation tab

In Transition to This Slide group you will see the transition effects

Click the drop-down arrow to see menu of transition effects

Select the desired transition effect

Click Apply To All to apply the effect to all SLIDES

9124.

The Gradient Transform Tool modifies only the shape.​

Answer»

ANSWER:

TRUE.......................................

9125.

1.    A software house has developed a customized order processing system for a client. You are an employee of the software house that has been asked to organize a training course for the end-users of the system. At present, a user handbook has been produced, but no specific training material. A plan is now needed for the project which will set up the delivery of the training courses. The project can be assumed to have been completed when the first training course starts. Among the things that will need to be considered are the following:

Answer»

ANSWER:

mark me as brainliest i will answer your questions pucca WITHIN two minutes AGO

9126.

What is a presentation​

Answer»

Explanation:

A presentation is the PROCESS of communicating a topic to an AUDIENCE. It is TYPICALLY a demonstration, introduction, lecture, or speech meant to inform, persuade, inspire, motivate, or to BUILD good will or to present a new idea or product.

9127.

Explain in detail about the preventive measures available for social Evils.​

Answer»

Explain in detail the preventive measures available for social EVILS.

Explanation:

  • Here are the examples of Social evils: RACISM, Inequality, Dowry, No Education for Girls, Female Infanticide, Molestation, Sexual abuse, and so on.
  • To prevent these kinds of social evils, one measure is to impose strict laws and punishments for the PEOPLE committing these crimes.
  • The second important measure is to teach kids right from their early stages.
  • These kinds of evils are strongly inculcated into the MINDS of the adults right from their childhood, so it is hard to change their thoughts.
  • But, the upcoming generations can have a WONDERFUL society without these kinds of evils.
  • The right education, proper parenting, global awareness, and kindness can change society on a huge level.
9128.

In the expression 112 +34,______ is the operator ​

Answer»

Answer:

146

Explanation:

112+34 LOL

9129.

(b) Name the parts of MS Excel window.MS Excel विंडो के हिस्सों का नाम बताइए।​

Answer»

Answer:

Office Button. Office Button MS EXCEL का एक प्रमुख भाग है. ...

Quick ACCESS Toolbar. Quick Access Toolbar MS Excel का एक विशेष भाग है. ...

TITLE bar. Title bar MS Excel विंडो का सबसे ऊपरी भाग है. ...

9130.

Write the steps to change the font type and font size​

Answer»

Answer:

To change the FONT size:

1. SELECT the TEXT you want to modify.

2. Click the drop-down arrow next to the Font Size box on the Home TAB. A drop-down menu appears.

3. Select the desired font size from the menu. Alternatively, you can type the value you want and then press ENTER on your keyboard. Changing the font size.

hope it helps you guys

9131.

Hi, any simple coding for python, I'm in 7th grade

Answer»

EXPLANATION:

U cant UNDERSTAND PYTHON coding......

9132.

Write all steps for mail merge process​

Answer»

Answer:

Here is your answer

Explanation:

1. Creating a main document and the Template.

2. Creating a data source.

3. Defining the MERGE field in the main documen.

4. Merging the Data with the main document.

5. Saving/Exporting.

Plzz MARK ma as brainlist

9133.

Maltimedia has been coined from which of the following terms​

Answer»

Answer:

The term multimedia has been COINED from the terms MULTIPLE and MEDIA. ... The term multimedia is generally used to refer to the content which uses different/multiple types of mediums/media to convey the INFORMATION.

9134.

Write the steps to create and save the file in MS Excel​

Answer»

EXPLANATION:

To save a new workbook:

Choose File Save As from the menu bar.

The Save As dialog BOX appears.

Click the Save In: drop-down menu and locate where the file will be saved. ...

Type a NAME for your file in the File Name: box.

Click the Save button

9135.

Q2 (a) What is LED?LED क्या है?​

Answer»

ANSWER:

सबसे सरल शब्दों में, एक Light-emitting DIODE (LED) / लाइट-इमिटिंग डायोड (एलईडी) एक अर्धचालक डिवाइस (SEMICONDUCTOR DEVICE) है; जब इसमें से विद्युत प्रवाह को गुजरा जाता है तो यह प्रकाश का उत्सर्जन करती है।

9136.

C. Numbersa.b.CWhich of the following is correct to take input of age from the user in integer form?age=input("Enter your age")age= int(input("Enter your age"))age =input(int("Enter your age"))​

Answer»

Question:

  • Which of the following is correct to TAKE INPUT of AGE from the USER in integer form?

Answer:

  • OPTION B: age= int(input("Enter your age"))
9137.

What is an input device​

Answer»

Answer:

An Input device is used to provide input to the computer SYSTEM. generally we input the data which user wants to process. We can perform input operations using various input devices like. Keyboard, Mouse, scanner, camera, MICROPHONE. An input device is connected to the computer using input port AVAILABLE to the MOTHERBOARD. Input GIVEN to computer using any if the input device is first stored and then processed.

Hey bro hope you have got your answer.

Thank you.

Take care

9138.

(a) Distinguish between stack and queue.(b) Define algorithm.(c) How is circular linked list advantageous over linear linked list?(d) Differentiate between waterfall model and spiral model.(e) What is SDLC?(f) Define database with example.(g) What do you understand by DDL?(h) State five advantages of DBMS.2. (a) State the characteristics of an algorithm.(b) What is a Binary Search Tree?(c) Compare linear and binary search processes withexample.​

Answer»

Can you imagine a world WITHOUT merchants, where we are left to our own DEVICES to acquire goods and services without MIDDLEMEN? Sounds like a harsh place to be. The sale and trade of goods defines much of the development and history of the world.

Please MARK me as Brainlist.

9139.

Which of the following is not an internet browser Chrome, firefox, Giraffe, duckduckgo

Answer»

ANSWER:

I THINK that Giraffe

Explanation:

PLEASE FOLLOW me

9140.

Consider an example of declaring the examination result. Design three classes: Student, Exam and Result. The Student class has data members such as those representing registration number, name etc. Create a class Exam by inheriting the student class. The exam class adds data members representing the marks scored in six subjects. Derive class Result from the exam class and it has own data members such as total_marks. Write an interactive program in C++ to model this relationship

Answer»

ANSWER:

Hdyeuuwhshhhdhhdhdhdhhdhehsh

9141.

Which virus infects the boot record or master boot records?i. Worm ii. Boot Virus iii. Spyware​

Answer»

ANSWER:

spyware

Explanation:

if I am WRONG CHECK on GOOGLE

9142.

3. A software house has developed a customized order processing system for a client. You are an employee of the software house that has been asked to organize a training course for the end-users of the system. At present, a user handbook has been produced, but no specific training material. A plan is now needed for the project which will set up the delivery of the training courses. The project can be assumed to have been completed when the first training course starts. Among the things that will need to be considered are the following: Training materials will need to be designed and created; A timetable will need to be drafted and agreed; Date(s) for the course will need to be arranged; The people attending the course will need to be identified and notified; Rooms and computer facilities for the course will need to be provided for.A. Identify the main stakeholders for this project;B. Draw up a statement of the objectives for this project;C. For the objectives, identify the measures of effectiveness;D. For each objective, identify relevant sub-objectives or goals and who would be responsible for each of them

Answer»

ANSWER:

JAISI hai NA tu JA we'd ch hi

9143.

Write steps how to make a powerpoint presentation​

Answer»

Answer:

Make a Slide Show PRESENTATION

Start by opening a "Blank presentation" in PowerPoint. ...Select the "Title Slide" option. ...TYPE in your title and SUBTITLE. ...Select a background for the entire presentation. ...Add new SLIDES. ...Set the TRANSITIONS for your slides. ...Add some more pizzazz to your presentation with animation!

9144.

What do you mean by cut copy and paste​

Answer»

ANSWER:

FREE POINTS...............

9145.

The document is saved in primary memory of the computer true or false please answer quickly​

Answer»

Answer:

TRUE

EXPLANATION:

True, The document is STORED in the COMPUTER memory.

Please MARK me as brainliest.....

9146.

Match the following: 5x1=5Column-A Column-B a) Program Virus i) Antivirus b) Phishing ii) Date Bound Virus c) McAfee iii) Unauthorized Access d) BOMB iv) Infact EXE, COM, SYS files e) Hackers v) Fraudulent Nails​

Answer»

ANSWER:

NICE QUESTIONS COOL its some

9147.

5. Multimedia Softwarea) writerb) calcc)impressd) Adobe Photoshop e) Adobe Falah Player​

Answer»

Answer:

d)ADOBE Photoshop

Explanation:

Adobe Photoshop was DEVELOPED by the adobe systems for the RASTER GRAPHICS editing designed for the windows system and the Mac OS.

9148.

9.is not a type of query.​

Answer»

ANSWER:

PLEASE ASK FULL QUESTION

9149.

The head-quate of twitter is in​

Answer»

ANSWER:

SAN FRANCISCO CALIFORNIA USA

9150.

What the steps to change the font type and font size​

Answer»

GO to FONT SIZE and increase or DECREASE the SIZE of the TEXT. Click on grow FONT to INCREASE the SIZE and to decrease the SIZE of the font you must click on the SHRINK FONT.