eGyanvani

Welcome To eGyanvani!

Informatic Assistant 2023

informatic Assistant
HOD Computer
Sharma Naveen K. HOD, Computer Deptartment

20+ Years of Experience in C, C++, Python, Sql, Advanced Excel, Office 365, VB, PowerBI

Imformatic Assistant | सूचना सहायक

Notes, Question-Answers & Quizes

1. C99 standard guarantees uniqueness of __________ characters for internal names.
a) 31
b) 63
c) 12
d) 14
ANS B


2. C99 standard guarantees uniqueness of ___________ characters for external names.
a) 31
b) 6
c) 12
d) 14
Answer: a

3. Which of the following is not a valid variable name declaration?
a) int __a3;
b) int __3a;
c) int __A3;
d) None of the mentioned
Answer: d

4. Which of the following is not a valid variable name declaration?
a) int _a3;
b) int a_3;
c) int 3_a;
d) int _3a
Answer: c

5. Why do variable names beginning with the underscore is not encouraged?
a) It is not standardized
b) To avoid conflicts since assemblers and loaders use such names
c) To avoid conflicts since library routines use such names
d) To avoid conflicts with environment variables of an operating system
Answer: c

6. All keywords in C are in ____________
a) LowerCase letters
b) UpperCase letters
c) CamelCase letters
d) None of the mentioned
Answer: a

7. Variable name resolution (number of significant characters for the uniqueness of variable) depends on ___________
a) Compiler and linker implementations
b) Assemblers and loaders implementations
c) C language
d) None of the mentioned
Answer: a

8. Which of the following is not a valid C variable name?
a) int number;
b) float rate;
c) int variable_count;
d) int $main;
Answer: d

9. Which of the following is true for variable names in C?
a) They can contain alphanumeric characters as well as special characters
b) It is not an error to declare a variable to be one of the keywords(like goto, static)
c) Variable names cannot start with a digit
d) Variable can be of any length
Answer: c

10. Which is valid C expression?
a) int my_num = 100,000;
b) int my_num = 100000;
c) int my num = 1000;
d) int $my_num = 10000;
Answer: b

11. What will be the output of the following C code?
#include <stdio.h>
int main()
{
printf("Hello World! %d \n", x);
return 0;
}
a) Hello World! x;
b) Hello World! followed by a junk value
c) Compile time error
d) Hello World!
Answer: c

12. What will be the output of the following C code?

#include <stdio.h>
int main()
{
int y = 10000;
int y = 34;
printf("Hello World! %d\n", y);
return 0;
}
a) Compile time error
b) Hello World! 34
c) Hello World! 1000
d) Hello World! followed by a junk value
Answer: a

13. Which of the following is not a valid variable name declaration?
a) float PI = 3.14;
b) double PI = 3.14;
c) int PI = 3.14;
d) #define PI 3.14
Answer: d

14. What will happen if the following C code is executed?

#include <stdio.h>
int main()
{
int main = 3;
printf("%d", main);
return 0;
}
a) It will cause a compile-time error
b) It will cause a run-time error
c) It will run without any error and prints 3
d) It will experience infinite looping
Answer: c

15. What is the problem in the following variable declaration?
float 3Bedroom-Hall-Kitchen?;
a) The variable name begins with an integer
b) The special character ‘-‘
c) The special character ‘?’
d) All of the mentioned
Answer: d

16. What will be the output of the following C code?
#include <stdio.h>
int main()
{
int ThisIsVariableName = 12;
int ThisIsVariablename = 14;
printf("%d", ThisIsVariablename);
return 0;
}
a) The program will print 12
b) The program will print 14
c) The program will have a runtime error
d) The program will cause a compile-time error due to redeclaration
Answer: b

17. Which of the following cannot be a variable name in C?
a) volatile
b) true
c) friend
d) export
Answer: a

18. What will be the output of the following C code?

#include <stdio.h>
int main()
{
int a[5] = {1, 2, 3, 4, 5};
int i;
for (i = 0; i < 5; i++)
if ((char)a[i] == '5')
printf("%d\n", a[i]);
else
printf("FAIL\n");
}
a) The compiler will flag an error
b) The program will compile and print the output 5
c) The program will compile and print the ASCII value of 5
d) The program will compile and print FAIL for 5 times
Answer: d

