You are on page 1of 15

Q1.

C programming language was created by / C Programming Language का विकास वकसके द्वारा


वकया गया था?

A) Dennis Ritchie B) Ken Thompson C) Bill Gates D) Petor Nurton

Q2. C Language was developed in the year........./ C भाषा का विकास वकस िषष में हुआ था

A)1970 B) 1972 C) 1983 D)1990

Q3. Which of the following symbol is used to denote a pre-processor statement? / विम्नविखित में से
कौि सा प्रतीक प्री-प्रोसेसर स्टे टमेंट को दर्ाष िे के विए प्रयोग वकया जाता है

A) ! B)# C) ~ D) ;

Q4. String constants should be enclosed between _/ खस्टर िं ग खथथरािं क के बीच सिंिग्न होिा चावहए

A) Single quotes B)Double quotes C) Both A and B D) None of these


Q5. C language is called ./ सी भाषा को कहा जाता है ?

(A) Non-procedural language (B) Procedural language (C) 4 GL's (D) All of the above

Q6. What is a program / एक कायषक्रम क्या है

(A) set of instructions (B) Hardware (C) Group of data and files (D) set of information

Q7. How will you print \n on the screen? / आप ्क्रीव् पर\n कैसेटप्रिंट करें गे?

(A) printf("\n"); (B) echo "\\n"; (C) printf('\n'); (D) printf("\\n")

Q8. C Programming was created at ______ by Dennis Ritchie./ C प्रोग्रावमिंग ______ में डे विस ररची द्वारा
बिाई गई थी ।

(A) L&T Laboratory (B) AT&T Bell Laboratory (C) Stanford Lab (D) Haward University

Q9. Following Operating System was Created by Dennis Ritchie – / विम्नविखित ऑपरे वटिं ग वसस्टम डे विस
ररची द्वारा बिाया गया था

(A) Unix (B) Ubuntu (C) Mac (D) Android

Q10.Which of the following is remove a single line comments of a program in C language ? /


विम्नविखित में से कौि सी भाषा में वकसी प्रोग्राम की वसिंगि िाइि कमेंटस को हटाता है

