Thursday, November 29, 2018

Forbes India Leadership Awards 2018,small finance bank,Asia Environment Enforcement Awards

1. Thierry Bollore was appointed as the Chief Operating Officer of this company recently.
Toyota Skoda Renault Volkswagen

2. Azim Premji has won Forbes India Leadership Awards 2018. He was the chairman of;
Wipro Infosys TCS Accenture

3.Which small finance bank launches personal loan facility for salaried individuals?
Equitas Small Finance Bank Ujjivan Small Finance Bank Small Indus Development Finance Bank Jana Small Finance Bank

4.This country conferred with the Asia Environment Enforcement Awards, 2018, recently United Nation Environment.
Denmark Iceland China India

5.Who among the following has been appointed as the head of WhatsApp India?
Sabeer Bhatia Ruchi Sanghvi Abhijit Bose Vic Gundotra

Wednesday, November 28, 2018

Urban wind turbine,Asia Environmental Enforcement Award 2018,The Hindu Young World-Goodbooks Awards 2019

1.Which of the following pair won a International James Dyson award 2018 for designing a 'Urban wind turbine' called O-Wind Turbine?
Nicolas Orellana, Yaseen Noorani Arian Richard, Samuel Rolland Peter Prentice, Michael Regan Sean Preston, Mike Delfino

2. Indian and this country agreed to set up hotline for effective coordination in checking smuggling.
China Bangladesh Nepal Singapore

3. Which organization was selected for the Asia Environmental Enforcement Award 2018?
Wildlife Protection Board (WPB) Wildlife Crime Control Bureau (WCCB) International Wildlife Protection Organisation (IWPO) Crime Control Board for Wildlife (CCBW)

4.Which book have been shortlisted for The Hindu Young World-Goodbooks Awards 2019?
Believe in Yourself Twelve Children The Power of Positive Thinking Life is What you Make It

5.Who was appointed as acting Executive Director of UNEP?
Mela Shah Elisa Calcaterra Janet Wildish Joyce Msuya

Tuesday, November 27, 2018

Ion Drive,National Academy of Sciences,Mohammed VI-B

1. Researchers from this University have created the first ever 'Ion Drive' plane with no moving part by adapting a technology that is previously used in Spacecraft.
National University of Singapore University of Chicago Massachusetts Institute of Technology Stanford University

2.The first Indian academician who won the Mexican Order of the Aztec Eagle, the highest civilian honour given to a foreigner by Mexico is;
Soumitra Dutta Nitin Nohria Shyama Prasad Ganguly Pradeep Khosla

3.Who among the following presented the 2018 National Academy of Sciences, India (NASI)-Scopus Young Scientist Awards in New Delhi?
M.Venkaiah Naidu Ram Nath Kovind Sushma Swaraj Nirmala Sitharaman

4.Which country launched the second earth observation satellite "Mohammed VI-B" recently?
Denmark Italy Spain Morocco

5.Recently, the U.S. suspended $1.66 billion in security assistance to __________.
Afghanistan Pakistan Iran Bangladesh

Monday, November 26, 2018

Indian Chamber of Commerce (ICC),SpaceX's Big Falcon Rocket(BFR),Nari Sashaktikaran Sankalp Abhiyan

1. The CM of this state launched a Nari Sashaktikaran Sankalp Abhiyan in the state recently.
Assam Uttar Pradesh Bihar Meghalaya

2.Name the company which has launched the Neighbourly app in Delhi and Bangalore.
Microsoft Google Oracle Apple

3.Which state tops with the highest employability in the 6th India Skills Report?
Rajasthan Andhra Pradesh Haryana Uttar Pradesh.

4.Indian Chamber of Commerce (ICC) signed a MoU with __________ to help facilitate incubation of start-ups primarily in the Eastern and North Eastern states.
IIM Indore IIM Lucknow IIM Bangalore IIM Calcutta

5.Name the SpaceX's Big Falcon Rocket(BFR) which had been Renamed recently by its CEO Elon Musk?
Falcon 9 Zenit-2 Saturn V Starship

Sunday, November 25, 2018

'Youth Advocate' of UNICEF,Right to Information (RTI) act,2019 Union World Conference

1. Who has been appointed as the first 'Youth Advocate' of UNICEF for the north eastern region?
Nahid Afrin Vishal Dadlani Sunidhi Chauhan Shekhar Ravjiani

2.Sidharth Rath was appointed as the Managing Director & CEO of ___________.
State Bank of Travancore State Bank of Mauritius Repco Bank Yes Bank

3.Denmark-based Grundfos company plan to set up its third pump production unit by 2020 in __________.
Surat Hyderabad Chennai Lucknow

4.As per the Chief Vigilance Commissioner (CVC) guidelines and the State Legislature, Which bank was brought under the purview of the Right to Information (RTI) act?
Bank of Baroda IndusInd Bank Punjab National Bank Jammu and Kashmir bank

5.2019 Union World Conference on Lung Health will be hosted by __________.
India Poland Spain Morocco