19. The format identifier ‘%i’ is also used for _____ data type.
a) char
b) int
c) float
d) double
Answer: b

20. Which data type is most suitable for storing a number 65000 in a 32-bit system?
a) signed short
b) unsigned short
c) long
d) int
Answer: b

21. Which of the following is a User-defined data type?
a) typedef int Boolean;
b) typedef enum {Mon, Tue, Wed, Thu, Fri} Workdays;
c) struct {char name[10], int age};
d) all of the mentioned
View Answer

22. What is the size of an int data type?
a) 4 Bytes
b) 8 Bytes
c) Depends on the system/compiler
d) Cannot be determined
Answer: c

23. What will be the output of the following C code?
#include <stdio.h>
int main()
{
signed char chr;
chr = 128;
printf("%d\n", chr);
return 0;
}
a) 128
b) -128
c) Depends on the compiler
d) None of the mentioned
Answer: b

24. What will be the output of the following C code?
#include <stdio.h>
int main()
{
char c;
int i = 0;
FILE *file;
file = fopen("test.txt", "w+");
fprintf(file, "%c", 'a');
fprintf(file, "%c", -1);
fprintf(file, "%c", 'b');
fclose(file);
file = fopen("test.txt", "r");
while ((c = fgetc(file)) != -1)
printf("%c", c);
return 0;
}
a) a
b) Infinite loop
c) Depends on what fgetc returns
d) Depends on the compiler
Answer: a

25. What is short int in C programming?
a) The basic data type of C
b) Qualifier
c) Short is the qualifier and int is the basic data type
d) All of the mentioned
Answer: c

26. What will be the output of the following C code?

#include <stdio.h>
int main()
{
float f1 = 0.1;
if (f1 == 0.1)
printf("equal\n");
else
printf("not equal\n");
}
a) equal
b) not equal
c) output depends on the compiler
d) error
Answer: b

27. What will be the output of the following C code?
#include <stdio.h>
int main()
{
float f1 = 0.1;
if (f1 == 0.1f)
printf("equal\n");
else
printf("not equal\n");
}
a) equal
b) not equal
c) output depends on compiler
d) error
Answer: a

28. What will be the output of the following C code on a 32-bit machine?
#include <stdio.h>
int main()
{
int x = 10000;
double y = 56;
int *p = &x;
double *q = &y;
printf("p and q are %d and %d", sizeof(p), sizeof(q));
return 0;
}
a) p and q are 4 and 4
b) p and q are 4 and 8
c) compiler error
d) p and q are 2 and 8
Answer: a

29. Which is correct with respect to the size of the data types?
a) char > int > float
b) int > char > float
c) char < int < double
d) double > char > int
Answer: c

30. What will be the output of the following C code on a 64 bit machine?
#include <stdio.h>
union Sti
{
int nu;
char m;
};
int main()
{
union Sti s;
printf("%d", sizeof(s));
return 0;
}
a) 8
b) 5
c) 9
d) 4
Answer: d

31. What will be the output of the following C code?
#include <stdio.h>
int main()
{
float x = 'a';
printf("%f", x);
return 0;
}
a) a
b) run time error
c) a.0000000
d) 97.000000
Answer: d

32. Which of the data types has the size that is variable?
a) int
b) struct
c) float
d) double
Answer: b

33. What will be the output of the following C code?
#include <stdio.h>
int main()
{
enum {ORANGE = 5, MANGO, BANANA = 4, PEACH};
printf("PEACH = %d\n", PEACH);
}
a) PEACH = 3
b) PEACH = 4
c) PEACH = 5
d) PEACH = 6
Answer: c

34. What will be the output of the following C code?
#include <stdio.h>
int main()
{
printf("C programming %s", "Class by\n%s egyanvani", "WOW");
}
a)

C programming Class by
WOW Sanfoundry
b) C programming Class by\n%s egyanvani
c)

C programming Class by
%s egyanvani
d) Compilation error
Answer: c

35. In the following code snippet, character pointer str holds a reference to the string ___________
char *str = "egyanvani.com\0" "training classes";
a) "egyanvani.com
b) "egyanvani.com\0training classes
c) "egyanvani.com classes
d) Invalid declaration
Answer: b

