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.

16451.

Discuss about repeaters, hubs, routers, switches and bridges.

Answer»

Not UNDERSTANDING PLZ

16452.

Difference between variable declaration and variable definition

Answer»

ANSWER:

Variable declaration tells the compiler about DATA type and size of the variable. Whereas, variable definition allocates memory to the variable. Variable can be declared MANY times in a program. But, definition can HAPPEN only one time for a variable in a program.

please MARK as a Brainliest...

16453.

Difference between low level introspection and high level introspection

Answer»

\huge{\underline{\underline{\bold{AnSwEr}}}}

Introspection is the examination of one's own conscious THOUGHTS and feelings. In PSYCHOLOGY, the process of introspection relies on the observation of one's mental state, while in a SPIRITUAL context it may REFER to the examination of one's soul.

乂Miss ᭄✿Innocent࿐

16454.

Difference between highest and least frequencies in an array

Answer»

Answer:

GIVEN an array, find the difference between highest OCCURRENCE and least occurrence of any number in an array

Examples:

Input : arr[] = [7, 8, 4, 5, 4, 1, 1, 7, 7, 2, 5]

OUTPUT : 2

Lowest occurring element (5) occurs once.

Highest occurring element (1 or 7) occurs 3 times

Input : arr[] = [1, 1, 1, 3, 3, 3]

Output : 0

#followme

#markasbrainlist

...

16455.

Difference between directives and components in angular 5 examples

Answer»

Answer:

component is like a html page and directive is like a plugin

Explanation:

in angular 2+ component is an entire page (html) in which we DEIGN our UI part.

and directive is a like a plugin which contains a small FUNCTIONALITY which we can use to manipulate the HTML DOM.

it can be use to CREATE VALIDATION on email which can be use LATER on other pages to

16456.

What do you mean by computer? explain strenght and limitation of computer

Answer»

ANSWER:

A computer is a DEVICE that accepts information (in the form of digitalized data) and manipulates it for some result based on a program, software, or sequence of instructions on how the data is to be processed. ... Today's COMPUTERS have both kinds of programming.

strength of computer: The technical characteristics of a computer is ability to calculate and data storage, other than these speed, ACCURACY reliability, and consistency are also the strengths of the computer. It is said that computer works like a human brain.

LIMITATIONS of computer: A computer's main limitation is its programming which is limited by the capabilities the hardware possesses. Physical limitations of a computer are the amount of RAM and storage it can access, the type and speed of the CPU and other low level system devices.

16457.

Difference between a traditional single-threaded process and a multithreaded process.

Answer»

Answer:

i DONT know

Explanation:

i CANT answer i NEED POINTS so i can ask my question

16458.

Difference between beanfactory and the applicationcontext in spring

Answer»

ANSWER:

Bean Factory instiates the bean when called the getBean() where as application CONTEXT will initialize the SINGLE bean when the container STARTED.

16459.

Difference between absolute and relative position in css with example

Answer»

Answer:

Both Postion are having DIFFERENT features.InCss Once you SET Position then you can able to use top,right,bottom,left ATTRIBUTES. Anabsolute position element is positionedrelative to the first parent element that has APOSITION other than STATIC.

16460.

Design a class called bubble sort that is similar to the class selection sort given in display 6.11. The class bubble sort will be used in the same way as the class selection sort, but it will use the bubble sort algorithm. The bubble sort algorithm checks all adjacent pairs of elements in the array from the beginning to the end and interchanges any two elements that are out of order. This process is repeated until the array is sorted. The algorithm is as follows:

Answer»

Not UNDERSTANDING PLZ

16461.

Define location with an android_sdk_root environment react native

Answer»

Not UNDERSTANDING PLZ

16462.

Define social networking and social media.List out the difference between them

Answer»

Social Media: forms of electronic communication (as Web SITES for social NETWORKING and microblogging) through which users create online communities to share information, ideas, personal messages, and other content (as videos).

