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.

2701.

What is timestamping, and what are the types of timestamping ?

Answer»

Explanation:

Verb. (third-person singular SIMPLE PRESENT SPENDS time, present participle spending time, simple past and past participle spent time) To dedicate time to an activity. These days, many people spend time SURFING social networking sites. To accompany someone for LEISURE; to hang out.

2702.

What are the types of Network architecture? Explain them briefly?​

Answer»

Answer:

NETWORK Architecture. There are several WAYS in which a computer network can be designed. Network architecture refers to how computers are organized in a system and how tasks are allocated between these computers. Two of the most widely USED TYPES of network architecture are peer-to-peer and client/server.

Network Architecture

There are several ways in which a computer network can be designed. Network architecture refers to how computers are organized in a system and how tasks are allocated between these computers. Two of the most widely used types of network architecture are peer-to-peer and client/server. Client/server architecture is also called 'tiered' because it uses multiple levels. This lesson will discuss each of these two types in more detail.

Peer-to-Peer

In a peer-to-peer or P2P network

Client/Server

In a client/server network, a number of network clients or workstations request resources or SERVICES from the network.

2703.

Sports photojournalism

Answer»

Answer:

Sports photojournalists, or sports photographers, TAKE pictures of SPORTING events for MAGAZINES, NEWSPAPERS, and websites. These professionals often have training in PHOTOGRAPHY and should have a knowledge of sports, artistic ability, and the ability to work with digital editing software and camera equipment.

2704.

Name any five elements that form a part of slide layout

Answer»

ANSWER:

Slide LAYOUTS are the ESSENTIAL framework for the presentation in POWERPOINT.

...

The few slides name are as...

TITLE Slide.

Title and Content.

Section Header.

Two Content.

Comparison.

Title Only.

Blank.

Content With Caption.

2705.

A popular secondary storage device

Answer»

Answer:

Examples of secondary storage mediainclude recordable CDs and DVDs, floppy DISKS, and removable disks, such as Zip disks and Jaz disks. Each one of these types of MEDIA must be inserted into the appropriate DRIVE in order to be READ by the computer.

Explanation:

marks as BRAINLIST

2706.

Given a binary classification dataset, say having Y = 1 or 0 as the target variable and X 1 and X 2 as two numeric attributes, what does it mean to say that the dataset is linearly separable?

Answer»

ANSWER:

I don't KNOW about it

Explanation:

SORRY

2707.

Why is context important in selecting and applying guidelines and principles for interface design?

Answer»

EXPLANATION:

OK, let me EXPLAIN ....see our INDIAN GOVERNMENT is

2708.

How to calculate cbse class 10 percentage because i have it as 6 th additional subject in cbse class 10 exam 2018- 19 session applicable class ten board cbse

Answer»

Answer:

I ALSO have computer applications as an OPTIONAL SUBJECT..... marks of best 5 subjects will be added....

2709.

Which of the following is not feature of computer

Answer»

ANSWER:

APPLY JUDGEMENT on his own

2710.

How to code a clock in python ​

Answer»

Explanation:

Python | Create a digital clock using TKINTER

As we know Tkinter is used to create a variety of GUI (Graphical User Interface) applications. In this article we will learn how to create a Digital clock using Tkinter.

Prerequisites:

-> Python functions

-> Tkinter basics (LABEL Widget)

-> Time module

Using Label widget from Tkinter and time module :

In the following application, we are GOING to USE Label widget and also going to use time module which we will use to retrieve system’s time.

2711.

Which of the following is not a pointer declaration

Answer»

Answer:

Which of the following is not a pointer declaration? a) char a[10]; b) char a[] = {"1"², " 2"², "3"², "4"²}; c) char *str; d) char a;

2712.

Write the 6 keyboard shortcut along with effects used in libreoffice calc

Answer»

ANSWER:

 Depending on the Window MANAGER in USE, Alt+Tab may be USED instead . To change the heading level with the keyboard

2713.

Query: [mcdonalds Austin]Viewport: FreshUser Location: within Houston, TXResult Returned: McDonalds location in a neighboring locality to AustinWhat is the location intent (what should be used to determine distance demotions)?1: User Location2: Location Modifier requested in Query (Austin)3: Fresh Viewport4: All of the AboveI have the choice to select one answer.Thanks