Wednesday, November 7, 2018

LP Fill in the Blank QA

QUESTIONS:-
1. In a two state process model, a process is either ____________or___________
2. For a new process in a two state process model _____________ creates a new process control block and brings that process into memory in a not running state.
3. ____________ and _____________ are the other states completes the five state model.
4. The two modes protect the OS data structures from interference by ____________
5. _____________ mode provides full control of the system that may not be needed for user program.
6. ___________ used for interrupt handling, process synchronization and timing.
7. ____________ connects two commands together so that the output from one program becomes the input of the next program.
8. To make a pipe, put a ____________ on the command line between two commands.
9. ____________ is referred, when a program takes its input from another program, it performs some operation on that input and writes the result to the standard output.
10. The ___________ command searches a file of files for lines that have a certain pattern.
11. The ___________ command arranges lines of text alphabetically or numerically.
12. The ____________ pipes can be created used and destroyed within the life a set of processes.
13. __________ is an example for named pipes.
14. _________ pipes can be used with unrelated process not just descendants of the pipe creator.
15. __________ command are used to define semaphore object.
16. ____________ command are used to initialize semaphore.
17. ___________ command are used to wait on a semaphore.
18. ___________ command is used to increment the value of semaphore.
19. ___________ command is used to find out the value of semaphore.
20. ___________ command is used  to destroy the semaphore.
21. ____________is a variable or abstract data type used to control access to a common resource by multiple processes in a concurrent system.
22. There are 3 types of semaphores namely ___________, ___________ and __________
23. In IPC the processes communicates by using _______________
24.  __________ file can be opened by multiple processes for reading and writing.
25.  We can create a FIFO from the shell using the ___________ command.
26. We can remove a FIFO just like a file using the ____________ command.
27. Two or more processes can exchange information via access to a common system _________



ANSWERS:-
1. Executing ( running state )or Idle ( nor running state ).
2. OS.
3. NEW and EXIT.
4. User code.
5. Kernel.
6. Wait queues.
7. Pipe.
8. Vertical bar(|).
9. Filter.
10. Grep command.
11. Sort command.
12.  Unnamed.
13. FIFO.
14. Named.
15. Sem_t sem_name;
16. Sem_init
17. Sem_wait
18. Sem_post
19. Sem_getvalue
20. Sem_destroy
21. Semaphore.
22. Binary, counting and mutex.
23. Shared memory.
24. FIFO.
25. Mknod.
26. Rm(remove command).
27. Message queue.

Tuesday, November 6, 2018

LP Objective QA

11. In message queue , the first parameter is key value , the second parameter is ________
a) key value  b) flag value   c) register value

12. Which of the following function is used to retrieve message from message queue
a) msgget()   b) msgsend()  c) msgrcv()

13. Which one of the following is not included in the message queue
a) queues  b) envelopes   c)stack

14 .Memory for a message as well as metadata is holded by
a) stack  b) envelope  c)queue

15. Which of the following supports the receiving with message handlers
a) GNUNET_CLIENT_CONNECTION      b) GNUNET_SERVER_CLIENT     c) GNUNET_MESH_TUNNEL

16. Which of the following supports the receiving with message handlers
a) unary  b) tertiary  c) binary

17. The special key value _________ allows to create the semaphore
a) IPC_PRIVATE   b) IPC_PUBLIC   c) IPC_PROTECTED

18.________bits are the permissions for the semaphore
a) 5   b) 9   c) 1

19. Which is used for initializing a semaphore to a known value
a) SETVAL   b) GETVAL   c)SEMVAL

20. _______deletes the semophore identifier
a) IPC_REMOVE    b) IPC_RMID    c) IPC_DELETE

21. The command which is used to change its ownership or permissions if you are the semaphore creator is
a) semget()   b) semctl()  c) semop()

22. A POSIX Semaphore structure defines ________semaphore
a) single   b) double   c) triple

23. Which of the following command is used to initialize a semaphore structure
a) sem_getvalue()   b) sem_init()   c)sem_open()


24. In the function semaphore_v() , the semop member of the structure sembuf is set to ___
a) 0  b) 1  c)2

25. Which function provides a mean of passing data between two programs
a) sem()  b) pipe()  c) sock()

Monday, November 5, 2018

Linux Programming

1. Inter process communication includes__________ synchronization
a) thread   b) data   c)process

2. Which of the following were included in IPC on single computer system
1. Shared memory
2. Messages
3. Pipes
a) Only 1   b) Only 2   c) All 3 of them

3. Which of the following communication is allowed by pipe
a) unidirectional   b) bidirectional   c)multidirectional

4. How the pipes synchronize the two processes
a) manually   b) automatically    c) systamatically

5. Which command is used to make a pipe to wait for the data to be available from the user terminal
a) od  b)wait  c)id

6. Unnamed pipes were also known as
a) FIFO  b) LIFO  c)anonymous

7. Named pipes is used for communication between _________processes
a) interrealted   b) related  c)unrelated