Social Networking: the creation and maintenance of personal and business relationships especially online

With that said, let's take a LOOK at the five biggest differences between social media and social networking.

16463.

Define density and what the density for the above network is

Answer»

Answer:

For any set of nodes in a NETWORK, there is a finite number of relationships possible.

Each node can serve as the source or the TARGET of a RELATIONSHIP with every other node.

The DENSITY statistic represents the proportion of possible relationships in the network that are actually present.

ThNkYuH...

16464.

Define algorithm and flow cher.Write a program to check wether a number is even or odd.

Answer»

a

Answer:

algorithm =PLAYING a PROGRAM invoulb defining it's LOGIC

16465.

Data representation is based on the ____ number which uses two numbers to represent all data.

Answer»

Answer:

It is BINARY NUMBER containing TWO NUMBERS 0 and 1.

16466.

What is the difference between high level language and low level language

Answer»

Answer:

The difference between a low and a HIGH LEVEL LANGUAGE is RELATED to the level of abstraction of the two languages. A low level language has a lower level of abstraction, WHEREAS a high level language a higher level has. ... A low level programming language is an abstraction of the native programming language of a machine

Explanation:

make me as brainaliest

16467.

Observe the two turn blocks in the motion block​

Answer»

Answer:

The turn degree blocks are MENTION blocks and stack blocks. The blocks turn their sprite the specified amount of DEGREES CLOCKWISE or COUNTER- Clockwise . This changes the direction the sprite is FACING . The blocks use the 360 degrees in a circle.

16468.

Examples of software​

Answer»

Answer:

EXAMPLE of SOFTWARE are operating system and MOVIE player, operating system..

Hope it helps...

16469.

C++ program to find the majority element in an array of integers

Answer»

Answer:

WRITE a function which TAKES an ARRAY and PRINTS the majority element (if it exists), otherwise prints “No Majority Element”. A majority element in an array A[] of size n is an element that APPEARS more than n/2 times (and hence there is at most one such element).

16470.

C program to find sum of squares of n natural numbers using while loop

Answer»

ANSWER:

#include

int main()

{

   int n, i, sum = 0;

   printf("ENTER a positive INTEGER: ");

   scanf("%d",&n);

   i = 1;

   while ( i <=n )

   {

       sum += i;

       ++i;

   }

   printf("Sum = %d",sum);

   return 0;

}

Explanation:

the loop is iterated n number of times. And, in each iteration, the value of i is ADDED to sum and i is incremented by 1.

16471.

Create a method named paymentdetails that outputs an english sentence to describe the amount of the payment.

Answer»

ALSO, create a method named paymentDetails that OUTPUTS an ENGLISH sentence to describe the amount of the payment. Next, DEFINE a ...

16472.

Create view cust_view as select * from customer where type='a'; assuming there 10 customers with type='a', how many rows will be selected from this view after inserting 10 customers of type 'b' through this view?

Answer»

ANSWER:

PLEASE MARK me as BRAIN LIST

16473.

C program on minimum energy consumed to cross a bridge when 2 parallel lanes are given

Answer»

Not UNDERSTANDING PLZ

16474.

C++ program to find the element that appears once in an array of integers and every other element appears twice.

Answer»

Answer:

Given an ARRAY where EVERY element OCCURS THREE times, except one element which occurs only once. Find the element that occurs once. Expected TIME complexity is O(n) and O(1) extra space. In the given array all element appear three times except 2 which appears once.

16475.

Convert time in 24 hrs clock to a time in 12 hrs clock using structure in c program

Answer»

Answer:

GET some rest and feel better soon and that you are the ONE who is our MATHS and English and Spanish and English and Spanish and English and Spanish and English and Spanish and English and Spanish and English and Spanish and English and Spanish and English and Spanish and English and Spanish and English and Spanish and English and Spanish and English and Spanish and English and Spanish and English and Spanish and English and Spanish and English teacher in politics and religion and politics and English and Spanish and English and Spanish and English and Spanish and English is not going to be in the AREA TOMORROW the French quarter fest and English and Spanish and English and Spanish and English is sleeping in politics and English and Spanish and Spanish and English