Answer»

All of the above.

User's location, Location modifier REQUESTED in query, and fresh viewports are the integral factors of the location intent.

  • Location intent helps the user to find an object's or place's location, while reading out the activities related to it.

  • Location modifier allows the user to determine the location of any site or an object, by describing the activities related to the object. The applications work as a network to provide the ULTIME result.

  • The QUERIES helps in generating the location of the user.

Learn more :

1) For all queries, the user location changes our understanding of the query and user intent?

brainly.in/question/7444040

2) True False All queries with a user location have both visit-in-person and non-visit-in-person intent.

brainly.in/question/2947424

3) What is the location intent (what should be used to determine distance DEMOTIONS)?

brainly.in/question/12233659

2714.

What are counter variable?

Answer»

Explanation:

Counter is an interger variable used to KEEP TRACK of NUMBER of times a specific piece of CODE is executed.

Hope it will help you

2715.

Which of the following is not found in a url1.path. 2.post. 3.protocol. 4.port

Answer»

ANSWER:

Your answer is 2.post

2716.

The word associative is related with

Answer»

ANSWER:

ADDITION or MULTIPLICATION for a GRP

2717.

Program in java to print series S=2\1+4\3+6\5...n terms

Answer»

Question:

Write a program in java to print the SERIES upto n terms_

S = \dfrac{2}{1} + \dfrac{4}{3} + \dfrac{6}{5} + ...... n.CLASS="latex-formula" id="TexFormula1" src="https://tex.z-dn.net/?f=S%20%3D%20%5Cdfrac%7B2%7D%7B1%7D%20%2B%20%5Cdfrac%7B4%7D%7B3%7D%20%2B%20%5Cdfrac%7B6%7D%7B5%7D%20%2B%20......%20n." title="S = \dfrac{2}{1} + \dfrac{4}{3} + \dfrac{6}{5} + ...... n.">

Answer:

IMPORT java.util.*;

public class Series

{

public static void main(String args[])

{

Scanner in =new Scanner(System.in);

int a,b,n;

float S=0.0;

System,out,println("ENTER the value of n");

n= in.nextInt();

for(a=2;a<=n;a=a+2)

for(b=1;b<=n;b=b+2)

{

S= S+(a/b);

System.out.println("The series is="+S);

}

}

}

For more java programmings follow the GIVEN links, as I have solved earlier:

brainly.in/question/14335606

brainly.in/question/14323927

brainly.in/question/14370842

brainly.in/question/14395545

brainly.in/question/14809512

brainly.in/question/14809885

brainly.in/question/14840551

brainly.in/question/15125968

brainly.in/question/15584326

brainly.in/question/15947017

2718.

Write c function to insert a node between two nodes of a singly linked list.

Answer»

Answer:

hsjzkf,lqv Ngoc do dcs dh WD of if dh of db office and will not come to our attention that i love to give they were marked as alisiyasayed you are so cute ur hair and eyes of a great weekend is the best of all time some one and give u are real put me on the SONG PLS find ATTACHED document and ANSWERS in our videos u have not HEARD anything from me the markings of the song

2719.

Question: Which of the following statements is true about the viewport?1: The viewport is an essential component of every search query, and its absence should be reported to the Maps team as a critical bug.2: Stale viewports mean the user does not care about a result's location, so you should use your country as the location intent for all queries with a stale viewport.3: The user anticipates results that are closer to the device icon in the center of the viewport, so results closer to the viewport icon should be considered more relevant.4: The viewport is the section of the map that is shown on the user's device as they issue a query.

Answer»

Answer:

2&4

Explanation:

because they are RELATED to the VIEWPORT

2720.

In computer which option selected by default in the convert to symbol dialog box for class 6 Options are: movie clip, Graphic,button

Answer»

ANSWER:

BUTTON is the answer.

PLEASE MARK me as BRAINLIEST answer

2721.

Pre-defined set of commands and instructions are called

Answer»

ANSWER:

pre-define FUNCTION

Explanation:

Hope this will HELP you