36. What will be the output of the following C code?
#include <stdio.h>
#define a 10
int main()
{
const int a = 5;
printf("a = %d\n", a);
}
a) a = 5
b) a = 10
c) Compilation error
d) Runtime error
Answer: c

37. What will be the output of the following C code?
#include <stdio.h>
int main()
{
int var = 010;
printf("%d", var);
}
a) 2
b) 8
c) 9
d) 10
Answer: b

38. What will be the output of the following C function?
#include <stdio.h>
enum birds {SPARROW, PEACOCK, PARROT};
enum animals {TIGER = 8, LION, RABBIT, ZEBRA};
int main()
{
enum birds m = TIGER;
int k;
k = m;
printf("%d\n", k);
return 0;
}
a) 0
b) Compile time error
c) 1
d) 8
Answer: d

39. What will be the output of the following C code?
#include <stdio.h>
#define MAX 2
enum bird {SPARROW = MAX + 1, PARROT = SPARROW + MAX};
int main()
{
enum bird b = PARROT;
printf("%d\n", b);
return 0;
}
a) Compilation error
b) 5
c) Undefined value
d) 2
Answer: b

40. What will be the output of the following C code?
#include <stdio.h>
#include <string.h>
int main()
{
char *str = "x";
char c = 'x';
char ary[1];
ary[0] = c;
printf("%d %d", strlen(str), strlen(ary));
return 0;
}
a) 1 1
b) 2 1
c) 2 2
d) 1 (undefined value)
Answer: d

41. enum types are processed by _________
a) Compiler
b) Preprocessor
c) Linker
d) Assembler
Answer: a

42. What will be the output of the following C code?
#include <stdio.h>
int main()
{
printf("egyanvani\rclass\n");
return 0;
}
a) egyanvaniclass
b) egyanvani
class
c) classundry
d) egyanvani
Answer: c

43. What will be the output of the following C code?
#include <stdio.h>
int main()
{
printfegyanvani\r\nclass\n");
return 0;
}
a) egyanvaniclass
b) egyanvani
class
c) classundry
d) egyanvani
Answer: b

44. What will be the output of the following C code?
#include <stdio.h>
int main()
{
const int p;
p = 4;
printf("p is %d", p);
return 0;
}
a) p is 4
b) Compile time error
c) Run time error
d) p is followed by a garbage value
Answer: b

45. What will be the output of the following C code?
#include <stdio.h>
void main()
{
int k = 4;
int *const p = &k;
int r = 3;
p = &r;
printf("%d", p);
}
a) Address of k
b) Address of r
c) Compile time error
d) Address of k + address of r
Answer: c

46. Which of the following statement is false?
a) Constant variables need not be defined as they are declared and can be defined later
b) Global constant variables are initialized to zero
c) const keyword is used to define constant values
d) You cannot reassign a value to a constant variable
Answer: a

47. What will be the output of the following C code?
#include <stdio.h>
void main()
{
int const k = 5;
k++;
printf("k is %d", k);
}
a) k is 6
b) Error due to const succeeding int
c) Error, because a constant variable can be changed only twice
d) Error, because a constant variable cannot be changed
Answer: d

48. What will be the output of the following C code?
#include <stdio.h>
int const print()
{
printf("egyanvani.com");
return 0;
}
void main()
{
print();
}
a) Error because function name cannot be preceded by const
b) egyanvani.com
c) egyanvani.com is printed infinite times
d) Blank screen, no output
Answer: b

49. What will be the output of the following C code?
#include <stdio.h>
void foo(const int *);
int main()
{
const int i = 10;
printf("%d ", i);
foo(&i);
printf("%d", i);

}
void foo(const int *i)
{
*i = 20;
}
a) Compile time error
b) 10 20
c) Undefined value
d) 10
Answer: a

50. What will be the output of the following C code?
#include <stdio.h>
int main()
{
const int i = 10;
int *ptr = &i;
*ptr = 20;
printf("%d\n", i);
return 0;
}
a) Compile time error
b) Compile time warning and printf displays 20
c) Undefined behaviour
d) 10
Answer: b