16476.

1. are used to organize data into row and column.2.BORDER is an attribute of tag. 3.value of ALIGN attribute are , , and .4. attribute set the spacing between the border and contents of the cell. 5. The attribute of anchor tag specifics the address of the web page or document that is to be linked.Fill in the blanks....​

Answer»

Answer:

1 CELLS ..................

16477.

B) what is the difference between "while-do" and "do-while" loop ?

Answer»

Answer:

Only difference between these TWO LOOPS is that, in while loops, test expression is checked at first but, in do...while loop CODE is executed at first then the condition is checked. So, the code are executed at least once in do...while loops.

Hope it's help you......

16478.

Briefly explain any two approaches of file organization. Also describe the use of hashing in file organization.

Answer»

Not UNDERSTANDING PLZ

16479.

Binary search tree whose left and right subtrees differ in height by at most 1 unit is called

Answer»

ANSWER:

That are AVL TREES.

16480.

A. what is the difference between static and dynamic memory allocation? How static scope rules are defined using stack?

Answer»

ANSWER:

Static MEMORY allocation is allocated memory before execution pf program during compile time. DYNAMIC memory ALOCATION is alocated memory during execution of program at run time. ... Dynamic memory allocation. Memory allocated will be in heap.

16481.

6. Automatic variables are allocated space in the form of a: a) stack b) queue c) priority queue d) random

Answer»

ANSWER:

PRIORITY QUEUE is the RIGHT ANS

16482.

A unival tree (which stands for "universal value") is a tree where all nodes under it have the same value.Given the root to a binary tree, count the number of unival subtrees.

Answer»

Answer:

A 5-ary tree in which EVERY INTERNAL node has exactly 5 children. The NUMBER of left nodes in such a tree with 8 internal nodes will be: • 30

16483.

A user has created a vpc with cidr 20.0.0.0/16. The user has created one subnet with cidr 20.0.0.0/16 in this vpc . The user is trying to creaste another subnet with the same vpc for cidr 0.0.0.1/24 what will happens in this sceneraio

Answer»

Answer:

Route GUARDS in ANGULAR are REALLY a powerful and useful TOOL when you want to CONTROL your user's navigation.

16484.

How can you enter text in paint ? ​

Answer»

ANSWER:

Explanation:

To add a text box in Paint, open an IMAGE with the program and locate the "A" symbol in the "Tools" group of the "Home" tab. Click the "A" and then click on the image and drag the mouse pointer to place a text box. To RESIZE the text box, click and drag one of the SMALL squares around the EDGE of the box

16485.

Write Html code to produce following table ​

Answer»

PLEASE REFER TO THE ABOVE PHOTO

16486.

Fill up the blanks......1) _______________ malware needs a host.2)Software and Hardware are infected by _______________ .3) Virus and worms are collectively called ______________.

Answer»

Answer:

1) Trojans

2) virus

3) MALWARE

16487.

Graphics / picture / image / audio is aग्राफिक्स/चित्र/छवि / ऑडियो है।Select one:a. Memo data typeमेमोडाटा प्रकारb. Numeric data typeसंख्यात्मक डेटा प्रकारGeneral data typeसामान्य डेटा प्रकारd. Float data typeफ्लोट डेटा प्रकार​

Answer»

Answer

It is GENERAL DATA TYPE

16488.

At which point in the memory process, improvement is least likely : (a) retention (c) encoding (b) storage (d) retrieval

Answer»

Answer:

Memory” is a single term that reflects a number of different abilities: HOLDING information briefly while working with it (working memory), remembering episodes of one’s life (episodic memory), and our general knowledge of facts of the world (semantic memory), among other types. Remembering episodes involves three processes: encoding information (learning it, by perceiving it and relating it to past knowledge), storing it (maintaining it over time), and then retrieving it (accessing the information when NEEDED). Failures can OCCUR at any stage, leading to forgetting or to having false MEMORIES. The key to improving one’s memory is to improve processes of encoding and to use techniques that guarantee effective retrieval. Good encoding techniques include relating new information to what one already knows, forming mental images, and creating associations among information that needs to be REMEMBERED. The key to good retrieval is developing effective cues that will lead the rememberer back to the encoded information. Classic mnemonic systems, known since the time of the ancient Greeks and still used by some today, can greatly improve one’s memory abilities.

16489.

A three dimensional array in c is declared as int a[x][y][z]. Consider that array elements are stored in row major order and indexing begins from 0. Here, the address of an item at the location a[p][q][r] can be computed as follows (where w is the word length of an integer):

Answer»

Not UNDERSTANDING PLZ

16490.

A system of 15 independent preemptable periodic tasks is scheduled using the rate monotonic algorithm, but must run on an operating system that supports only eight priority levels. Explain how the limited number of available operating system priority levels might affect the performance of the tasks. Discuss how you would best map the rate monotonic priorities onto the available priori

Answer»

Explanation:

Processes and Operating Systems ... Rate- monotonic SCHEDULING (RMS), introduced by Liu and Layland [Liu73], ... Because P1 is the highest-priority process, it can start to execute ...Mark as BRAINLIEST.

16491.

Assume that there is a class derv that is derived from a base class base write the declarator for a derive class constructor that takes one arrgument and passes this arrgument along to the constructor in the base class

Answer»

ANSWER:

because the derv is so DEEP

16492.

A special type of method that is used to initialize an object is called

Answer»

ANSWER:

CONSTRUCTOR is the answer.

16493.

A situation in which conclusions based upon aggregated crosstabulation are different from

Answer»

Not UNDERSTANDING PLZ

16494.

A set of one or more programs, which controls the operation of a computer is known as

Answer»

SOFTWARE comprises the entire set of PROGRAMS,procedures and routines ASSOCIATED with the operation of a computer system.A set of INSTRUCTIONS that directs a computer's hardware to perform a task is called a program,or software program.

16495.

Write how was your first day of school in English​

Answer»

Answer:

in my first day of school I was very excited to GO I went to school my father drop me I MET a kid and he BECAME friends in the INTERVAL I met my TEACHERS I had many friends our class room is very big our school is very big it has a very big library it has a very big music room it has a big playground with all types of sports live cricket football and so and so and we have music violin guitar piano and my friends are very nice and we played and it was very enthusiastic experience my first day of school

16496.

A set of logically sequenced instructions that allows you to find the solution to a problem is termed as:

Answer»

An algorithm is a set of INSTRUCTIONS,

TYPICALLY USED to solve a class of PROBLEMS or perform a computation.Algorithms are unambiguous specifications for PERFORMING calculation,data processing, automated reasoning, and other tasks.

16497.

a scratch program that ask user to enter food items if the user enters the food name two times it should dispaly a message

Answer»

Explanation:

computing, scratch input is an acoustic-based method of Human-Computer Interaction (HCI) that TAKES advantage of the characteristic sound PRODUCED when a FINGER nail or other object is DRAGGED over a surface, such as a table or wall. ... However, specialized MICROPHONES can digitize the sounds for interactive purposes.

16498.

Observe the following table and write the html code generate it​

Answer»

I HOPE it is USEFUL for you.....

16499.

A query to display the names of the department in lowercase and ordered in ascending order.Give an alias as dept_name

Answer»

ANSWER:

SELECT lower(department_name) as dept_name from DEPARTMENT ORDER by department_name;

this is 100% correct

16500.

A pipe redirects the output of one command as an input to another command. Select one: true false

Answer»

EXPLANATION:

I THINK the ANSWER is true.

Hope it will HELP you.