PLS MARK as brainliest

2722.

Guys, do we insert VGA Port of Monitor at the marked place in CPU or some other port?If you give the right answer I would mark your answer the BRAINLIEST!​

Answer»

YES we can INSERT

HOPE it's help

Mark as BRAINLIEST ❤️

2723.

What is different between this() super() and this super

Answer»

in java. super() as well as this() both are used to make constructor CALLS. super() is used to call Base class's constructor(i.e, PARENT's class) while this() is used to call CURRENT class's constructor. super() is USE to call Base class's(Parent class's) constructor.

2724.

Write a program in python that reads a text file and creates another file that is identical except that every sequence of consecutive blank spaces is replaced by a single space.​

Answer»

REFER above ATTACHMENT!

2725.

Q Basic programme to print sum of first 50 odd numbers​

Answer»

ANSWER:

n÷2{n+1} ....................

2726.

What is the full form of ROM?​

Answer»

ANSWER:

READ only MEMORY .....

GOOD AFTERNOON

2727.

Q basic program to print the sum of first 50 odd numbers

Answer»

ANSWER:

CLS

IF a MOD 2=1 and a<100 then

Print a

END IF

END

2728.

Define the term WWW. Who is the founder of WWW?

Answer»

ANSWER:

WWW STAND for World Wide Web. It is a PART of Internet that contains websites and web pages. Sir Tim Berners Lee is the founder of WWW.

If you like the answer, plzz mark it as BRAINLIEST..

2729.

What is the full form of RAM?​

Answer»

ANSWER:

Hey!

RAM - RANDOM ACCESS Memory

Hope it will be HELPFUL ✌️

2730.

Dramastreet theatrepuppetrydancestory tellingsongmusicpaintingmotifs and symbolsToto 1

Answer»

ANSWER:

hahahhahahahahahababababababba

2731.

What are :HubsSwitchesRouters​

Answer»

Answer:

  1. Hubs - the most basic networking device that CONNECTS multiple computers or other network DEVICES together
  2. Switches - a device in a computer network that connects other devices together.
  3. Routers - a networking device that FORWARDS data packets between computer NETWORKS
2732.

Write an algorithm to solve limitations of ordinary queue but without using circular queue

Answer»

Answer:

In any SITUATION, a person who just arrives will STAND at the END of the queue and the person who is LEADING the queue is the one who ...

2733.

Write a short note on timeline

Answer»

Answer:

A timeline is the PRESENTATION of a chronological sequence of events along a drawn line that enables a viewer to UNDERSTAND temporal relationships quickly. ...

Timelines are USEFUL to document any type of DEVELOPMENT, providing an easy-to-understand history and helping VIEWERS to understand past and ongoing trends

2734.

What is difference between li-fi and wi-fi

Answer»

ANSWER:

We KNOW that Li-Fi is the SHORT FORM of Light Fidelity and Wi-Fi is the short form of Wireless Fidelity. LiFi uses light for data transmission while WiFi uses electro-magnetic waves at radio frequencies for data transmission. Both provides ALMOST same data transfer rate.

♣️❤️ xGangsterGirlsx ❤️♣️

2735.

What do you know about function keys of the keyborad ? Class 3

Answer»

Answer:

A FUNCTION key is a key on a computer or terminal keyboard which can be PROGRAMMED so as to cause an operating system command INTERPRETER or application program to PERFORM certain actions, a form of soft key. On some keyboards/computers, function keys MAY have default actions, accessible on power-on.

... hope it helps ...

2736.

(4) Ajit Singh9. According to Fifth Law of Library Science "Library is a growing ?(1) Organism​

Answer»

Answer:

The FIFTH law of library science "the library is a growing organism" MEANS that a library should be a continually changing institution, NEVER static in its outlook. BOOKS, methods, and the physical library should be updated over time.

2737.

IF A>B THEN PRINT A IS GREATER. Identify the errors

Answer»

Wrong:

IF A>B THEN PRINT A IS GREATER.

Correct:

in C

if(A>B)

{

PRINTF("A IS GREATER");

}

in C++

if(A>B)

{

COUT<<"A IS GREATER";

}

2738.

- पाचवीं पीढ़ी के कम्प्युटर की भाषा है?​

Answer»

कंप्यूटर के विकास का इतिहास अक्सर अलग पीढ़ी दर पीढ़ी कंप्यूटिंग उपकरणों के संदर्भ में है। यह यात्रा वैक्यूम ट्यूबों के साथ 1940 में शुरू हुई और तब से चली आ रही है। वर्तमान में यह कृत्रिम बुद्धि का प्रयोग कर तरक्की कर रही है। कंप्यूटर की पाँच पीढ़ियाँ में प्रत्येक पीढ़ि की यह विशेषता है कि उनमें हुए प्रमुख तकनीकी विकास द्वारा उन्होंने कंप्यूटर के काम करने का तरीका बदल दिया। ज्यादातर विकास के परिणामस्वरूप तेजी से छोटे, सस्ता और अधिक शक्तिशाली और कुशल कंप्यूटिंग उपकरणों का आविश्कार हो पाया है।

पहली पीढ़ी (१९४६-१९५६) वैक्यूम ट्यूब संपादित करें

इनिएक
प्रथम पीढ़ी के कंप्यूटर में निर्वात नली का प्रयोग परिपथ बनाने में किया जाता था और मेमोरी के लिया चुम्बकीय ड्रम प्रयोग में लाते थे | निर्वात नली के प्रयोग की वजह से इन कंप्यूटर से बहुत अधिक ऊष्मा उत्सर्जित होती थी जो इन कंप्यूटर की बहुत बड़ी समस्या थी | ये कंप्यूटर निम्न स्तरीय भाषा को समझ पाते थे इसलिए इनको को भी कार्य बताने के लिए बाइनरी भाषा काम में ली जाती थी , जो काम में लेने के लिए बहुत मुश्किल थी | क्योकि बाइनरी भाषा में समस्त निर्देश ० और १ के प्रयोग से लिखे जाते हैं जिनमे गलतियों को पहचानना बेहद मुश्किल कार्य होता था | ये कंप्यूटर एक समय में एक ही काम कर सकते थे | इनपुट व आउटपुट के लिए पंच कार्ड पर प्रिंट आउट का प्रयोग किया जाता था |

युनिवेक और इनियेक प्रथम पीढ़ी के उदाहरण हैं

1956 से 1963) ट्रांजिस्टर= संपादित करें
ये कंप्यूटर प्रथम पीढ़ी की तुलना में तेज़ होते थे और इनमे निर्वात नली के स्थान पर ट्रांजिस्टर प्रयोग में लाया जाता था | इस ट्रांजिस्टर का आविष्कार 12 sep 1958 में हुआ, इसके प्रयोग के पश्चात कंप्यूटर की स्पीड पहले से तेज़ हो गयी परन्तु ये कंप्यूटर भी ऊष्मा उत्सर्जित करते थे | इस पीढ़ी के कंप्यूटर में भी इनपुट देने के लिए पंच कार्ड और आउटपुट प्राप्त करने के लिए प्रिंट आउट का ही प्रयोग किया जाता था | लेकिन प्रोग्राम लिखने के लिए बाइनरी भाषा की जगह असेंबली भाषा प्रयोग में लायी जाने लगी | असेंबली भाषा में अंग्रेजी के अक्षरों को कोड के रूप में प्रयोग में लिया जाता है |