Cont...

1. Which of these is a standard interface for serial data transmission?
a) ASCII
b) RS232C
c) 2
d) Centronics
Answer: (b)


2) Which type of topology is best suited for large businesses which must carefully control and coordinate the operation of distributed branch outlets?
a) Ring
b) Local area
c) Hierarchical
d) Star
Answer: (d)


3) Which of the following transmission directions listed is not a legitimate channel?
a) Simplex
b) Half Duplex
c) Full Duplex
d) Double Duplex
Answer: (d)


4) "Parity bits" are used for which of the following purposes?
a) Encryption of data
b) To transmit faster
c) To detect errors
d) To identify the user
Answer: (c)


5) What kind of transmission medium is most appropriate to carry data in a computer network that is exposed to electrical interferences?
a) Unshielded twisted pair
b) Optical fiber
c) Coaxial cable
d) Microwave
Answer: (b)


6) A collection of hyperlinked documents on the internet forms the ?
a) World Wide Web (WWW)
b) E-mail system
c) Mailing list
d) Hypertext markup language
Answer: (a)


7) The location of a resource on the internet is given by its?
a) Protocol
b) URL
c) E-mail address
d) ICQ
Answer: (b)


8) The term HTTP stands for?
a) Hyper terminal tracing program
b) Hypertext tracing protocol
c) Hypertext transfer protocol
d) Hypertext transfer program
Answer: (c)


9) A proxy server is used as the computer?
a) with external access
b) acting as a backup
c) performing file handling
d) accessing user permissions
Answer: (a)


10) Which one of the following would breach the integrity of a system?
a) Looking the room to prevent theft
b) Full access rights for all users
c) Fitting the system with an anti-theft device
d) Protecting the device against willful or accidental damage
Answer: (b)


11) Which software prevents the external access to a system?
a) Firewall
b) Gateway
c) Router
d) Virus checker
Answer: (a)


12) Which one of the following is a valid email address?
a) [email protected]
b) gmail.com
c) [email protected]
d) egyanvani@books
Answer: (a)


13) Which of the following best describes uploading information?
a) Sorting data on a disk drive
b) Sending information to a host computer
c) Receiving information from a host computer
d) Sorting data on a hard drive
Answer: (b)


14) Which one of the following is the most common internet protocol?
a) HTML
b) NetBEUI
c) TCP/IP
d) IPX/SPX
Answer: (c)


15) Software programs that allow you to legally copy files and give them away at no cost are called which of the following?
a) Probe ware
b) Timeshare
c) Shareware
d) Public domain
Answer: (d)


16) The term FTP stands for?
a) File transfer program
b) File transmission protocol
c) File transfer protocol
d) File transfer protection
Answer: (c)


17) At what speed does tele-computed refer?
a) Interface speed
b) Cycles per second
c) Baud rate
d) Megabyte load
Answer: (c)


18) Which one of the following is not a network topology?
a) Star
b) Ring
c) Bus
d) Peer to Peer
Answer: (d)


19) The maximum length (in bytes) of an IPv4 datagram is?
a) 32
b) 1024
c) 65535
d) 512
Answer: (c)


20) Which of the following statements could be valid with respect to the ICMP (Internet Control Message Protocol)?
a) It reports all errors which occur during transmission.
b) A redirect message is used when a router notices that a packet seems to have been routed wrongly.
c) It informs routers when an incorrect path has been taken.
d) The "destination unreachable" type message is used when a router cannot locate the destination.
Answer: (b)


21) The IP network 192.168.50.0 is to be divided into 10 equal sized subnets. Which of the following subnet masks can be used for the above requirement?
a) 255.243.240
b) 255.255.0.0
c) 255.255.0
d) 255.255.255
Answer: (c)


22) When the mail server sends mail to other mail servers it becomes ___ ?
a) SMTP client
b) SMTP server
c) Peer
d) Master
Answer: (a)


23) The length of an IPv6 address is?
a) 32 bits
b) 64 bits
c) 128 bits
d) 256 bits
Answer: (c)