(A) ** line of code (B) /* line of code (C) // line of code (D) Both B & C

Q11.Directives are translated by the / विदे र्ोिं का अिुिाद द्वारा वकया जाता है

(A) Pre-processor (B) Compiler (C) Linker (D) Edito

Q12. which of the following file is not generated by C compiler when a program xyz.c is compiled? /
जब कोई प्रोग्राम xyz.c सिंकवित वकया जाता है , तो विम्न में से कौि सी फाइि C किंपाइिर द्वारा उत्पन्न िहीिं होती
है ?

(A) xyz.bid (B) xyz. bak (C) xyz. obj (D) xyz. exe

Q13.Match the following ? / विम्नविखित को वमिाएिं ?


Phase Extension

A. Preprocessor 1- .exe B. Compiler 2- .i C. Assembler 3- .obj D. Linker 4- .s

(A) A=1, B=3, C=2, D=4 (B) A=2, B=4, C=3, D=1 (C) A=2, B=1, C=3, D=4 (D) A=4, B=2, C=3, D=1

Q14.Which of the following is correct sequence of file execution of source code to executable code?
/ विम्नविखित में से कौि सा विष्पादि योग्य कोड के विए स्रोत कोड के फाइि विष्पादि का सही क्रम है

Example:- hello.c program

(A) hello.i→ hello.s → hello.o → hello.exe (B) hello.i→ hello.m → hello.obj→ hello.exe

(C) hello.i→ hello.c → hello.obj→ hello.exe (D) hello.i→ hello.s → hello.obj→ hello.ex

Q15. -----------error arises due to incorrect use of syntax. / ----------- िाक्य रचिा के गित प्रयोग के कारण
त्रुवट उत्पन्न होती है

(A) Compile time error (B) Linking error (C) Run time Error (D) Input Error

Q16. Which pair of functions below are used for single character I/O. / िीचे वदए गए कायों की कौि सी
जोडी एकि िणष I/O . के विए उपयोग की जाती है ?

(A) Getchar() and putchar() (B) Scanf() and printf() (C) Input() and output() (D) None of these

Q17.Which escape character can be used to beep from speaker in C ? C . में स्पीकर से बीप करिे के विए
वकस एस्केप कैरे क्टर का उपयोग वकया जा सकता है ?

(A) \a (B) \b (C) \m (D) \n

Q18.which functions receives value from the keyboard? / कौि से फिंक्शि कीबोडष से value प्राप्त करते हैं

(A) printf() (B) scanf() (C) both A & B (D) none of these

Q19.What is return type of printf() library function in C ? / सी में वप्रिंटफ () िाइब्रेरी फिंक्शि का ररटिष
प्रकार क्या है ?

(A) int (B) char (C) float (D) class

Q20.What is return type of scanf() library function in C ? / सी में स्कैिफ () िाइब्रेरी फिंक्शि का ररटिष
प्रकार क्या है ?

(A) int (B) char (C) float (D) class

Q21.What will be the output of following C code / विम्नविखित सी कोड का आउटपुट क्या होगा

nt p = printf(“123”+1);

printf(“%d”,p)

(A) 123 (B) compiler error (C) 232 (D) 124

Q22.What will be the output of following C code / विम्नविखित सी कोड का आउटपुट क्या होगा

printf(“%d”,printf(“12345”));
(A) 123 (B) 123455 (C) nothing (D) 1233

Q23. What is the output of the program.?/ प्रोग्राम का आउटपुट क्या है

printf("Hello Boss"+2);

(A) llo Boss (B) hello boss (C) No output (D) Compiler error

Q.24 HTML is what type of language ? / HTML वकस प्रकार की भाषा है?

A. Scripting Language B. Markup Language C. Programming Language D. Network Protocol

Q.25. Fundamental HTML Block is known as ___________./ HTML ब्लॉक को ___________ के रूप में
जािा जाता है ।

A.HTML Body B.HTML Tag C.HTML Attribute D.HTML Element

Q.26. Who is Known as the father of World Wide Web (WWW)?/ िर्ल्ष िाइड िेब (WWW) के जिक के
रूप में वकसे जािा जाता है

A. Robert Cailliau B. Tim Thompson C. Charles Darwin D. Tim Berners-Lee

Q.27. What should be the first tag in any HTML document ? /वकसी भी HTML दस्तािेज़ में पहिा टै ग क्या
होिा चावहए?

A.<head> B.<title> C.<html> D.<document>

Q.28 HTML web pages can be read and rendered by _________./HTML िेब पेजोिं को _________ द्वारा
पढा और प्रस्तुत वकया जा सकता है ।

A. Compiler B. Server C. Web Browser D. Interpreter

Q.29 Which of the following is not a browser ?/ विम्न में से कौि एक ब्राउज़र िहीिं है

A. Microsofts Bing B. Netscape Navigator C. Mozilla Firefox D.Opera

Q.30 HTML tags are surrounded by which type of brackets./ HTML टै ग वकस प्रकार के ब्रैकेट से विरे होते
हैं

A. Curly B. Round C. Squart D. Angle

Q.31 Tags and texts that are not directly displayed on the page are written in _____ section./ टै ग और
टे क्स्ट जो सीधे पेज पर प्रदवर्षत िहीिं होते हैं , _____ सेक्शि में वििे जाते हैं

A.<head> B.<title> C.<body> D.<html>

Q.32. HTML is the standard ____language for creating Web pages./ HTML िेब पेज बिािे के विए मािक
____भाषा है

A. scripting B. programming C. styling D. markup

Q.33. Which tag contains the meta information about the HTML page ? / वकस टै ग में HTML पृष्ठ के बारे
में मेटा जािकारी होती है

A.<html> B.<title> C.<head> D.<body>


Q.34 Which tag is the root element of an HTML page? / HTML पेज का मूि तत्व कौि सा टै ग है

A. <html> B.<title> C.<head> D.<body>

Q.35 HTML tags with no content are called _____./ वबिा सामग्री िािे HTML टै ग्स को _____ कहा जाता है ।

A. Special tags B. Advanced tags C. Empty tags D. Other tags

Q. 36 The most basic part of any HTML page is ? / वकसी भी HTML पेज का सबसे बुवियादी वहस्सा है

A. ascii text B. Binary Text C.Text D. bcd Text

Q.37 Which organization developed by html 2.0 version ? / html 2.0 सिंस्करण द्वारा वकस सिंगठि को
विकवसत वकया गया है

A. IETF B.W3c C.CERN D.None of these

Q.38 HTML Is A Subset Of / HTML का एक सबसेट है

A. SGMT B. SGMD C.SGML D. None Of These

Q.39 The BODY Tag Is Normally Utilized Later / बॉडी टै ग आमतौर पर बाद में उपयोग वकया जाता है

A. EM Tag B. TITLE Tag C. HEAD Tag D. HTML Tag

Q.40 . ALL HTML Tags Are Must Be Enclosed In ? / सभी HTML टै ग्स में सिंिग्न होिा चावहए

A. ? And ! B. < And > C. { And } D. # And #

Q.41 What Should Be The First Tag In Any HTML Document ? / वकसी भी HTML Document में सबसे
पहिा Tag क्या होिा चावहए

A. <html> B. <head> C. <title> D. <document>

Q.42 The ____________ entity is used for the Copyright./ ________इकाई का उपयोग
कॉपीराइट के विए वकया जाता है

a. &copy b. &apos c. &reg d. &#8377


Q.43 Which character is used to indicate an end tag in html ?/ html में एक अिंवतम टै ग को इिं वगत करिे के
विए वकस िणष का उपयोग वकया जाता है

A. > B. < C. / D. *

Q.44 Under which of the following menu tabs are Page Setup options usually available in MS Word
2007?/ विम्न में से वकस मेिू टै ब के अिंतगषत MS Word 2007 में आमतौर पर पेज सेटअप विकल्प उपिब्ध होते हैं

A. Insert B. Page Layout C. Home D. Review

Q.45 Which of the following is NOT a character formatting option in Ms-word ?/ विम्न में से कौि Ms-
word में एक कैरे क्टर फॉमेवटिं ग विकल्प िहीिं है

A. Font style B. Font C. Size D. Alignment

Q.46 Which of the following is NOT a valid alignment in MS-Word ? / विम्नविखित में से कौि MS-Word
में मान्य सिंरेिण िहीिं है
A. Right B. Top C. Justify D. Left

Q.47 Which of the following statements is/are true?/ विम्नविखित में से कौि सा कथि सत्य है

(i) In MS-Word, a text cannot be both italicized and bold.


(ii) In MS-Word, a text cannot have font-size less than 8.

A. Both i and ii B. Only I C. Neither I nor ii D. Only ii

Q.48 Which of the following best describes the MS-Word software?/ विम्नविखित में से कौि एमएस-िडष
सॉफ्टिेयर का सबसे अच्छा िणषि करता है

A. It is a firmware. B. It is a word processor.

C. It is a GUI-based operating system. D. It is system software.

Q.49 The font size of 36 points in MS-Word 2007 is equal to how many inches?/MS-Word 2007 में 36
पॉइिं ट का फॉन्ट साइज वकतिे इिं च के बराबर होता है

A.0.25 B.1.0 C.1.25 D.0.5

Q.50 By default, an MS Word 2007 document opens in ____ view. /वडफॉल्ट रूप से, MS Word 2007
दस्तािेज़ ____ दृश्य में िुिता है

A. Draft b) Print Layout C) Outline D) Web Layout

Q.51 What is the purpose of the keyboard shortcut ‘Shift + F3’ in MS Word 2010?/ MS Word 2010 में
कीबोडष र्ॉटष कट 'Shift+F3' का उद्दे श्य क्या है ?

A. This shortcut displays font size options

B. This shortcut displays alignment options

C. This shortcut switches the text between uppercase, lowercase and title case

D. This shortcut displays font colour options

Q.52 Which of the following keyboard shortcuts is used to open the ‘Paste Special’ dialogue box in
MS Word 2010 ?/ एमएस िडष 2010 में 'पेस्ट स्पेर्ि' डायिॉग बॉक्स िोििे के विए विम्न में से वकस कीबोडष
र्ॉटष कट का उपयोग वकया जाता है ?

A. Ctrl + Alt +V B. Ctrl + Shift + V C. Ctrl + V D. Ctrl + Alt + X

Q.53 In MS Word 2010, to use the Spelling and Grammar option, one has to click on the ____ tab
and within the ____ group click on ‘Spelling & Grammar’./ 53 एमएस िडष 2010 में, स्पेवििंग और ग्रामर
विकल्प का उपयोग करिे के विए, ____ टै ब पर खिक करिा होगा और ____ ग्रुप के भीतर 'स्पेवििंग एिं ड ग्रामर'
पर खिक करिा होगा।

A.Design, Tracking B .Review, Proofing Review, Compare D.View, Language

Q.54 विम्नविखित में से वकसका उपयोग MS Word दस्तािेज़ में टे क्स्ट का रिं ग बदििे के विए वकया जाता है ?

A.Text highlight color B.Font color C.Shading D.Styles


Q.55 What do you call the distance between written text and the edge of a paper?/ विखित पाठ और
कागज के वकिारे के बीच की दू री को आप क्या कहते हैं ?

A.Alignment B.Ruler Line C.Indent Stop D.Margin

Q.56 Which of the following buttons cannot be found in the clipboard pane in MS Word 2010 ?/
विम्नविखित में से कौि सा बटि MS Word 2010 के खिपबोडष पेि में िहीिं वमि सकता है

A.Ok B.Clear All C.Options D.Paste All

Q.57 Which of the following Tab is used to enable ‘Ruler’ option in MS Word 2010?/ एमएस िडष 2010
में 'रूिर' विकल्प को सक्षम करिे के विए विम्न में से वकस टै ब का उपयोग वकया जाता है?

A.Review B.Design C.Page Layout D.View

Q.58 Match the following keyboard shortcuts of MS Word 2010 with their respective
functionalities./ एमएस िडष 2010 के विम्नविखित कीबोडष र्ॉटष कटस को उिकी सिंबिंवधत कायषक्षमताओिं के साथ
सुमेवित करें

a. Italic x. Ctrl + [
b. Decrease font size1 point y. Ctrl + ]
c. Increase font size 1 point z. Ctrl + I

A. a-y, b-z, c-x B.a-z, b-y, c-x C.a-z, b-x, c-y D.a-x, b-y, c-z

Q.59 Which of the following statements is/are FALSE?/ विम्नविखित में से कौि सा/से कथि असत्य है/हैं

(i) In MS-Word, different letters of a word cannot be of different font-colors.


(ii) In MS-Word, the Show/Hide command button can be used to display paragraph marks in
a document.
A.Only ii B.Neither i nor ii C.Both i and ii D.Only i

Q.60 Which of the following tools can be used to apply the font color and size of a text to multiple
pieces of text in MS-Word ? / MS-Word में टे क्स्ट के कई टु कडोिं पर टे क्स्ट के फॉन्ट किर और साइज को
िागू करिे के विए विम्नविखित में से कौि सा टू ि इस्तेमाि वकया जा सकता है

A. Eraser B. Replace C. Show/Hide button D. Format Painter

Q.61 Which of the following options in MS-Word is used to colour the background behind the
selected text or paragraph?/ MS-Word में विम्नविखित में से कौि सा विकल्प चयवित टे क्स्ट या पैराग्राफ के
पीछे की पृष्ठभूवम को रिं गिे के विए प्रयोग वकया जाता है

A.Font Colour B. Shading C. Format Painter D.Text Highlight Colour

Q.62 With reference to text formatting, ‘Italic’ option belongs to which of the following categories in
MS-Word ? / टे क्स्ट फॉमेवटिं ग के सिंदभष में, 'इटै विक' विकल्प एमएस-िडष में विम्नविखित में से वकस श्रेणी से
सिंबिंवधत है ?

A. Effects B. Size C. Font style D. Font face

Q.63 State whether the following statements related to MS Word are true or false?/ बताएिं वक एमएस
िडष से सिंबिंवधत विम्नविखित कथि सही हैं या गित
(i) In Landscape orientation, the height of a page is larger than its width.
(ii) In Portrait orientation, the width of a page is large than its height.

A. True, False B. False, False C. False, True D. True, True

Q.64 Which of the following statements is/are true?/ विम्नविखित में से कौि सा/से कथि सत्य है/हैं

(i) In MS-Word, a word can have both lower-case and upper-case letters.
(ii) In MS-Word, the first word of a paragraph cannot be made bold.
A. Only I B. i nor ii C. Only ii D.Both I and ii

Q.65 State whether the following statements related to MS Word are true or false./ बताएिं वक एमएस
िडष से सिंबिंवधत विम्नविखित कथि सही हैं या गित

(i) A document file can have both, bulleted and numbered lists.
(ii) Page margins in an MS Word document can be customized.

A. True, False B. False, True C.False, False D.True, True

Q.66 The application server in a three tier architecture, communicates with a


database system to access / तीि स्तरीय आवकषटे क्चर में एखिकेर्ि सिषर, एक्सेस करिे के विए
डे टाबेस वसस्टम के साथ सिंचार करता है

A.DATA B. Query C. Compiler D. Retrial

Q.67 Which one not a database management software ? / कौि सा एक डे टाबेस प्रबिंधि
सॉफ्टिेयर िहीिं है

A.Oracle B. Drupal C. MS access D. DB2

Q.68 In DBMS knowledge is :/ DBMS में knowledge है

A. Collection of Data B.Collection of information

C. Collection of DBMS D.None of these

Q.69 File system is / फाइि वसस्टम है

A. Inconsistent data B. Redundant data C. Duplicate data D. All of these

Q.70 What is the basic client/server architecture, one has to deal with? /मूि िाइिं ट/सिषर
आवकषटे क्चर क्या है , इससे विपटिा होगा
A. Large number of PCs B. Web servers C. Database Servers D. All of the above

Q.71 How many types of DBMS architectures are there?/ DBMS आवकषटे क्चर वकतिे प्रकार के
होते हैं
A. 1 B. 2 C. 3 D. 4
Q.72 What is TRUE about 1-tier architecture? /1-स्तरीय architecture के बारे में सत्य क्या है
A.It is directly not available to the user B.Changes are not done on the database
C.No handy tool is provided for the end user D.It is not used for the development of local
application

Q.73 Basic client-server model is similar to –/ बेवसक िाइिं ट-सिषर मॉडि के समाि है
A. 2-tier architecture B. 3-tier architecture C.4-tier architecture D.5-tier architecture

Q.74 What is done through client-side in the 2-tier architecture?/ 2-स्तरीय आवकषटे क्चर में
िाइिं ट-साइड के माध्यम से क्या वकया जाता है
A. Running of user interfaces and application program
B. To provide query processing and transaction management functionalities
C. Establish a connection with the other side
D. Both A. and C.

Q.75 In which architecture, client can't directly communicate with the server?/ वकस
आवकषटे क्चर में िाइिं ट सिषर से सीधे कम्युविकेट िहीिं कर सकता है
A.1-tier architecture B.2-tier architecture C.3-tier architecture D. None of the above

Q.76 What is present in Server but not in Client?/ सिषर में क्या मौजूद है िेवकि िाइिं ट में िहीिं है
A. Database B. Application Server C. User D. None

Q.77 3-tier architecture is used in –/3-स्तरीय आवकषटे क्चर का उपयोग वकया जाता है
A. Large web application B. Small web application
C. Both large and small web application D. Neither small nor large web application

Q.78 What is three schema architecture also known as? / तीि स्कीमा आवकषटे क्चर क्या है वजसे के
रूप में भी जािा जाता है
A. ANSI/SPARC architecture B. Three-level architecture
C. Both A. and B. D. None of the above
Q.79 Requests and responses are transformed using ________ between different database
layers./ विवभन्न डे टाबेस परतोिं के बीच ________ का उपयोग करके अिुरोधोिं और प्रवतवक्रयाओिं को
रूपािंतररत वकया जाता है
A. Mapping B. Deflection C. Taping D. Reflection
Q.80 By using three schemas, the database structure can be separated from the user's view.
What's the reason behind the same? /तीि स्कीमा का उपयोग करके, डे टाबेस सिंरचिा को
उपयोगकताष के दृविकोण से अिग वकया जा सकता है। क्या है इसके पीछे की िजह
A. The same data needs to be viewed differently by different users.
B. Data access needs may change over time for a particular user.
C. The same data should be available to all users based on their needs.
D.All of the above

Q.81 Which Schema is also known as Physical Schema? / वकस स्कीमा को वफवजकि स्कीमा के
िाम से भी जािा जाता है ?
A. Internal B. Conceptual C. External D. None

Q.82 What is internal level concerned with?/ आिं तररक स्तर का concerned वकससे है
A. Access Paths B. Storage Space Allocations C.Data Compression D.All of the above

Q.83 What is a database? डे टाबेस क्या है


A. Organized collection of information that cannot be accessed, updated, and managed
B. Collection of data or information without organizing
C. Organized collection of data or information that can be accessed, updated, and managed
D. Organized collection of data that cannot be updated
Q.84.Which type of data can be stored in the database?/ डे टाबेस में वकस प्रकार के डे टा को
स्टोर वकया जा सकता है
A. Image oriented data B. Text, files containing data
C. Data in the form of audio or video D. All of the above
Q.85 .Which of the following is a function of the DBMS? / विम्नविखित में से कौि DBMS का कायष
है?
A. Storing data B. Providing multi-users access control
C.Data Integrity D.All of the above
Q.86. Which element is used to get highlighted text in HTML5?/ HTML5 में हाईिाइटे ड टे क्स्ट
प्राप्त करिे के विए वकस टै ग का प्रयोग वकया जाता है ?
a) <u> b) <mark> c) <highlight> d) <b>
Q.87 In HTML, which attribute is used to create a link that opens in a new window
tab?/ HTML में, एक िई वििंडो टै ब में िुििे िािे वििंक को बिािे के विए वकस attribute का उपयोग
वकया जाता है
A. src=”_blank” B. alt=”_blank” C. target=”_self” D. target=”_blank”
Q.88 Which HTML tag do we use to display text along with a scrolling effect? / स्क्रॉवििंग
प्रभाि के साथ टे क्स्ट प्रदवर्षत करिे के विए हम वकस HTML टै ग का उपयोग करते हैं
A. <div> B.<scroll> C.<marquee> D. None of the above
Q.89 What is the correct way of sending mail in HTML?/ HTML में मेि भेजिे का सही
तरीका क्या है
A. <mail ab@b</mail> B.<a href = “emailto:ab@b”>
C.<a href = “mailto: ab@b”> D.<a href = “mailto ab@b”>
Q.90 How to create a hyperlink in HTML?/ HTML में हाइपरवििंक कैसे बिाये
a. <a link = “www.infiqueclasses.com”> infiqueclasses.com </a>
b. <a> www. infiqueclasses.com < infiqueclasses.com /a>
c. <a href = “www. infiqueclasses.com”> infiqueclasses.com </a>
d. <a url = “www. infiqueclasses.com” infiqueclasses.com /a>

find the number of triangles in given below triangle/ नीचे दिए गए दिभुज में दिभुज ों की सोंख्या ज्ञात
कीदजए

Q.91

A.15 (B) 18 (C) 12 (D) 19


Q.92

A 12 (B) 16 (C) 18 (D) 20


Q.93

(A) 12 (B) 13 (C) 15 (D) 16


Q.94

(A) 26 (B) 21 (C) 29 (D) 32


Q.95

(A) 20 (B) 21 (C) 33 (D) 44


Q.96

(A)16 (B) 8 (C) 9 (D) 10

find the given diagram squares and triangle/ िीचे वदए गए आरे ि िगष और वत्रभुज का पता िगाएिं
Q.97
(A) 40 (B) 38 (C) 45 (D) 46
Q.98

(A) 30 (B) 15 (C) 27 (D) 35


Q.99

(A) 12 (B) 14 (C) 18 (D) 13


Q.100
(A) 15 (B) 13 (C) 19 (D) 26

You might also like