COBOL और FORTRAN भाषाओ के प्रारम्भिक वर्जन का प्रयोग इसी समय किया जाने लगा, जो की उच्च स्तरीय भाषा के उदहारण है |

तीसरी पीढ़ी (१९६४-१९७३) एकीकृत सर्किट संपादित करें
इस पीढ़ी में इनपुट देने के लिए कीबोर्ड और आउटपुट के लिए मोनीटर का प्रयोग किया जाने लगा, और सबसे पहले ऑपरेटिंग सिस्टम का प्रयोग इस पीढ़ी में किया गया, जो की एक CUI आधारित ऑपरेटिंग सिस्टम था | तृतीय पीढ़ी के कंप्यूटर में ट्रांजिस्टर के स्थान पर आई. सी. का प्रयोग किया जाने लगा | आई. सी. का अविष्कार 1958 में जैक किल्बी द्वारा किया गया | आई. सी. के प्रयोग से कंप्यूटर का आकार बहुत छोटा और पहले से तेज़ हो गये | इस पीढ़ी के कंप्यूटर में प्रोग्राम लिखने के लिए उच्च स्तरीय भाषा का प्रयोग किया जाने लगा और ये कंप्यूटर एक समय में एक से ज्यादा कार्य करने में सक्षम थे |

CUI- Character User Interface