24) Consider the following:
1) Twisted pair cables
2) Microwaves and Satellite Signals
3) Repeaters
4) Analog Transmissions
5) Fiber optics
Which of the above is consider as (a) signal transmission medium is data communications?
a) (1) and (5)
b) (1) and (2)
c) (1) (2) and (5)
d) (1) (2) (3) and (5)
Answer: (c)


25) Which of the following address belongs class A?
a) 121.12.12.248
b) 130.12.12.248
c) 128.12.12.248
d) 129.12.12.248
Answer: (a)


26) Which of the following is correct IPv4 address?
a) 124.201.3.1.52
b) 01.200.128.123
c) 300.142.210.64
d) 128.64.0.0
Answer: (d)


27) Which of the following IP addresses can be used as (a) loop-back addresses?
a) 0.0.0.0
b) 127.0.0.1
c) 255.255.255.255
d) 0.255.255.255
Answer: (b)


28) The term WAN stands for?
a) Wide Area Net
b) Wide Access Network
c) Wide Area Network
d) Wide Access Net
Answer: (c)


29) Which of the following cannot be used as a medium for 802.3 ethernet?
a) A thin coaxial cable
b) A twisted pair cable
c) A microwave link
d) A fiber optical cable
Answer: (c)


30) What IP address class allocates 8 bits for the host identification part?
a) Class A
b) Class B
c) Class C
d) Class D
Answer: (c)


31) The term IANA stands for?
a) Internet Assigned Numbers Authority
b) Internal Assigned Numbers Authority
c) Internet Associative Numbers Authoritative
d) Internal Associative Numbers Authority
Answer: (a)


32) How many versions available of IP?
a) 6 version
b) 4 version
c) 2 version
d) 1 version
Answer: (c)


33) Which layer of the TCP / IP stack corresponds to the OSI model transport layer?
a) Host to host
b) Application
c) Internet
d) Network Access
Answer: (a)


34) An Aloha network uses an 18.2 kbps channel for sending message packets of 100 bits long size. Calculate the maximum throughput.
a) 5999
b) 6900
c) 6027
d) 5027
Answer: (c)


35) On a simplex data link, which of the following is a possible error recovery technique?
a) Backward error correction (BEC)
b) The use of hamming codes
c) Automatic Repeat Request (ARQ)
d) Downward error correction (DEC)
Answer: (b)


36) Which of the statement is correct with regard to Time Division Multiplexing (TDM) and its variants?
a) Statistical TDM makes efficient use of the bandwidth only if the arrival pattern of the data stream is probabilistic.
b) TDM requires the transmitter and receiver to be synchronized periodically.
c) TDM performs efficiently if the arrival pattern of the data stream is probabilistic.
d) Statistical TDM is efficient if the data stream is deterministic.
Answer: (a) and (b)


37) The term IPv4 stands for?
a) Internet Protocol Version 4
b) Internet Programming Version 4
c) International Programming Version 4
d) None of these
Answer: (a)


38) The term LAN stands for?
a) Local Area Net
b) Local Aera Network
c) Local Array Network
d) Local Array Net
Answer: (b)


39) Which of the through is share the data of two computer?
a) Library
b) Network
c) Grouping
d) Integrated system
Answer: (b) Network


40) In specific, if the systems use separate protocols, which one of the following devices is used to link two systems?
a) Repeater
b) Gateway
c) Bridge
d) Hub
Answer: (b)


41) How many digits of the Data Network Identification Code (DNIC) identify the country?
a) first three
b) first four
c) first five
d) first six
Answer: (a)


42) Which of the following methods is used to broadcast two packets on the medium at a time?
a) Collision
b) Synchronous
c) Asynchronous
d) None of the above
Answer: (a)


43) Which of the following is true with regard to the ping command?
a) Ping stands for Packet Internet Generator.
b) The ping command checks the port level connectivity between source destinations end points.
c) Ping summarizes the packet loss and round-trip delay between two IP end points.
d) The ping command activates the RARP protocol of the IP layer.
Answer: (c)


44) The private key in asymmetric key cryptography is kept by?
a) Sender
b) Receiver
c) Sender and Receiver
d) None of the these
Answer: (b)


45) Which of the following algorithms is not used in asymmetric-key cryptography?
a) RSA algorithm
b) Diffie-Hellman algorithm
c) Electronic code book algorithm
d) None of the mentioned
Answer: (c)