चौथी पीढ़ी (१९७३-१९८२) माइक्रोप्रोसेसर संपादित करें
चतुर्थ पीढ़ी के कंप्यूटर की शुरुआत माइक्रोप्रोसेसर से हुई , जो की सिलिकोन से बनी एक चिप होती थी जिस पर हजारो आई.सी. एक साथ लगी होती है | इस पीढ़ी के कंप्यूटर में GUI आधारित ऑपरेटिंग सिस्टम का प्रयोग किया गया जो की काम में लेने के लिए बहुत आसान था |

2739.

What are the characteristies of html tags

Answer»

Answer:

HTML tags are the hidden keywords within a web page that define how your web browser must FORMAT and display the content.

Most tags must have TWO parts, an opening and a closing part. For EXAMPLE,  is the opening TAG and  is the closing tag. Note that the closing tag has the same text as the opening tag, but has an additional forward-slash ( / ) character.

There are some tags that are an exception to this rule, and where a closing tag is not required. The  tag for showing images is one example of this.

Each HTML file must have the essential tags for it to be valid, so that web browsers can understand it and display it CORRECTLY.

2740.

What is ics in computer​

Answer»

ANSWER:

INTERNET CONNECT SHARING madam.

Please mark me the brainliest.

2741.

Python programming for modulus of 5

Answer»

e-PYTHON-MODULO-OPERATOR-what-does-the-SYMBOL-MEAN-in-python-solved/amp/

The Python Modulo Operator - What Does the % Symbol Mean ...

2742.

What is the full form of ip grp in computer science​

Answer»

ANSWER:

INFORMATIC PRACTICES =,= DUDE we have exam day after and u ASKING

2743.

Which grp should i choose in 11th to go for compurter engineering​

Answer»

You have to CHOOSE PCM with IP

2744.

Hey Everyone !In Android ,MS Word is showing downloaded hindi text in english alphabets . I have all the hindi fonts downloaded . What to do?I have attached the screenshot of the hindi document .I you really know what to do , then please help .

Answer»

ANSWER:

Try to DOWNLOAD another apps to OPEN the FILE like PDF reader.

2745.

Name the dialogue box that display a short description of the selected block in scratch

Answer»

EXPLANATION:

"HELP" is the CORRECT answer

hope it HELPS U

#peace

2746.

Know the answer? Add it here!

Answer»

ANSWER:

what??

I don't UNDERSTAND this

2747.

Which register is used to manage the stack of the computer:​

Answer»

Answer:

A stack register is a computer central processor register whose purpose is to KEEP TRACK of a CALL stack. On an accumulator-based architecture machine, this may be a dedicated register such as SP on an INTEL x86 machine.

hope it use FULL....✌

plzz mark as brainlist.....XD

2748.

There are four basic kinds of puppets :glove puppetsstring puppetsrod puppets

Answer»

Answer:

4th ONE is FINGER puppet.

Hope it HELPS......

2749.

If we apply shearing in X and Y direction by 3 and 4 units respectively onto a circle

Answer»

Answer:

For example, both the points (6, 9, 3) and (4, 6, 2) in the homogeneous coordinates CORRESPONDS to (2, 3) in the CARTESIAN coordinates. Consider the FOLLOWING figure where a position vector p(X,y) which makes an angle ϕ to x-axis after TRANSFORMATION to p'(x',y') makes an angle ϕ+θ degrees.

2750.

Tier 1 company in india​

Answer»

Answer:

TIER 1 COMPANIES

*INFOSYS

*Tcs

*Wipro

*Hcl.TIER 2 compankes.

*Mphasis

*Financial Technologies

......

Hope it helps

Thanxx