46) In the cryptography, the sequence of the letters is rearranged by?
a) Transposition ciphers
b) Substitution ciphers
c) Both a and b
d) None of these
Answer: (a)


47) What is the maximum efficiency of pure aloha at G = 1/2?
a) 1.89
b) 17.99
c) 18.999
d) 18.4
Answer: (d)


48) What is the maximum efficiency of slotted aloha at G = 1?
a) 36.8
b) 35.8
c) 35.5
d) 37.8
Answer: (a)


49) Which of the following statement is true about error detection techniques used on communications link?
a) Cyclic Redundancy Check (CRC) sequence can detect as well as correct errors.
b) Error detection cannot be used on simplex links.
c) Hamming code can detect up to 3-bit errors.
d) All of the these
Answer: (d)


50) The correct order of corresponding OSI layers for having functionalities of routing and reconciling machine representation differences with shared access resolution and ASCII test protocol is?
a) Network, Physical, Transport, Data link
b) Network, Physical, Data link, Application
c) Network, Presentation, Data link, Application
d) Network, Presentation, Physical, Transport
Answer: (c)

cont...

Published soon....

Published soon....

Published soon....

(1) MS Word खोलने के लिए Run Dialog Box में क्या लिखना पड़ता है?

(a) Photoshop              

(b) ms word                  

(c) winword                

(d) Microsoft word

Answer: c

(2) MS Word है-

(a) Word एडिटिंग सॉफ्टवेयर                         

(b) Image एडिटिंग सॉफ्टवेयर

(c) विडियो एडिटिंग सॉफ्टवेयर 

(d) कोई नहीं

Answer: a

(3) माइक्रोसॉफ्ट वर्ड में किसी भी Particular Word को खोजने के लिए इस्तेमाल किया जाता है

(a) Find                       

(b) Replace                  

(c) Go to                      

(d) Left Indent

Answer: a

(4) किसी Save File को दूबारा से Save करने के लिए इस्तेमाल किया जाता है?

(a) Save                       

(b) Save as                   

(c) Open                      

(d)  Print

Answer: b

(5) किसी भी Text को Bold करने का Shortcut होता है?

(a) Ctrl + Shift + B     

(b) Ctrl + B                 

(c) Shift + B                

(d) Ctrl + P

Answer: b

(6) Help Option को खोलने के लिए कीबोर्ड में प्रेस किया जाता है

(a) F3                           

(b) F12                                    

(c) F11                         

(d) F1

Answer: d

(7) Ctrl + Shift +  > से होता है

(a) Increase Font Size 

(b) Decrease Font Size            

(c) Change Text Style 

(d) None

Answer: a

(8) Ctrl + D =  ?

(a) Bold                       

(b) Font Setting           

(c) Superscript                         

(d) None

Answer: b

(9) Format Painter किस Menu में आता है?

(a) Home Menu           

(b) Insert Menu            

(c) Page Layout           

(d) None

Answer: a

(10) Align Text Left का Shortcut Key होता है

(a) Ctrl + L                   

(b) Ctrl + R                 

(c) Ctrl + E              

(d) Ctrl + J

Answer: a

(11) पुरे document को एक बार में Select किया जा सकता है –

(a) Ctrl + A के जरिये    

(b) Ctrl + B के जरिये    

(c) Ctrl + X के जरिये    

(d) इनमें से कोई नहीं

Answer: a

(12) Hyperlink होता है

(a) File Menu में           

(b)  Insert Menu में       

(c) View Menu में         

(d) इनमें से कोई नहीं

Answer: b

(13) Equation Mode Enable करने का Shortcut Key बताये:

(a) Alt + =                    

(b) Ctrl + B                  

(c) Ctrl + E                   

(d) इनमें से कोई नहीं

Answer: a

(14) Short Link बनाने के लिए इस्तेमाल किया जाता है-

(a) Hyperlink               

(b) Bookmarks                         

(c) Cross-reference       

(d) Quick parts

Answer: a

(15) Ctrl + X = ?

(a) Cut                     

(b) Redo                      

(c) Paste                       

(d) None

Answer: a

(16) MS Word के सबसे ऊपर वाली भाग को कहते हैं...

(a) Taskbar                 

(b) Menu bar               

(c) Title bar                  

(d) None

Answer: c

(17) माइक्रोसॉफ्ट वर्ड में F7 का प्रयोग किया जाता है....

(a) Spelling Check       

(b) Research                

(c) Translate                 

(d) Compare

Answer: a

(18) किसी भाषा को अन्य भाषा में अनुवाद करने कि सुविधा किस मेनू में दिया गया है ?

(a) Home                     

(b) Review                   

(c) View                       

(d) Page Layout

Answer: b

(19) किसी भी Text को Double Underline करने के लिए इस्तेमाल किया जा सकता है

(a) Ctrl + Shift + D      

(b) Ctrl + F                  

(c) Shift + F                 

(d) Alt + D

Answer: a

(20) Clear Formatting का इस्तेमाल क्यों किया जाता है?

(a) Text Formatting को Delete करने के लिए

(b) Text Formatting को Clear करने के लिए

(c) Page का Color बदलने के लिए

(d) इनमें से सभी के लिए

Answer: b

(21) माइक्रोसॉफ्ट वर्ड में Zoom Slider होता है-

(a) Left Side में                         

(b) Right Side में          

(c) Top में                     

(d) Bottom में 

Answer: b

(22) Text को Justify करने के लिए किस शॉर्टकट की का इस्तेमाल किया जाता है?

(a) Ctrl + J                   

(b) Ctrl + E                  

(c) Ctrl + R                  

(d) Ctrl + Shift + J

Answer: a

(23) “Table Of Contents” का इस्तेमाल किया जाता है-

(a) सभी अध्याओं की जानकारी

(b) सभी अध्याओं कि पेज नंबर

(c) किताबों का कवर पेज बनाने के लिए

(d) पहाड़े लिखने के लिए

Answer: a

(24) माइक्रोसॉफ्ट वर्ड के 2007 या  2010 वाली Version में Default रूप से कितने मेनू होते हैं?

(a) 8                             

(b) 7                             

(c) 9                             

(d) 10

Answer: a

(25) जब हम माइक्रोसॉफ्ट वर्ड को Open करते हैं तो पेज के सबसे निचली भाग में जो ऑप्शन दिखाई जैसे:  No Of  Pages, Words Count इत्यादि, उसे कहते हैं

(a) Menu bar                

(b) Title bar                  

(c) Status bar               

(d) Quick access toolbar

Answer: c

(26) माइक्रोसॉफ्ट वर्ड किस कंपनी ले द्वारा बनाया गया?

(a) माइक्रोसॉफ्ट            

(b) गूगल                      

(c) जिओ                       

(d) इनमें से कोई नहीं

Answer: a

(27) (a + b)2 इसके निचे में जो 2 लिखा गया है वो किस ऑप्शन के जरिये लिखा जा सकता है?

(a) Subscript                

(b) Superscript                         

(c) Strikethrough         

(d) Underline

Answer: a

(28) Gridlines या Navigation Pane को लाने या हटाने के लिए किस मेनू में जाना पड़ेगा?

(a) View                       

(b) Insert                      

(c) Mailings                 

(d) References

Answer: a

(29) पहले से बानाए गए डॉक्यूमेंट फाइल को Open करने के लिए किस मेनू में जाना पड़ता है?

(a) होम मेनू                  

(b) फाइल मेनू               

(c) रिव्यु मेनू                 

(d) व्यू मेनू

Answer: b

(30) Paragraph के शुरुआत में 3 या 3 से अधिक लाईनों के बीच Capital Letter लिखने के लिए इस्तेमाल किया जाता है.....

(a) Drop Cap                

(b) WordArt                 

(c) Signature Line        

(d) Chart

Answer: a

(31) किसी भी Paragraph में सारे Small  Letter को Capital Letter में बदलने के लिए इस्तेमाल किया जाता है

(a) Uppercase              

(b) Lowercase              

(c) Toggle case            

(d) Sentence case

Answer: a

(32) Microsoft Word में Current Document को दो भागों में Distribute करने के लिए इस्तेमाल किया जाता है

(a) Split                        

(b) Arrange All            

(c) Switch Windows    

(d) Macros

Answer: a

(33) Endnote Insert करने का शॉर्टकट बतायें

(a) Alt + Ctrl + D         

(b) Alt + Ctrl + E         

(c) Ctrl + E                   

(d) Ctrl + I

Answer: a

(34) Footnote Insert करने का शॉर्टकट बतायें

(a) Alt + Ctrl + F          

(b) Alt + Ctrl + D         

(c) Ctrl + Shift + D      

(d) Ctrl + F

Answer: a

(35) Superscript का उदहारण है-

(a) (a + b)2                   

(b) C2                                                      

(c) (a + b)2                  

(d) None

Answer: a

(36) माइक्रोसॉफ्ट वर्ड में एक बार Tab प्रेस करने से माउस का कर्सर एक बार में कितना पॉइंट आगे बढ़ता है?

(a) 1                             

(b) 2                             

(c) 5                             

(d) 0

Answer: c

(37) माइक्रोसॉफ्ट वर्ड में Default View किस प्रकार का होता है?

(a) Full-Screen Reading 

(b) Print Layout         

(c) Draft                       

(d) Web Layout

Answer: b

(38) किसी भी डाक्यूमेंट्स को Landscape Format में बनाने के लिए किस विकल्प में जाना पड़ेगा?

(a) Size                                    

(b) Orientation             

(c) Both "A" & "B"                  

(d) Column

Answer: b

(39) Text Highlight Color का इस्तेमाल करने के लिए किस मेनू में जाना होगा ?

(a) होम                         

(b) इन्सर्ट                     

(c) व्यू                          

(d) कोई नहीं

Answer: a

(40) किसी डॉक्यूमेंट में हमने किस पॉइंट तक रीडिंग किया इसकी सेटिंग किस ऑप्शन के जरिये किया जाता है?

(a) Hyperlink               

(b) Bookmark              

(c) Cross reference       

(d) Chart

Answer: b

(41) माइक्रोसॉफ्ट वर्ड में सभी ऑब्जेक्ट को किस ऑप्शन के जरिये Manage किया जा सकता है?

(a) Indent                     

(b) Selection Pane       

(c) Align                      

(d) Margins

Answer: b

(42) Ctrl + Shift + E = ?

(a) Track Changes       

(b) Show Markup        

(c) Accept                    

(d) New Comment

Answer: a

(43) Microsoft Word में slide-by-slide डॉक्यूमेंट को arrange करने के लिए किस ऑप्शन का इस्तेमाल किया जाता है?

(a) New Windows        

(b) Arrange All            

(c) Switch Windows    

(d) Macros

Answer: b

(44) Shift + F7 = ?

(a) Research                 

(b) Word Count           

(c) Spelling Check       

(d) Thesaurus

Answer: d

(45)  8.5 x 11 Size उदाहरण है:

(a) Letter Page Size     

(b) A4 Page Size         

(c) Legal Page Size      

(d) B4

Answer: a

(46) Rulers दिखाई देती है

(a) Left और Right तरफ

(b) Left और Top की तरफ

(c) Right और Top की तरफ

(d) Top और Button की तरफ

Answer: b

(47) सभी पेजों में Header, Footer या Page Number Show करने के लिए किस मेनू में जाना होगा?

(a) Home         `           

(b) Page Layout          

(c) Insert                     

(d) Mailings

Answer: c

(48) Direct Hyperlink Insert किया जा सकता है

(a) Ctrl + K के जरिये    

(b) Ctrl + H के जरिये   

(c) Ctrl + D के जरिये    

(d) Ctrl + Shift + D के जरिये

Answer: a

(49) Decorative Text Insert करने के लिए इस्तेमाल किया जाता है-

(a) WordArt                 

(b) Drop Cap               

(c) Text Box                

(d) None

Answer: a

(50) अगर आपको माइक्रोसॉफ्ट वर्ड में कोई पिक्चर इन्सर्ट करना हो तो आप किस मेनू में जायेंगे?

(a) होम                         

(b) इन्सर्ट                     

(c) पेज लेआउट                         

(d) किसी में नहीं

Answer: b

COMING SOON

Leave a Comment

Your email address will not be published. Required fields are marked *

error: Content is protected !!